sp-image.cpp revision 5879527bc41c3d47f37440fb8b83edb9c48080cc
/*
* SVG <image> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Edward Flick (EAF)
* Abhishek Sharma
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 1999-2005 Authors
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <cstring>
#include <algorithm>
#include <string>
#include "display/drawing-image.h"
#include "display/cairo-utils.h"
//Added for preserveAspectRatio support -- EAF
#include "enums.h"
#include "attributes.h"
#include "print.h"
#include "brokenimage.xpm"
#include "document.h"
#include "sp-image.h"
#include "sp-clippath.h"
#include "snap-candidate.h"
#include "preferences.h"
#include "sp-factory.h"
#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
#include "cms-system.h"
#include "color-profile.h"
#if HAVE_LIBLCMS2
# include <lcms2.h>
# include <lcms.h>
#endif // HAVE_LIBLCMS2
//#define DEBUG_LCMS
#ifdef DEBUG_LCMS
#define DEBUG_MESSAGE(key, ...)\
{\
g_message( __VA_ARGS__ );\
}
#else
#define DEBUG_MESSAGE(key, ...)
#endif // DEBUG_LCMS
#endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
/*
* SPImage
*/
// TODO: give these constants better names:
#define MAGIC_EPSILON 1e-9
#define MAGIC_EPSILON_TOO 1e-18
// TODO: also check if it is correct to be using two different epsilon values
static Inkscape::Pixbuf *sp_image_repr_read_image(gchar const *href, gchar const *absref, gchar const *base );
#ifdef DEBUG_LCMS
extern guint update_in_progress;
#define DEBUG_MESSAGE_SCISLAC(key, ...) \
{\
if ( dump )\
{\
g_message( __VA_ARGS__ );\
\
}\
if ( dumpD )\
{\
);\
dialog); \
}\
}
#else // DEBUG_LCMS
#define DEBUG_MESSAGE_SCISLAC(key, ...)
#endif // DEBUG_LCMS
namespace {
SPObject* createImage() {
return new SPImage();
}
}
this->x.unset();
this->y.unset();
this->href = 0;
#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
this->color_profile = 0;
#endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
this->pixbuf = 0;
}
}
this->readAttr( "xlink:href" );
this->readAttr( "x" );
this->readAttr( "y" );
this->readAttr( "width" );
this->readAttr( "height" );
this->readAttr( "preserveAspectRatio" );
this->readAttr( "color-profile" );
/* Register */
}
if (this->document) {
// Unregister ourselves
}
if (this->href) {
}
delete this->pixbuf;
#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
if (this->color_profile) {
g_free (this->color_profile);
this->color_profile = NULL;
}
#endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
if (this->curve) {
}
}
switch (key) {
case SP_ATTR_XLINK_HREF:
break;
case SP_ATTR_X:
/* ex, em not handled correctly. */
this->x.unset();
}
break;
case SP_ATTR_Y:
/* ex, em not handled correctly. */
this->y.unset();
}
break;
case SP_ATTR_WIDTH:
/* ex, em not handled correctly. */
}
break;
case SP_ATTR_HEIGHT:
/* ex, em not handled correctly. */
}
break;
break;
#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
case SP_PROP_COLOR_PROFILE:
if ( this->color_profile ) {
g_free (this->color_profile);
}
if ( value ) {
} else {
}
// TODO check on this HREF_MODIFIED flag
break;
#endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
default:
break;
}
sp_image_set_curve(this); //creates a curve at the image's boundary for snapping
}
// BLIP
#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
// TODO: this will prevent using MIME data when exporting.
// Integrate color correction into loading.
if ( px ) {
this->color_profile );
if ( prof ) {
if ( profileClass != cmsSigNamedColorClass ) {
int intent = INTENT_PERCEPTUAL;
switch ( profIntent ) {
break;
break;
break;
case Inkscape::RENDERING_INTENT_UNKNOWN:
case Inkscape::RENDERING_INTENT_AUTO:
default:
}
intent, 0 );
if ( transf ) {
for ( int y = 0; y < imageheight; y++ ) {
// Since the types are the same size, we can do the transformation in-place
}
} else {
}
} else {
DEBUG_MESSAGE( lcmsSeven, "in <image>'s sp_image_update. Profile type is named color. Can't transform." );
}
} else {
}
}
}
#endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
if (flags & SP_IMAGE_HREF_MODIFIED_FLAG) {
delete this->pixbuf;
if (this->href) {
if (pixbuf) {
#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
#endif
}
}
}
// Why continue without a pixbuf? So we can display "Missing Image" png.
// Eventually, we should properly support SVG image type (i.e. render it ourselves).
if (this->pixbuf) {
if (!this->x._set) {
this->x.computed = 0;
}
if (!this->y._set) {
this->y.computed = 0;
}
}
}
}
// Calculate x, y, width, height from parent/initial viewport, see sp-root.cpp
}
}
}
}
// Image creates a new viewport
if (this->pixbuf) {
// Viewbox is either from SVG (not supported) or dimensions of pixbuf (PNG, JPG)
this->viewBox_set = true;
// SPItemCtx rctx =
}
// TODO: eliminate ox, oy, sx, sy
sp_image_update_canvas_image ((SPImage *) this);
}
// SPItem::onModified(flags);
if (flags & SP_OBJECT_STYLE_MODIFIED_FLAG) {
}
}
}
Inkscape::XML::Node *SPImage::write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags ) {
}
/* fixme: Reset attribute if needed (Lauris) */
if (this->x._set) {
}
if (this->y._set) {
}
}
}
//XML Tree being used directly here while it shouldn't be...
#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
if (this->color_profile) {
}
#endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
return repr;
}
bbox = Geom::Rect::from_xywh(this->x.computed, this->y.computed, this->width.computed, this->height.computed);
}
return bbox;
}
t = s * tp;
delete pb;
}
}
const char* SPImage::displayName() const {
return _("Image");
}
char *href_desc;
if (this->href) {
? g_strdup(_("embedded"))
: xml_quote_strdup(this->href);
} else {
g_warning("Attempting to call strncmp() with a null pointer.");
}
: g_strdup_printf(_("%d × %d: %s"),
href_desc) );
return ret;
}
Inkscape::DrawingItem* SPImage::show(Inkscape::Drawing &drawing, unsigned int /*key*/, unsigned int /*flags*/) {
sp_image_update_arenaitem(this, ai);
return ai;
}
Inkscape::Pixbuf *sp_image_repr_read_image(gchar const *href, gchar const *absref, gchar const *base)
{
if (fullname) {
return inkpb;
}
}
/* data URI - embedded image */
filename += 5;
return inkpb;
}
} else {
if (!g_path_is_absolute (filename)) {
/* try to load from relative pos combined with document base*/
if (!docbase) {
docbase = ".";
}
// document base can be wrong (on the temporary doc when importing bitmap from a
// different dir) or unset (when doc is not saved yet), so we check for base+href existence first,
// and if it fails, we also try to use bare href regardless of its g_path_is_absolute
return inkpb;
}
}
}
/* try filename as absolute */
return inkpb;
}
}
}
}
/* at last try to load from sp absolute path name */
// using absref is outside of SVG rules, so we must at least warn the user
g_warning ("<image xlink:href=\"%s\"> did not resolve to a valid image file (base dir is %s), now trying sodipodi:absref=\"%s\"", href, base, absref);
} else {
g_warning ("xlink:href did not resolve to a valid image file, now trying sodipodi:absref=\"%s\"", absref);
}
return inkpb;
}
}
/* Nope: We do not find any valid pixmap file :-( */
/* It should be included xpm, so if it still does not does load, */
/* our libraries are broken */
return inkpb;
}
/* We assert that realpixbuf is either NULL or identical size to pixbuf */
static void
{
}
{
}
}
void SPImage::snappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs) const {
/* An image doesn't have any nodes to snap, but still we want to be able snap one image
to another. Therefore we will create some snappoints at the corner, similar to a rect. If
the image is rotated, then the snappoints will rotate with it. Again, just like a rect.
*/
//We are looking at a clipped image: do not return any snappoints, as these might be
//far far away from the visible part from the clipped image
//TODO Do return snappoints, but only when within visual bounding box
} else {
// The image has not been clipped: return its corners, which might be rotated for example
p.push_back(Inkscape::SnapCandidatePoint(Geom::Point(x0, y0) * i2d, Inkscape::SNAPSOURCE_IMG_CORNER, Inkscape::SNAPTARGET_IMG_CORNER));
p.push_back(Inkscape::SnapCandidatePoint(Geom::Point(x0, y1) * i2d, Inkscape::SNAPSOURCE_IMG_CORNER, Inkscape::SNAPTARGET_IMG_CORNER));
p.push_back(Inkscape::SnapCandidatePoint(Geom::Point(x1, y1) * i2d, Inkscape::SNAPSOURCE_IMG_CORNER, Inkscape::SNAPTARGET_IMG_CORNER));
p.push_back(Inkscape::SnapCandidatePoint(Geom::Point(x1, y0) * i2d, Inkscape::SNAPSOURCE_IMG_CORNER, Inkscape::SNAPTARGET_IMG_CORNER));
}
}
}
/*
* Initially we'll do:
* Transform x, y, set x, y, clear translation
*/
/* Calculate position in parent coords. */
/* This function takes care of translation and scaling, we return whatever parts we can't
handle. */
} else {
ret[0] = 1.0;
}
} else {
}
/* Find position in item coords */
return ret;
}
{
//create a curve at the image's boundary for snapping
if ((image->height.computed < MAGIC_EPSILON_TOO) || (image->width.computed < MAGIC_EPSILON_TOO) || (image->clip_ref->getObject())) {
}
} else {
}
if (c) {
c->unref();
}
}
}
/**
* Return duplicate of curve (if any exists) or NULL if there is no curve
*/
{
}
return result;
}
{
bool free_data = false;
// check whether the pixbuf has MIME data
// if there is no supported MIME data, embed as PNG
data_mimetype = "image/png";
gdk_pixbuf_save_to_buffer(pb->getPixbufRaw(), reinterpret_cast<gchar**>(&data), &len, "png", NULL, NULL);
free_data = true;
}
// Save base64 encoded data in image node
// this formula taken from Glib docs
// TODO: this is very wasteful memory-wise.
// It would be better to only keep the binary data around,
// and base64 encode on the fly when saving the XML.
}
{
// It *might* change
int val = 0;
}
if ( !val ) {
// stat call worked. Check time now
unsigned int flags = SP_IMAGE_HREF_MODIFIED_FLAG;
}
}
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :