summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8cca28f)
raw | patch | inline | side by side (parent: 8cca28f)
author | jaspervdg <jaspervdg@users.sourceforge.net> | |
Fri, 16 Jan 2009 08:48:38 +0000 (08:48 +0000) | ||
committer | jaspervdg <jaspervdg@users.sourceforge.net> | |
Fri, 16 Jan 2009 08:48:38 +0000 (08:48 +0000) |
src/display/nr-filter-image.cpp | patch | blob | history | |
src/display/nr-filter-image.h | patch | blob | history |
index b6830a47a1c2d700365afa45cc02a087ce95f5aa..1cfe97125d1d27bdfa03e9c9896abab83522a286 100644 (file)
#include "display/nr-filter.h"
#include "display/nr-filter-image.h"
#include "display/nr-filter-units.h"
+#include "libnr/nr-compose-transform.h"
#include "libnr/nr-rect-l.h"
+#include "preferences.h"
namespace Inkscape {
namespace Filters {
width = (int)(rect.x1-rect.x0);
height = (int)(rect.y1-rect.y0);
+ rowstride = 4*width;
+ has_alpha = true;
if (image_pixbuf) g_free(image_pixbuf);
image_pixbuf = g_new(unsigned char, 4 * width * height);
nr_arena_item_invoke_update( ai, NULL, &gc,
NR_ARENA_ITEM_STATE_ALL,
NR_ARENA_ITEM_STATE_NONE );
- nr_pixblock_setup_extern(pb, NR_PIXBLOCK_MODE_R8G8B8A8P,
+ nr_pixblock_setup_extern(pb, NR_PIXBLOCK_MODE_R8G8B8A8N,
(int)rect.x0, (int)rect.y0, (int)rect.x1, (int)rect.y1,
image_pixbuf, 4 * width, FALSE, FALSE );
height = image->get_height();
rowstride = image->get_rowstride();
image_pixbuf = image->get_pixels();
+ has_alpha = image->get_has_alpha();
}
int w,x,y;
NRPixBlock *in = slot.get(_input);
int x0 = in->area.x0, y0 = in->area.y0;
int x1 = in->area.x1, y1 = in->area.y1;
NRPixBlock *out = new NRPixBlock;
- nr_pixblock_setup_fast(out, from_element?NR_PIXBLOCK_MODE_R8G8B8A8P:NR_PIXBLOCK_MODE_R8G8B8A8N, x0, y0, x1, y1, true);
+ nr_pixblock_setup_fast(out, NR_PIXBLOCK_MODE_R8G8B8A8P, x0, y0, x1, y1, true);
w = x1 - x0;
// Get the object bounding box. Image is placed with respect to box.
int coordx,coordy;
unsigned char *out_data = NR_PIXBLOCK_PX(out);
Geom::Matrix unit_trans = units.get_matrix_primitiveunits2pb().inverse();
- for (x=x0; x < x1; x++){
- for (y=y0; y < y1; y++){
- //TODO: use interpolation
- // Temporarily add 0.5 so we sample center of "cell"
- double indexX = scaleX * (((x+0.5) * unit_trans[0] + unit_trans[4]) - feImageX + object_bbox[4]);
- double indexY = scaleY * (((y+0.5) * unit_trans[3] + unit_trans[5]) - feImageY + object_bbox[5]);
-
- // coordx == 0 and coordy == 0 must be included, but we protect
- // against negative numbers which round up to 0 with (int).
- coordx = ( indexX >= 0 ? int( indexX ) : -1 );
- coordy = ( indexY >= 0 ? int( indexY ) : -1 );
- if (coordx >= 0 && coordx < width && coordy >= 0 && coordy < height){
- if (from_element){
- out_data[4*((x - x0)+w*(y - y0))] = (unsigned char) image_pixbuf[4*(coordx + width*coordy)]; //Red
- out_data[4*((x - x0)+w*(y - y0)) + 1] = (unsigned char) image_pixbuf[4*(coordx + width*coordy) + 1]; //Green
- out_data[4*((x - x0)+w*(y - y0)) + 2] = (unsigned char) image_pixbuf[4*(coordx + width*coordy) + 2]; //Blue
- out_data[4*((x - x0)+w*(y - y0)) + 3] = (unsigned char) image_pixbuf[4*(coordx + width*coordy) + 3]; //Alpha
- } else {
- out_data[4*((x - x0)+w*(y - y0))] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy]; //Red
+ Geom::Matrix d2s = Geom::Translate(x0, y0) * unit_trans * Geom::Translate(object_bbox[4]-feImageX, object_bbox[5]-feImageY) * Geom::Scale(scaleX, scaleY);
+
+ Inkscape::Preferences *prefs = Inkscape::Preferences::get();
+ int nr_arena_image_x_sample = prefs->getInt("/options/bitmapoversample/value", 1);
+ int nr_arena_image_y_sample = nr_arena_image_x_sample;
+
+ if (has_alpha) {
+ 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);
+ } else {
+ for (x=x0; x < x1; x++){
+ for (y=y0; y < y1; y++){
+ //TODO: use interpolation
+ // Temporarily add 0.5 so we sample center of "cell"
+ double indexX = scaleX * (((x+0.5) * unit_trans[0] + unit_trans[4]) - feImageX + object_bbox[4]);
+ double indexY = scaleY * (((y+0.5) * unit_trans[3] + unit_trans[5]) - feImageY + object_bbox[5]);
+
+ // coordx == 0 and coordy == 0 must be included, but we protect
+ // against negative numbers which round up to 0 with (int).
+ coordx = ( indexX >= 0 ? int( indexX ) : -1 );
+ coordy = ( indexY >= 0 ? int( indexY ) : -1 );
+ if (coordx >= 0 && coordx < width && coordy >= 0 && coordy < height){
+ out_data[4*((x - x0)+w*(y - y0)) ] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy ]; //Red
out_data[4*((x - x0)+w*(y - y0)) + 1] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy + 1]; //Green
out_data[4*((x - x0)+w*(y - y0)) + 2] = (unsigned char) image_pixbuf[3*coordx + rowstride*coordy + 2]; //Blue
out_data[4*((x - x0)+w*(y - y0)) + 3] = 255; //Alpha
index f7f0fe59062379822bd9f0fbc7a2a3df09b15448..f3565ef9f756899b5455f198f1c236b794434fd7 100644 (file)
Glib::RefPtr<Gdk::Pixbuf> image;
int width, height, rowstride;
float feImageX,feImageY,feImageWidth,feImageHeight;
+ bool has_alpha;
};
} /* namespace Filters */