Code

Fix to prevent convolvematrix.cpp from setting targetX/Y to zero if no value is given.
[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_new(unsigned char, 4 * width * height);
79         memset(image_pixbuf, 0x00, 4 * width * height);
81         NRGC gc(NULL);
82         /* Update to renderable state */
83         double sf = 1.0;
84         Geom::Matrix t(Geom::Scale(sf, sf));
85         nr_arena_item_set_transform(ai, &t);
86         gc.transform.setIdentity();
87         nr_arena_item_invoke_update( ai, NULL, &gc,
88                                              NR_ARENA_ITEM_STATE_ALL,
89                                              NR_ARENA_ITEM_STATE_NONE );
90         nr_pixblock_setup_extern(pb, NR_PIXBLOCK_MODE_R8G8B8A8N,
91                               (int)rect.x0, (int)rect.y0, (int)rect.x1, (int)rect.y1,
92                               image_pixbuf, 4 * width, FALSE, FALSE );
94         nr_arena_item_invoke_render(NULL, ai, &rect, pb, NR_ARENA_ITEM_RENDER_NO_CACHE);
96         nr_arena_item_unref(ai);
97         nr_object_unref((NRObject *) arena);
98     }
101     if (!image_pixbuf){
102         try {
103             gchar *fullname = feImageHref;
104             if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) {
105                 // Try to load from relative postion combined with document base
106                 if( document ) {
107                     fullname = g_build_filename( document->base, feImageHref, NULL );
108                 }
109             }
110             if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) {
111                 // Should display Broken Image png.
112                 g_warning("FilterImage::render: Can not find: %s", feImageHref  );
113             }
114             image = Gdk::Pixbuf::create_from_file(fullname);
115             if( fullname != feImageHref ) g_free( fullname );
116         }
117         catch (const Glib::FileError & e)
118         {
119             g_warning("caught Glib::FileError in FilterImage::render %i", e.code() );
120             return 0;
121         }
122         catch (const Gdk::PixbufError & e)
123         {
124             g_warning("Gdk::PixbufError in FilterImage::render: %i", e.code() );
125             return 0;
126         }
127         if ( !image ) return 0;
129         // Native size of image
130         width = image->get_width();
131         height = image->get_height();
132         rowstride = image->get_rowstride();
133         image_pixbuf = image->get_pixels();
134         has_alpha = image->get_has_alpha();
135     }
136     int w,x,y;
137     NRPixBlock *in = slot.get(_input);
138     if (!in) {
139         g_warning("Missing source image for feImage (in=%d)", _input);
140         return 1;
141     }
143     // This section needs to be fully tested!!
145     // Region being drawn on screen
146     int x0 = in->area.x0, y0 = in->area.y0;
147     int x1 = in->area.x1, y1 = in->area.y1;
148     NRPixBlock *out = new NRPixBlock;
149     nr_pixblock_setup_fast(out, NR_PIXBLOCK_MODE_R8G8B8A8P, x0, y0, x1, y1, true);
150     w = x1 - x0;
152     // Get the object bounding box. Image is placed with respect to box.
153     // Array values:  0: width; 3: height; 4: -x; 5: -y.
154     Geom::Matrix object_bbox = units.get_matrix_user2filterunits().inverse();
156     // feImage is suppose to use the same parameters as a normal SVG image.
157     // If a width or height is set to zero, the image is not suppose to be displayed.
158     // This does not seem to be what Firefox or Opera does, nor does the W3C displacement
159     // filter test expect this behavior. If the width and/or height are zero, we use
160     // the width and height of the object bounding box.
161     if( feImageWidth  == 0 ) feImageWidth  = object_bbox[0];
162     if( feImageHeight == 0 ) feImageHeight = object_bbox[3];
164     double scaleX = width/feImageWidth;
165     double scaleY = height/feImageHeight;
167     int coordx,coordy;
168     unsigned char *out_data = NR_PIXBLOCK_PX(out);
169     Geom::Matrix unit_trans = units.get_matrix_primitiveunits2pb().inverse();
170     Geom::Matrix d2s = Geom::Translate(x0, y0) * unit_trans * Geom::Translate(object_bbox[4]-feImageX, object_bbox[5]-feImageY) * Geom::Scale(scaleX, scaleY);
172     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
173     int nr_arena_image_x_sample = prefs->getInt("/options/bitmapoversample/value", 1);
174     int nr_arena_image_y_sample = nr_arena_image_x_sample;
176     if (has_alpha) {
177         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);
178     } else {
179         for (x=x0; x < x1; x++){
180             for (y=y0; y < y1; y++){
181                 //TODO: use interpolation
182                 // Temporarily add 0.5 so we sample center of "cell"
183                 double indexX = scaleX * (((x+0.5) * unit_trans[0] + unit_trans[4]) - feImageX + object_bbox[4]);
184                 double indexY = scaleY * (((y+0.5) * unit_trans[3] + unit_trans[5]) - feImageY + object_bbox[5]);
186                 // coordx == 0 and coordy == 0 must be included, but we protect
187                 // against negative numbers which round up to 0 with (int).
188                 coordx = ( indexX >= 0 ? int( indexX ) : -1 );
189                 coordy = ( indexY >= 0 ? int( indexY ) : -1 );
190                 if (coordx >= 0 && coordx < width && coordy >= 0 && coordy < height){
191                     out_data[4*((x - x0)+w*(y - y0))    ] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy    ]; //Red
192                     out_data[4*((x - x0)+w*(y - y0)) + 1] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy + 1]; //Green
193                     out_data[4*((x - x0)+w*(y - y0)) + 2] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy + 2]; //Blue
194                     out_data[4*((x - x0)+w*(y - y0)) + 3] = 255; //Alpha
195                 }
196             }
197         }
198     }
199     if (free_pb_on_exit) nr_pixblock_release(pb);
201     out->empty = FALSE;
202     slot.set(_output, out);
203     return 0;
206 void FilterImage::set_href(const gchar *href){
207     if (feImageHref) g_free (feImageHref);
208     feImageHref = (href) ? g_strdup (href) : NULL;
211 void FilterImage::set_document(SPDocument *doc){
212     document = doc;
215 void FilterImage::set_region(SVGLength x, SVGLength y, SVGLength width, SVGLength height){
216         feImageX=x.computed;
217         feImageY=y.computed;
218         feImageWidth=width.computed;
219         feImageHeight=height.computed;
222 FilterTraits FilterImage::get_input_traits() {
223     return TRAIT_PARALLER;
226 } /* namespace Filters */
227 } /* namespace Inkscape */
229 /*
230   Local Variables:
231   mode:c++
232   c-file-style:"stroustrup"
233   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
234   indent-tabs-mode:nil
235   fill-column:99
236   End:
237 */
238 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :