summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d109687)
raw | patch | inline | side by side (parent: d109687)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Sun, 5 Nov 2006 05:38:55 +0000 (05:38 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Sun, 5 Nov 2006 05:38:55 +0000 (05:38 +0000) |
src/display/nr-arena-image.cpp | patch | blob | history | |
src/display/nr-arena-image.h | patch | blob | history | |
src/preferences-skeleton.h | patch | blob | history |
index 39e33c7711b07f40bc418ed77cc99e8f7e46d3dc..cf662b829e9d96a8265af674985fd417e776d4fd 100644 (file)
*/
#include <libnr/nr-compose-transform.h>
+#include <libnr/nr-blit.h>
#include "../prefs-utils.h"
#include "nr-arena-image.h"
#include "style.h"
+#include "display/nr-arena.h"
#include "display/nr-filter.h"
#include "display/nr-filter-gaussian.h"
+#include <livarot/Path.h>
+#include <livarot/Shape.h>
#include "sp-filter.h"
#include "sp-gaussian-blur.h"
*
*/
+// defined in nr-arena-shape.cpp
+void nr_pixblock_render_shape_mask_or(NRPixBlock &m, Shape *theS);
+
static void nr_arena_image_class_init (NRArenaImageClass *klass);
static void nr_arena_image_init (NRArenaImage *image);
static void nr_arena_image_finalize (NRObject *object);
@@ -137,6 +144,12 @@ nr_arena_image_update (NRArenaItem *item, NRRectL *area, NRGC *gc, unsigned int
bbox.y0 = image->y;
bbox.x1 = image->x + image->width;
bbox.y1 = image->y + image->height;
+
+ image->c00 = (NR::Point(bbox.x0, bbox.y0) * gc->transform);
+ image->c01 = (NR::Point(bbox.x0, bbox.y1) * gc->transform);
+ image->c10 = (NR::Point(bbox.x1, bbox.y0) * gc->transform);
+ image->c11 = (NR::Point(bbox.x1, bbox.y1) * gc->transform);
+
nr_rect_d_matrix_transform (&bbox, &bbox, &gc->transform);
item->bbox.x0 = (int) floor (bbox.x0);
@@ -164,22 +177,9 @@ nr_arena_image_render (NRArenaItem *item, NRRectL *area, NRPixBlock *pb, unsigne
nr_arena_image_x_sample = prefs_get_int_attribute ("options.bitmapoversample", "value", 1);
nr_arena_image_y_sample = nr_arena_image_x_sample;
- NRArenaImage *image = NR_ARENA_IMAGE (item);
-
- if (!image->px) return item->state;
-
- guint32 Falpha = item->opacity;
- if (Falpha < 1) return item->state;
+ bool outline = (item->arena->rendermode == RENDERMODE_OUTLINE);
- unsigned char * dpx = NR_PIXBLOCK_PX (pb);
- const int drs = pb->rs;
- const int dw = pb->area.x1 - pb->area.x0;
- const int dh = pb->area.y1 - pb->area.y0;
-
- unsigned char * spx = image->px;
- const int srs = image->pxrs;
- const int sw = image->pxw;
- const int sh = image->pxh;
+ NRArenaImage *image = NR_ARENA_IMAGE (item);
NR::Matrix d2s;
@@ -190,22 +190,69 @@ nr_arena_image_render (NRArenaItem *item, NRRectL *area, NRPixBlock *pb, unsigne
d2s[4] = b2i[0] * pb->area.x0 + b2i[2] * pb->area.y0 + b2i[4];
d2s[5] = b2i[1] * pb->area.x0 + b2i[3] * pb->area.y0 + b2i[5];
- if (pb->mode == NR_PIXBLOCK_MODE_R8G8B8) {
- /* fixme: This is not implemented yet (Lauris) */
- /* nr_R8G8B8_R8G8B8_R8G8B8A8_N_TRANSFORM (dpx, dw, dh, drs, spx, sw, sh, srs, d2s, Falpha, nr_arena_image_x_sample, nr_arena_image_y_sample); */
- } else if (pb->mode == NR_PIXBLOCK_MODE_R8G8B8A8P) {
- nr_R8G8B8A8_P_R8G8B8A8_P_R8G8B8A8_N_TRANSFORM (dpx, dw, dh, drs, spx, sw, sh, srs, d2s, Falpha, nr_arena_image_x_sample, nr_arena_image_y_sample);
- } else if (pb->mode == NR_PIXBLOCK_MODE_R8G8B8A8N) {
+ if (!outline) {
- //FIXME: The _N_N_N_ version gives a gray border around images, see bug 906376
- // This mode is only used when exporting, screen rendering always has _P_P_P_, so I decided to simply replace it for now
- // Feel free to propose a better fix
+ if (!image->px) return item->state;
- //nr_R8G8B8A8_N_R8G8B8A8_N_R8G8B8A8_N_TRANSFORM (dpx, dw, dh, drs, spx, sw, sh, srs, d2s, Falpha, nr_arena_image_x_sample, nr_arena_image_y_sample);
- nr_R8G8B8A8_P_R8G8B8A8_P_R8G8B8A8_N_TRANSFORM (dpx, dw, dh, drs, spx, sw, sh, srs, d2s, Falpha, nr_arena_image_x_sample, nr_arena_image_y_sample);
- }
+ guint32 Falpha = item->opacity;
+ if (Falpha < 1) return item->state;
+
+ unsigned char * dpx = NR_PIXBLOCK_PX (pb);
+ const int drs = pb->rs;
+ const int dw = pb->area.x1 - pb->area.x0;
+ const int dh = pb->area.y1 - pb->area.y0;
+
+ unsigned char * spx = image->px;
+ const int srs = image->pxrs;
+ const int sw = image->pxw;
+ const int sh = image->pxh;
- pb->empty = FALSE;
+ if (pb->mode == NR_PIXBLOCK_MODE_R8G8B8) {
+ /* fixme: This is not implemented yet (Lauris) */
+ /* nr_R8G8B8_R8G8B8_R8G8B8A8_N_TRANSFORM (dpx, dw, dh, drs, spx, sw, sh, srs, d2s, Falpha, nr_arena_image_x_sample, nr_arena_image_y_sample); */
+ } else if (pb->mode == NR_PIXBLOCK_MODE_R8G8B8A8P) {
+ nr_R8G8B8A8_P_R8G8B8A8_P_R8G8B8A8_N_TRANSFORM (dpx, dw, dh, drs, spx, sw, sh, srs, d2s, Falpha, nr_arena_image_x_sample, nr_arena_image_y_sample);
+ } else if (pb->mode == NR_PIXBLOCK_MODE_R8G8B8A8N) {
+
+ //FIXME: The _N_N_N_ version gives a gray border around images, see bug 906376
+ // This mode is only used when exporting, screen rendering always has _P_P_P_, so I decided to simply replace it for now
+ // Feel free to propose a better fix
+
+ //nr_R8G8B8A8_N_R8G8B8A8_N_R8G8B8A8_N_TRANSFORM (dpx, dw, dh, drs, spx, sw, sh, srs, d2s, Falpha, nr_arena_image_x_sample, nr_arena_image_y_sample);
+ nr_R8G8B8A8_P_R8G8B8A8_P_R8G8B8A8_N_TRANSFORM (dpx, dw, dh, drs, spx, sw, sh, srs, d2s, Falpha, nr_arena_image_x_sample, nr_arena_image_y_sample);
+ }
+
+ pb->empty = FALSE;
+
+ } else { // outline; draw a rect instead
+
+ Path* thePath = new Path;
+ thePath->SetBackData (false);
+ thePath->Reset ();
+
+ thePath->MoveTo (image->c00);
+ thePath->LineTo (image->c10);
+ thePath->LineTo (image->c11);
+ thePath->LineTo (image->c01);
+ thePath->LineTo (image->c00);
+
+ thePath->Convert(1.0);
+
+ Shape* theShape = new Shape;
+ thePath->Stroke(theShape, true, 0.25, join_pointy, butt_straight, 5);
+
+ NRPixBlock m;
+ nr_pixblock_setup_fast(&m, NR_PIXBLOCK_MODE_A8, area->x0, area->y0, area->x1, area->y1, TRUE);
+ m.visible_area = pb->visible_area;
+ nr_pixblock_render_shape_mask_or(m, theShape);
+ m.empty = FALSE;
+ guint32 rgba = prefs_get_int_attribute("options.wireframecolors", "images", 0xff0000ff);
+ nr_blit_pixblock_mask_rgba32(pb, &m, rgba);
+ pb->empty = FALSE;
+ nr_pixblock_release(&m);
+ delete theShape;
+ delete thePath;
+ }
return item->state;
}
index 60485ea33ef984236dc66e0cfdcefed24f8e814e..d7a9c1c7c24bf9ad962907885e5eb61512d811ae 100644 (file)
double x, y;
double width, height;
+ NR::Point c00, c01, c11, c10; // all 4 corners of the image, for outline mode rect
+
/* From GRID to PIXELS */
NR::Matrix grid2px;
index 32614fc7b864a2e208d9022a888669fe30b4f102..ee1fd14ca153e9d4a1c90ba846ba75d29414740f 100644 (file)
" <group id=\"wireframecolors\" "
" onlight=\"255\"" // 000000ff
" ondark=\"4294967295\"" //ffffffff
+" images=\"4278190335\"" //ff0000ff
" clips=\"16711935\"" // 00ff00ff
" masks=\"65535\"/>\n" // 0x0000ffff
" <group id=\"svgoutput\" usenamedcolors=\"0\" numericprecision=\"8\" minimumexponent=\"-8\" inlineattrs=\"0\" indent=\"2\"/>\n"