1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
|
/** \file
* Rendering with Cairo.
*/
/*
* Author:
* Miklos Erdelyi <erdelyim@gmail.com>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* Copyright (C) 2006 Miklos Erdelyi
*
* Licensed under GNU GPL
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifndef PANGO_ENABLE_BACKEND
#define PANGO_ENABLE_BACKEND
#endif
#ifndef PANGO_ENABLE_ENGINE
#define PANGO_ENABLE_ENGINE
#endif
#include <signal.h>
#include <errno.h>
#include <boost/scoped_ptr.hpp>
#include "libnrtype/Layout-TNG.h"
#include <2geom/transforms.h>
#include <2geom/pathvector.h>
#include <glib.h>
#include <glibmm/i18n.h>
#include "display/curve.h"
#include "display/canvas-bpath.h"
#include "display/cairo-utils.h"
#include "sp-item.h"
#include "sp-item-group.h"
#include "style.h"
#include "sp-marker.h"
#include "sp-linear-gradient.h"
#include "sp-radial-gradient.h"
#include "sp-root.h"
#include "sp-shape.h"
#include "sp-use.h"
#include "sp-text.h"
#include "sp-flowtext.h"
#include "sp-hatch-path.h"
#include "sp-image.h"
#include "sp-symbol.h"
#include "sp-pattern.h"
#include "sp-mask.h"
#include "sp-clippath.h"
#include "util/units.h"
#include "helper/png-write.h"
#include "helper/pixbuf-ops.h"
#include "cairo-renderer.h"
#include "cairo-render-context.h"
#include "extension/system.h"
#include "io/sys.h"
#include <cairo.h>
#include "document.h"
// include support for only the compiled-in surface types
#ifdef CAIRO_HAS_PDF_SURFACE
#include <cairo-pdf.h>
#endif
#ifdef CAIRO_HAS_PS_SURFACE
#include <cairo-ps.h>
#endif
//#define TRACE(_args) g_printf _args
#define TRACE(_args)
//#define TEST(_args) _args
#define TEST(_args)
// FIXME: expose these from sp-clippath/mask.cpp
struct SPClipPathView {
SPClipPathView *next;
unsigned int key;
Inkscape::DrawingItem *arenaitem;
Geom::OptRect bbox;
};
struct SPMaskView {
SPMaskView *next;
unsigned int key;
Inkscape::DrawingItem *arenaitem;
Geom::OptRect bbox;
};
namespace Inkscape {
namespace Extension {
namespace Internal {
CairoRenderer::CairoRenderer(void)
{}
CairoRenderer::~CairoRenderer(void)
{
/* restore default signal handling for SIGPIPE */
#if !defined(_WIN32) && !defined(__WIN32__)
(void) signal(SIGPIPE, SIG_DFL);
#endif
return;
}
CairoRenderContext*
CairoRenderer::createContext(void)
{
CairoRenderContext *new_context = new CairoRenderContext(this);
g_assert( new_context != NULL );
new_context->_state_stack = NULL;
new_context->_state = NULL;
// create initial render state
CairoRenderState *state = new_context->_createState();
state->transform = Geom::identity();
new_context->_state_stack = g_slist_prepend(new_context->_state_stack, state);
new_context->_state = state;
return new_context;
}
void
CairoRenderer::destroyContext(CairoRenderContext *ctx)
{
delete ctx;
}
/*
Here comes the rendering part which could be put into the 'render' methods of SPItems'
*/
/* The below functions are copy&pasted plus slightly modified from *_invoke_print functions. */
static void sp_item_invoke_render(SPItem *item, CairoRenderContext *ctx);
static void sp_group_render(SPGroup *group, CairoRenderContext *ctx);
static void sp_use_render(SPUse *use, CairoRenderContext *ctx);
static void sp_shape_render(SPShape *shape, CairoRenderContext *ctx);
static void sp_text_render(SPText *text, CairoRenderContext *ctx);
static void sp_flowtext_render(SPFlowtext *flowtext, CairoRenderContext *ctx);
static void sp_image_render(SPImage *image, CairoRenderContext *ctx);
static void sp_symbol_render(SPSymbol *symbol, CairoRenderContext *ctx);
static void sp_asbitmap_render(SPItem *item, CairoRenderContext *ctx);
static void sp_shape_render_invoke_marker_rendering(SPMarker* marker, Geom::Affine tr, SPStyle* style, CairoRenderContext *ctx)
{
bool render = true;
if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
if (style->stroke_width.computed > 1e-9) {
tr = Geom::Scale(style->stroke_width.computed) * tr;
} else {
render = false; // stroke width zero and marker is thus scaled down to zero, skip
}
}
if (render) {
SPItem* marker_item = sp_item_first_item_child(marker);
if (marker_item) {
tr = (Geom::Affine)marker_item->transform * (Geom::Affine)marker->c2p * tr;
Geom::Affine old_tr = marker_item->transform;
marker_item->transform = tr;
ctx->getRenderer()->renderItem (ctx, marker_item);
marker_item->transform = old_tr;
}
}
}
static void sp_shape_render(SPShape *shape, CairoRenderContext *ctx)
{
if (!shape->_curve) {
return;
}
Geom::OptRect pbox = shape->geometricBounds();
SPStyle* style = shape->style;
Geom::PathVector const & pathv = shape->_curve->get_pathvector();
if (pathv.empty()) {
return;
}
ctx->renderPathVector(pathv, style, pbox);
// START marker
for (int i = 0; i < 2; i++) { // SP_MARKER_LOC and SP_MARKER_LOC_START
if ( shape->_marker[i] ) {
SPMarker* marker = shape->_marker[i];
Geom::Affine tr;
if (marker->orient_mode == MARKER_ORIENT_AUTO) {
tr = sp_shape_marker_get_transform_at_start(pathv.begin()->front());
} else if (marker->orient_mode == MARKER_ORIENT_AUTO_START_REVERSE) {
tr = Geom::Rotate::from_degrees( 180.0 ) * sp_shape_marker_get_transform_at_start(pathv.begin()->front());
} else {
tr = Geom::Rotate::from_degrees(marker->orient) * Geom::Translate(pathv.begin()->front().pointAt(0));
}
sp_shape_render_invoke_marker_rendering(marker, tr, style, ctx);
}
}
// MID marker
for (int i = 0; i < 3; i += 2) { // SP_MARKER_LOC and SP_MARKER_LOC_MID
if ( !shape->_marker[i] ) continue;
SPMarker* marker = shape->_marker[i];
for(Geom::PathVector::const_iterator path_it = pathv.begin(); path_it != pathv.end(); ++path_it) {
// START position
if ( path_it != pathv.begin()
&& ! ((path_it == (pathv.end()-1)) && (path_it->size_default() == 0)) ) // if this is the last path and it is a moveto-only, there is no mid marker there
{
Geom::Affine tr;
if (marker->orient_mode != MARKER_ORIENT_ANGLE) {
tr = sp_shape_marker_get_transform_at_start(path_it->front());
} else {
tr = Geom::Rotate::from_degrees(marker->orient) * Geom::Translate(path_it->front().pointAt(0));
}
sp_shape_render_invoke_marker_rendering(marker, tr, style, ctx);
}
// MID position
if (path_it->size_default() > 1) {
Geom::Path::const_iterator curve_it1 = path_it->begin(); // incoming curve
Geom::Path::const_iterator curve_it2 = ++(path_it->begin()); // outgoing curve
while (curve_it2 != path_it->end_default())
{
/* Put marker between curve_it1 and curve_it2.
* Loop to end_default (so including closing segment), because when a path is closed,
* there should be a midpoint marker between last segment and closing straight line segment */
Geom::Affine tr;
if (marker->orient_mode != MARKER_ORIENT_ANGLE) {
tr = sp_shape_marker_get_transform(*curve_it1, *curve_it2);
} else {
tr = Geom::Rotate::from_degrees(marker->orient) * Geom::Translate(curve_it1->pointAt(1));
}
sp_shape_render_invoke_marker_rendering(marker, tr, style, ctx);
++curve_it1;
++curve_it2;
}
}
// END position
if ( path_it != (pathv.end()-1) && !path_it->empty()) {
Geom::Curve const &lastcurve = path_it->back_default();
Geom::Affine tr;
if (marker->orient_mode != MARKER_ORIENT_ANGLE) {
tr = sp_shape_marker_get_transform_at_end(lastcurve);
} else {
tr = Geom::Rotate::from_degrees(marker->orient) * Geom::Translate(lastcurve.pointAt(1));
}
sp_shape_render_invoke_marker_rendering(marker, tr, style, ctx);
}
}
}
// END marker
for (int i = 0; i < 4; i += 3) { // SP_MARKER_LOC and SP_MARKER_LOC_END
if ( shape->_marker[i] ) {
SPMarker* marker = shape->_marker[i];
/* Get reference to last curve in the path.
* For moveto-only path, this returns the "closing line segment". */
Geom::Path const &path_last = pathv.back();
unsigned int index = path_last.size_default();
if (index > 0) {
index--;
}
Geom::Curve const &lastcurve = path_last[index];
Geom::Affine tr;
if (marker->orient_mode != MARKER_ORIENT_ANGLE) {
tr = sp_shape_marker_get_transform_at_end(lastcurve);
} else {
tr = Geom::Rotate::from_degrees(marker->orient) * Geom::Translate(lastcurve.pointAt(1));
}
sp_shape_render_invoke_marker_rendering(marker, tr, style, ctx);
}
}
}
static void sp_group_render(SPGroup *group, CairoRenderContext *ctx)
{
CairoRenderer *renderer = ctx->getRenderer();
TRACE(("sp_group_render opacity: %f\n", SP_SCALE24_TO_FLOAT(item->style->opacity.value)));
GSList *l = g_slist_reverse(group->childList(false));
while (l) {
SPObject *o = reinterpret_cast<SPObject *>(l->data);
SPItem *item = dynamic_cast<SPItem *>(o);
if (item) {
renderer->renderItem(ctx, item);
}
l = g_slist_remove (l, o);
}
}
static void sp_use_render(SPUse *use, CairoRenderContext *ctx)
{
bool translated = false;
CairoRenderer *renderer = ctx->getRenderer();
if ((use->x._set && use->x.computed != 0) || (use->y._set && use->y.computed != 0)) {
Geom::Affine tp(Geom::Translate(use->x.computed, use->y.computed));
ctx->pushState();
ctx->transform(tp);
translated = true;
}
if (use->child) {
renderer->renderItem(ctx, use->child);
}
if (translated) {
ctx->popState();
}
}
static void sp_text_render(SPText *text, CairoRenderContext *ctx)
{
text->layout.showGlyphs(ctx);
}
static void sp_flowtext_render(SPFlowtext *flowtext, CairoRenderContext *ctx)
{
flowtext->layout.showGlyphs(ctx);
}
static void sp_image_render(SPImage *image, CairoRenderContext *ctx)
{
if (!image->pixbuf) {
return;
}
if ((image->width.computed <= 0.0) || (image->height.computed <= 0.0)) {
return;
}
int w = image->pixbuf->width();
int h = image->pixbuf->height();
double x = image->x.computed;
double y = image->y.computed;
double width = image->width.computed;
double height = image->height.computed;
if (image->aspect_align != SP_ASPECT_NONE) {
calculatePreserveAspectRatio (image->aspect_align, image->aspect_clip, (double)w, (double)h,
&x, &y, &width, &height);
}
if (image->aspect_clip == SP_ASPECT_SLICE && !ctx->getCurrentState()->has_overflow) {
ctx->addClippingRect(image->x.computed, image->y.computed, image->width.computed, image->height.computed);
}
Geom::Translate tp(x, y);
Geom::Scale s(width / (double)w, height / (double)h);
Geom::Affine t(s * tp);
ctx->renderImage(image->pixbuf, t, image->style);
}
static void sp_symbol_render(SPSymbol *symbol, CairoRenderContext *ctx)
{
if (!symbol->cloned) {
return;
}
/* Cloned <symbol> is actually renderable */
ctx->pushState();
ctx->transform(symbol->c2p);
// apply viewbox if set
if (0 /*symbol->viewBox_set*/) {
Geom::Affine vb2user;
double x, y, width, height;
double view_width, view_height;
x = 0.0;
y = 0.0;
width = 1.0;
height = 1.0;
view_width = symbol->viewBox.width();
view_height = symbol->viewBox.height();
calculatePreserveAspectRatio(symbol->aspect_align, symbol->aspect_clip, view_width, view_height,
&x, &y,&width, &height);
// [itemTransform *] translate(x, y) * scale(w/vw, h/vh) * translate(-vx, -vy);
vb2user = Geom::identity();
vb2user[0] = width / view_width;
vb2user[3] = height / view_height;
vb2user[4] = x - symbol->viewBox.left() * vb2user[0];
vb2user[5] = y - symbol->viewBox.top() * vb2user[3];
ctx->transform(vb2user);
}
sp_group_render(symbol, ctx);
ctx->popState();
}
static void sp_root_render(SPRoot *root, CairoRenderContext *ctx)
{
CairoRenderer *renderer = ctx->getRenderer();
if (!ctx->getCurrentState()->has_overflow && root->parent)
ctx->addClippingRect(root->x.computed, root->y.computed, root->width.computed, root->height.computed);
ctx->pushState();
renderer->setStateForItem(ctx, root);
ctx->transform(root->c2p);
sp_group_render(root, ctx);
ctx->popState();
}
/**
This function converts the item to a raster image and includes the image into the cairo renderer.
It is only used for filters and then only when rendering filters as bitmaps is requested.
*/
static void sp_asbitmap_render(SPItem *item, CairoRenderContext *ctx)
{
// The code was adapted from sp_selection_create_bitmap_copy in selection-chemistry.cpp
// Calculate resolution
double res;
/** @TODO reimplement the resolution stuff (WHY?)
*/
res = ctx->getBitmapResolution();
if(res == 0) {
res = Inkscape::Util::Quantity::convert(1, "in", "px");
}
TRACE(("sp_asbitmap_render: resolution: %f\n", res ));
// Get the bounding box of the selection in desktop coordinates.
Geom::OptRect bbox = item->desktopVisualBounds();
// no bbox, e.g. empty group
if (!bbox) {
return;
}
Geom::Rect docrect(Geom::Rect(Geom::Point(0, 0), item->document->getDimensions()));
bbox &= docrect;
// no bbox, e.g. empty group
if (!bbox) {
return;
}
// The width and height of the bitmap in pixels
unsigned width = ceil(bbox->width() * Inkscape::Util::Quantity::convert(res, "px", "in"));
unsigned height = ceil(bbox->height() * Inkscape::Util::Quantity::convert(res, "px", "in"));
if (width == 0 || height == 0) return;
// Scale to exactly fit integer bitmap inside bounding box
double scale_x = bbox->width() / width;
double scale_y = bbox->height() / height;
// Location of bounding box in document coordinates.
double shift_x = bbox->min()[Geom::X];
double shift_y = bbox->max()[Geom::Y];
// For default 96 dpi, snap bitmap to pixel grid
if (res == Inkscape::Util::Quantity::convert(1, "in", "px")) {
shift_x = round (shift_x);
shift_y = -round (-shift_y); // Correct rounding despite coordinate inversion.
// Remove the negations when the inversion is gone.
}
// Calculate the matrix that will be applied to the image so that it exactly overlaps the source objects
// Matix to put bitmap in correct place on document
Geom::Affine t_on_document = (Geom::Affine)(Geom::Scale (scale_x, -scale_y)) *
(Geom::Affine)(Geom::Translate (shift_x, shift_y));
// ctx matrix already includes item transformation. We must substract.
Geom::Affine t_item = item->i2dt_affine ();
Geom::Affine t = t_on_document * t_item.inverse();
// Do the export
SPDocument *document = item->document;
GSList *items = NULL;
items = g_slist_append(items, item);
boost::scoped_ptr<Inkscape::Pixbuf> pb(
sp_generate_internal_bitmap(document, NULL,
bbox->min()[Geom::X], bbox->min()[Geom::Y], bbox->max()[Geom::X], bbox->max()[Geom::Y],
width, height, res, res, (guint32) 0xffffff00, items ));
if (pb) {
//TEST(gdk_pixbuf_save( pb, "bitmap.png", "png", NULL, NULL ));
ctx->renderImage(pb.get(), t, item->style);
}
g_slist_free (items);
}
static void sp_item_invoke_render(SPItem *item, CairoRenderContext *ctx)
{
// Check item's visibility
if (item->isHidden()) {
return;
}
SPStyle* style = item->style;
if((ctx->getFilterToBitmap() == TRUE) && (style->filter.set != 0)) {
sp_asbitmap_render(item, ctx);
}
SPRoot *root = dynamic_cast<SPRoot *>(item);
if (root) {
TRACE(("root\n"));
sp_root_render(root, ctx);
} else {
SPSymbol *symbol = dynamic_cast<SPSymbol *>(item);
if (symbol) {
TRACE(("symbol\n"));
sp_symbol_render(symbol, ctx);
} else {
SPGroup *group = dynamic_cast<SPGroup *>(item);
if (group) {
TRACE(("group\n"));
sp_group_render(group, ctx);
} else {
SPShape *shape = dynamic_cast<SPShape *>(item);
if (shape) {
TRACE(("shape\n"));
sp_shape_render(shape, ctx);
} else {
SPUse *use = dynamic_cast<SPUse *>(item);
if (use) {
TRACE(("use begin---\n"));
sp_use_render(use, ctx);
TRACE(("---use end\n"));
} else {
SPText *text = dynamic_cast<SPText *>(item);
if (text) {
TRACE(("text\n"));
sp_text_render(text, ctx);
} else {
SPFlowtext *flowtext = dynamic_cast<SPFlowtext *>(item);
if (flowtext) {
TRACE(("flowtext\n"));
sp_flowtext_render(flowtext, ctx);
} else {
SPImage *image = dynamic_cast<SPImage *>(item);
if (image) {
TRACE(("image\n"));
sp_image_render(image, ctx);
}
}
}
}
}
}
}
}
}
void
CairoRenderer::setStateForItem(CairoRenderContext *ctx, SPItem const *item)
{
SPStyle const *style = item->style;
ctx->setStateForStyle(style);
CairoRenderState *state = ctx->getCurrentState();
state->clip_path = item->clip_ref->getObject();
state->mask = item->mask_ref->getObject();
state->item_transform = Geom::Affine (item->transform);
// If parent_has_userspace is true the parent state's transform
// has to be used for the mask's/clippath's context.
// This is so because we use the image's/(flow)text's transform for positioning
// instead of explicitly specifying it and letting the renderer do the
// transformation before rendering the item.
if (dynamic_cast<SPText const *>(item) || dynamic_cast<SPFlowtext const *>(item) || dynamic_cast<SPImage const *>(item)) {
state->parent_has_userspace = TRUE;
}
TRACE(("setStateForItem opacity: %f\n", state->opacity));
}
// TODO change this to accept a const SPItem:
void CairoRenderer::renderItem(CairoRenderContext *ctx, SPItem *item)
{
ctx->pushState();
setStateForItem(ctx, item);
CairoRenderState *state = ctx->getCurrentState();
state->need_layer = ( state->mask || state->clip_path || state->opacity != 1.0 );
// Draw item on a temporary surface so a mask, clip-path, or opacity can be applied to it.
if (state->need_layer) {
state->merge_opacity = FALSE;
ctx->pushLayer();
}
ctx->transform(item->transform);
sp_item_invoke_render(item, ctx);
if (state->need_layer)
ctx->popLayer(); // This applies clipping/masking
ctx->popState();
}
void CairoRenderer::renderHatchPath(CairoRenderContext *ctx, SPHatchPath const &hatchPath, unsigned key) {
ctx->pushState();
ctx->setStateForStyle(hatchPath.style);
ctx->transform(Geom::Translate(hatchPath.offset.computed, 0));
SPCurve *curve = hatchPath.calculateRenderCurve(key);
Geom::PathVector const & pathv =curve->get_pathvector();
if (!pathv.empty()) {
ctx->renderPathVector(pathv, hatchPath.style, Geom::OptRect());
}
curve->unref();
ctx->popState();
}
bool
CairoRenderer::setupDocument(CairoRenderContext *ctx, SPDocument *doc, bool pageBoundingBox, float bleedmargin_px, SPItem *base)
{
// PLEASE note when making changes to the boundingbox and transform calculation, corresponding changes should be made to PDFLaTeXRenderer::setupDocument !!!
g_assert( ctx != NULL );
if (!base) {
base = doc->getRoot();
}
Geom::Rect d;
if (pageBoundingBox) {
d = Geom::Rect::from_xywh(Geom::Point(0,0), doc->getDimensions());
} else {
Geom::OptRect bbox = base->desktopVisualBounds();
if (!bbox) {
g_message("CairoRenderer: empty bounding box.");
return false;
}
d = *bbox;
}
d.expandBy(bleedmargin_px);
if (ctx->_vector_based_target) {
// convert from px to pt
d *= Geom::Scale(Inkscape::Util::Quantity::convert(1, "px", "pt"));
}
ctx->_width = d.width();
ctx->_height = d.height();
TRACE(("setupDocument: %f x %f\n", ctx->_width, ctx->_height));
bool ret = ctx->setupSurface(ctx->_width, ctx->_height);
if (ret) {
if (pageBoundingBox) {
// translate to set bleed/margin
Geom::Affine tp( Geom::Translate( bleedmargin_px, bleedmargin_px ) );
ctx->transform(tp);
} else {
double high = doc->getHeight().value("px");
if (ctx->_vector_based_target)
high = Inkscape::Util::Quantity::convert(high, "px", "pt");
// this transform translates the export drawing to a virtual page (0,0)-(width,height)
Geom::Affine tp(Geom::Translate(-d.left() * (ctx->_vector_based_target ? Inkscape::Util::Quantity::convert(1, "pt", "px") : 1.0),
(d.bottom() - high) * (ctx->_vector_based_target ? Inkscape::Util::Quantity::convert(1, "pt", "px") : 1.0)));
ctx->transform(tp);
}
}
return ret;
}
#include "macros.h" // SP_PRINT_*
// Apply an SVG clip path
void
CairoRenderer::applyClipPath(CairoRenderContext *ctx, SPClipPath const *cp)
{
g_assert( ctx != NULL && ctx->_is_valid );
if (cp == NULL)
return;
CairoRenderContext::CairoRenderMode saved_mode = ctx->getRenderMode();
ctx->setRenderMode(CairoRenderContext::RENDER_MODE_CLIP);
// FIXME: the access to the first clippath view to obtain the bbox is completely bogus
Geom::Affine saved_ctm;
if (cp->clipPathUnits == SP_CONTENT_UNITS_OBJECTBOUNDINGBOX && cp->display->bbox) {
//SP_PRINT_DRECT("clipd", cp->display->bbox);
Geom::Rect clip_bbox = *cp->display->bbox;
Geom::Affine t(Geom::Scale(clip_bbox.dimensions()));
t[4] = clip_bbox.left();
t[5] = clip_bbox.top();
t *= ctx->getCurrentState()->transform;
saved_ctm = ctx->getTransform();
ctx->setTransform(t);
}
TRACE(("BEGIN clip\n"));
SPObject const *co = cp;
for ( SPObject const *child = co->firstChild() ; child; child = child->getNext() ) {
SPItem const *item = dynamic_cast<SPItem const *>(child);
if (item) {
// combine transform of the item in clippath and the item using clippath:
Geom::Affine tempmat = item->transform * ctx->getCurrentState()->item_transform;
// render this item in clippath
ctx->pushState();
ctx->transform(tempmat);
setStateForItem(ctx, item);
// TODO fix this call to accept const items
sp_item_invoke_render(const_cast<SPItem *>(item), ctx);
ctx->popState();
}
}
TRACE(("END clip\n"));
// do clipping only if this was the first call to applyClipPath
if (ctx->getClipMode() == CairoRenderContext::CLIP_MODE_PATH
&& saved_mode == CairoRenderContext::RENDER_MODE_NORMAL)
cairo_clip(ctx->_cr);
if (cp->clipPathUnits == SP_CONTENT_UNITS_OBJECTBOUNDINGBOX)
ctx->setTransform(saved_ctm);
ctx->setRenderMode(saved_mode);
}
// Apply an SVG mask
void
CairoRenderer::applyMask(CairoRenderContext *ctx, SPMask const *mask)
{
g_assert( ctx != NULL && ctx->_is_valid );
if (mask == NULL)
return;
// FIXME: the access to the first mask view to obtain the bbox is completely bogus
// TODO: should the bbox be transformed if maskUnits != userSpaceOnUse ?
if (mask->maskContentUnits == SP_CONTENT_UNITS_OBJECTBOUNDINGBOX && mask->display->bbox) {
//SP_PRINT_DRECT("maskd", &mask->display->bbox);
Geom::Rect mask_bbox = *mask->display->bbox;
Geom::Affine t(Geom::Scale(mask_bbox.dimensions()));
t[4] = mask_bbox.left();
t[5] = mask_bbox.top();
t *= ctx->getCurrentState()->transform;
ctx->setTransform(t);
}
// Clip mask contents... but...
// The mask's bounding box is the "geometric bounding box" which doesn't allow for
// filters which extend outside the bounding box. So don't clip.
// ctx->addClippingRect(mask_bbox.x0, mask_bbox.y0, mask_bbox.x1 - mask_bbox.x0, mask_bbox.y1 - mask_bbox.y0);
ctx->pushState();
TRACE(("BEGIN mask\n"));
SPObject const *co = mask;
for ( SPObject const *child = co->firstChild() ; child; child = child->getNext() ) {
SPItem const *item = dynamic_cast<SPItem const *>(child);
if (item) {
// TODO fix const correctness:
renderItem(ctx, const_cast<SPItem*>(item));
}
}
TRACE(("END mask\n"));
ctx->popState();
}
void
calculatePreserveAspectRatio(unsigned int aspect_align, unsigned int aspect_clip, double vp_width, double vp_height,
double *x, double *y, double *width, double *height)
{
if (aspect_align == SP_ASPECT_NONE)
return;
double scalex, scaley, scale;
double new_width, new_height;
scalex = *width / vp_width;
scaley = *height / vp_height;
scale = (aspect_clip == SP_ASPECT_MEET) ? MIN(scalex, scaley) : MAX(scalex, scaley);
new_width = vp_width * scale;
new_height = vp_height * scale;
/* Now place viewbox to requested position */
switch (aspect_align) {
case SP_ASPECT_XMIN_YMIN:
break;
case SP_ASPECT_XMID_YMIN:
*x -= 0.5 * (new_width - *width);
break;
case SP_ASPECT_XMAX_YMIN:
*x -= 1.0 * (new_width - *width);
break;
case SP_ASPECT_XMIN_YMID:
*y -= 0.5 * (new_height - *height);
break;
case SP_ASPECT_XMID_YMID:
*x -= 0.5 * (new_width - *width);
*y -= 0.5 * (new_height - *height);
break;
case SP_ASPECT_XMAX_YMID:
*x -= 1.0 * (new_width - *width);
*y -= 0.5 * (new_height - *height);
break;
case SP_ASPECT_XMIN_YMAX:
*y -= 1.0 * (new_height - *height);
break;
case SP_ASPECT_XMID_YMAX:
*x -= 0.5 * (new_width - *width);
*y -= 1.0 * (new_height - *height);
break;
case SP_ASPECT_XMAX_YMAX:
*x -= 1.0 * (new_width - *width);
*y -= 1.0 * (new_height - *height);
break;
default:
break;
}
*width = new_width;
*height = new_height;
}
#include "clear-n_.h"
} /* namespace Internal */
} /* namespace Extension */
} /* namespace Inkscape */
#undef TRACE
/* End of GNU GPL code */
/*
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:fileencoding=utf-8:textwidth=99 :
|