Code

BUG: #273767: crash on ...; resolved crash on several pixbuf operations
[inkscape.git] / src / display / nr-filter-image.cpp
1 /*
2  * feImage filter primitive renderer
3  *
4  * Authors:
5  *   Felipe CorrĂȘa da Silva Sanches <felipe.sanches@gmail.com>
6  *   Tavmjong Bah <tavmjong@free.fr>
7  *
8  * Copyright (C) 2007 authors
9  *
10  * Released under GNU GPL, read the file 'COPYING' for more information
11  */
12 #include "document.h"
13 #include "sp-item.h"
14 #include "display/nr-arena.h"
15 #include "display/nr-arena-item.h"
16 #include "display/nr-filter.h"
17 #include "display/nr-filter-image.h"
18 #include "display/nr-filter-units.h"
19 #include "libnr/nr-compose-transform.h"
20 #include "libnr/nr-rect-l.h"
21 #include "preferences.h"
23 namespace Inkscape {
24 namespace Filters {
26 FilterImage::FilterImage()
27 {
28     feImageHref=NULL;
29     image_pixbuf=NULL;
30     document=NULL;
31 }
33 FilterPrimitive * FilterImage::create() {
34     return new FilterImage();
35 }
37 FilterImage::~FilterImage()
38 {
39         if (feImageHref) g_free(feImageHref);
40 }
42 int FilterImage::render(FilterSlot &slot, FilterUnits const &units) {
43     if (!feImageHref) return 0;
45     NRPixBlock* pb = NULL;
46     bool free_pb_on_exit = false;
48     if(from_element){
49         if (!SVGElem) return 0;
50         
51         // prep the document
52         sp_document_ensure_up_to_date(document);
53         NRArena* arena = NRArena::create();
54         unsigned const key = sp_item_display_key_new(1);
55         NRArenaItem* ai = sp_item_invoke_show(SVGElem, arena, key, SP_ITEM_SHOW_DISPLAY);
56         if (!ai) {
57             g_warning("feImage renderer: error creating NRArenaItem for SVG Element");
58             g_free(arena);
59             return 0;
60         }
61         pb = new NRPixBlock;
62         free_pb_on_exit = true;
64         Geom::OptRect area = SVGElem->getBounds(Geom::identity());
65         
66         NRRectL rect;
67         rect.x0=area->min()[Geom::X];
68         rect.x1=area->max()[Geom::X];
69         rect.y0=area->min()[Geom::Y];
70         rect.y1=area->max()[Geom::Y];
72         width = (int)(rect.x1-rect.x0);
73         height = (int)(rect.y1-rect.y0);
74         rowstride = 4*width;
75         has_alpha = true;
77         if (image_pixbuf) g_free(image_pixbuf);
78         image_pixbuf = g_try_new(unsigned char, 4L * width * height);
79         if(image_pixbuf != NULL)
80         {
81             memset(image_pixbuf, 0x00, 4 * width * height);
83             NRGC gc(NULL);
84             /* Update to renderable state */
85             double sf = 1.0;
86             Geom::Matrix t(Geom::Scale(sf, sf));
87             nr_arena_item_set_transform(ai, &t);
88             gc.transform.setIdentity();
89             nr_arena_item_invoke_update( ai, NULL, &gc,
90                                                  NR_ARENA_ITEM_STATE_ALL,
91                                                  NR_ARENA_ITEM_STATE_NONE );
92             nr_pixblock_setup_extern(pb, NR_PIXBLOCK_MODE_R8G8B8A8N,
93                                   (int)rect.x0, (int)rect.y0, (int)rect.x1, (int)rect.y1,
94                                   image_pixbuf, 4 * width, FALSE, FALSE );
96             nr_arena_item_invoke_render(NULL, ai, &rect, pb, NR_ARENA_ITEM_RENDER_NO_CACHE);
97         }
98         else
99         {
100             g_warning("FilterImage::render: not enough memory to create pixel buffer. Need %ld.", 4L * width * height);
101         }
102         nr_arena_item_unref(ai);
103         nr_object_unref((NRObject *) arena);
104     }
107     if (!image_pixbuf){
108         try {
109             gchar *fullname = feImageHref;
110             if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) {
111                 // Try to load from relative postion combined with document base
112                 if( document ) {
113                     fullname = g_build_filename( document->base, feImageHref, NULL );
114                 }
115             }
116             if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) {
117                 // Should display Broken Image png.
118                 g_warning("FilterImage::render: Can not find: %s", feImageHref  );
119             }
120             image = Gdk::Pixbuf::create_from_file(fullname);
121             if( fullname != feImageHref ) g_free( fullname );
122         }
123         catch (const Glib::FileError & e)
124         {
125             g_warning("caught Glib::FileError in FilterImage::render %i", e.code() );
126             return 0;
127         }
128         catch (const Gdk::PixbufError & e)
129         {
130             g_warning("Gdk::PixbufError in FilterImage::render: %i", e.code() );
131             return 0;
132         }
133         if ( !image ) return 0;
135         // Native size of image
136         width = image->get_width();
137         height = image->get_height();
138         rowstride = image->get_rowstride();
139         image_pixbuf = image->get_pixels();
140         has_alpha = image->get_has_alpha();
141     }
142     int w,x,y;
143     NRPixBlock *in = slot.get(_input);
144     if (!in) {
145         g_warning("Missing source image for feImage (in=%d)", _input);
146         return 1;
147     }
149     // This section needs to be fully tested!!
151     // Region being drawn on screen
152     int x0 = in->area.x0, y0 = in->area.y0;
153     int x1 = in->area.x1, y1 = in->area.y1;
154     NRPixBlock *out = new NRPixBlock;
155     nr_pixblock_setup_fast(out, NR_PIXBLOCK_MODE_R8G8B8A8P, x0, y0, x1, y1, true);
156     w = x1 - x0;
158     // Get the object bounding box. Image is placed with respect to box.
159     // Array values:  0: width; 3: height; 4: -x; 5: -y.
160     Geom::Matrix object_bbox = units.get_matrix_user2filterunits().inverse();
162     // feImage is suppose to use the same parameters as a normal SVG image.
163     // If a width or height is set to zero, the image is not suppose to be displayed.
164     // This does not seem to be what Firefox or Opera does, nor does the W3C displacement
165     // filter test expect this behavior. If the width and/or height are zero, we use
166     // the width and height of the object bounding box.
167     if( feImageWidth  == 0 ) feImageWidth  = object_bbox[0];
168     if( feImageHeight == 0 ) feImageHeight = object_bbox[3];
170     double scaleX = width/feImageWidth;
171     double scaleY = height/feImageHeight;
173     int coordx,coordy;
174     unsigned char *out_data = NR_PIXBLOCK_PX(out);
175     Geom::Matrix unit_trans = units.get_matrix_primitiveunits2pb().inverse();
176     Geom::Matrix d2s = Geom::Translate(x0, y0) * unit_trans * Geom::Translate(object_bbox[4]-feImageX, object_bbox[5]-feImageY) * Geom::Scale(scaleX, scaleY);
178     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
179     int nr_arena_image_x_sample = prefs->getInt("/options/bitmapoversample/value", 1);
180     int nr_arena_image_y_sample = nr_arena_image_x_sample;
182     if (has_alpha) {
183         nr_R8G8B8A8_P_R8G8B8A8_P_R8G8B8A8_N_TRANSFORM(out_data, x1-x0, y1-y0, 4*w, image_pixbuf, width, height, rowstride, d2s, 255, nr_arena_image_x_sample, nr_arena_image_y_sample);
184     } else {
185         for (x=x0; x < x1; x++){
186             for (y=y0; y < y1; y++){
187                 //TODO: use interpolation
188                 // Temporarily add 0.5 so we sample center of "cell"
189                 double indexX = scaleX * (((x+0.5) * unit_trans[0] + unit_trans[4]) - feImageX + object_bbox[4]);
190                 double indexY = scaleY * (((y+0.5) * unit_trans[3] + unit_trans[5]) - feImageY + object_bbox[5]);
192                 // coordx == 0 and coordy == 0 must be included, but we protect
193                 // against negative numbers which round up to 0 with (int).
194                 coordx = ( indexX >= 0 ? int( indexX ) : -1 );
195                 coordy = ( indexY >= 0 ? int( indexY ) : -1 );
196                 if (coordx >= 0 && coordx < width && coordy >= 0 && coordy < height){
197                     out_data[4*((x - x0)+w*(y - y0))    ] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy    ]; //Red
198                     out_data[4*((x - x0)+w*(y - y0)) + 1] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy + 1]; //Green
199                     out_data[4*((x - x0)+w*(y - y0)) + 2] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy + 2]; //Blue
200                     out_data[4*((x - x0)+w*(y - y0)) + 3] = 255; //Alpha
201                 }
202             }
203         }
204     }
205     if (free_pb_on_exit) nr_pixblock_release(pb);
207     out->empty = FALSE;
208     slot.set(_output, out);
209     return 0;
212 void FilterImage::set_href(const gchar *href){
213     if (feImageHref) g_free (feImageHref);
214     feImageHref = (href) ? g_strdup (href) : NULL;
217 void FilterImage::set_document(SPDocument *doc){
218     document = doc;
221 void FilterImage::set_region(SVGLength x, SVGLength y, SVGLength width, SVGLength height){
222         feImageX=x.computed;
223         feImageY=y.computed;
224         feImageWidth=width.computed;
225         feImageHeight=height.computed;
228 FilterTraits FilterImage::get_input_traits() {
229     return TRAIT_PARALLER;
232 } /* namespace Filters */
233 } /* namespace Inkscape */
235 /*
236   Local Variables:
237   mode:c++
238   c-file-style:"stroustrup"
239   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
240   indent-tabs-mode:nil
241   fill-column:99
242   End:
243 */
244 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :