blob: 04de0460f2e4ca12675190702bd6394316837db9 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% DDDD RRRR AAA W W %
7% D D R R A A W W %
8% D D RRRR AAAAA W W W %
9% D D R RN A A WW WW %
10% DDDD R R A A W W %
11% %
12% %
13% MagickCore Image Drawing Methods %
14% %
15% %
16% Software Design %
cristyde984cd2013-12-01 14:49:27 +000017% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000018% July 1998 %
19% %
20% %
cristyb56bb242014-11-25 17:12:48 +000021% Copyright 1999-2015 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000022% dedicated to making software imaging solutions freely available. %
23% %
24% You may not use this file except in compliance with the License. You may %
25% obtain a copy of the License at %
26% %
27% http://www.imagemagick.org/script/license.php %
28% %
29% Unless required by applicable law or agreed to in writing, software %
30% distributed under the License is distributed on an "AS IS" BASIS, %
31% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
32% See the License for the specific language governing permissions and %
33% limitations under the License. %
34% %
35%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36%
37% Bill Radcliffe of Corbis (www.corbis.com) contributed the polygon
38% rendering code based on Paul Heckbert's "Concave Polygon Scan Conversion",
39% Graphics Gems, 1990. Leonard Rosenthal and David Harr of Appligent
40% (www.appligent.com) contributed the dash pattern, linecap stroking
41% algorithm, and minor rendering improvements.
42%
43*/
44
45/*
46 Include declarations.
47*/
cristy4c08aed2011-07-01 19:47:50 +000048#include "MagickCore/studio.h"
49#include "MagickCore/annotate.h"
50#include "MagickCore/artifact.h"
51#include "MagickCore/blob.h"
52#include "MagickCore/cache.h"
53#include "MagickCore/cache-view.h"
cristy6a2180c2013-05-27 10:28:36 +000054#include "MagickCore/channel.h"
cristy4c08aed2011-07-01 19:47:50 +000055#include "MagickCore/color.h"
cristy9b7a4fc2012-04-08 22:26:56 +000056#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000057#include "MagickCore/composite.h"
58#include "MagickCore/composite-private.h"
59#include "MagickCore/constitute.h"
60#include "MagickCore/draw.h"
61#include "MagickCore/draw-private.h"
62#include "MagickCore/enhance.h"
63#include "MagickCore/exception.h"
64#include "MagickCore/exception-private.h"
65#include "MagickCore/gem.h"
66#include "MagickCore/geometry.h"
67#include "MagickCore/image-private.h"
68#include "MagickCore/list.h"
69#include "MagickCore/log.h"
70#include "MagickCore/monitor.h"
71#include "MagickCore/monitor-private.h"
72#include "MagickCore/option.h"
73#include "MagickCore/paint.h"
74#include "MagickCore/pixel-accessor.h"
cristy35f15302012-06-07 14:59:02 +000075#include "MagickCore/pixel-private.h"
cristy4c08aed2011-07-01 19:47:50 +000076#include "MagickCore/property.h"
77#include "MagickCore/resample.h"
78#include "MagickCore/resample-private.h"
cristyac245f82012-05-05 17:13:57 +000079#include "MagickCore/resource_.h"
cristy4c08aed2011-07-01 19:47:50 +000080#include "MagickCore/string_.h"
81#include "MagickCore/string-private.h"
82#include "MagickCore/thread-private.h"
83#include "MagickCore/token.h"
84#include "MagickCore/transform.h"
85#include "MagickCore/utility.h"
cristy3ed852e2009-09-05 21:47:34 +000086
87/*
88 Define declarations.
89*/
90#define BezierQuantum 200
91
92/*
93 Typedef declarations.
94*/
95typedef struct _EdgeInfo
96{
97 SegmentInfo
98 bounds;
99
cristya19f1d72012-08-07 18:24:38 +0000100 double
cristy3ed852e2009-09-05 21:47:34 +0000101 scanline;
102
103 PointInfo
104 *points;
105
cristybb503372010-05-27 20:51:26 +0000106 size_t
cristy3ed852e2009-09-05 21:47:34 +0000107 number_points;
108
cristybb503372010-05-27 20:51:26 +0000109 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000110 direction;
111
112 MagickBooleanType
113 ghostline;
114
cristybb503372010-05-27 20:51:26 +0000115 size_t
cristy3ed852e2009-09-05 21:47:34 +0000116 highwater;
117} EdgeInfo;
118
119typedef struct _ElementInfo
120{
cristya19f1d72012-08-07 18:24:38 +0000121 double
cristy3ed852e2009-09-05 21:47:34 +0000122 cx,
123 cy,
124 major,
125 minor,
126 angle;
127} ElementInfo;
128
129typedef struct _PolygonInfo
130{
131 EdgeInfo
132 *edges;
133
cristybb503372010-05-27 20:51:26 +0000134 size_t
cristy3ed852e2009-09-05 21:47:34 +0000135 number_edges;
136} PolygonInfo;
137
138typedef enum
139{
140 MoveToCode,
141 OpenCode,
142 GhostlineCode,
143 LineToCode,
144 EndCode
145} PathInfoCode;
146
147typedef struct _PathInfo
148{
149 PointInfo
150 point;
151
152 PathInfoCode
153 code;
154} PathInfo;
155
156/*
157 Forward declarations.
158*/
159static MagickBooleanType
cristy947cb4c2011-10-20 18:41:46 +0000160 DrawStrokePolygon(Image *,const DrawInfo *,const PrimitiveInfo *,
161 ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +0000162
163static PrimitiveInfo
164 *TraceStrokePolygon(const DrawInfo *,const PrimitiveInfo *);
165
cristybb503372010-05-27 20:51:26 +0000166static size_t
cristy3ed852e2009-09-05 21:47:34 +0000167 TracePath(PrimitiveInfo *,const char *);
168
169static void
170 TraceArc(PrimitiveInfo *,const PointInfo,const PointInfo,const PointInfo),
171 TraceArcPath(PrimitiveInfo *,const PointInfo,const PointInfo,const PointInfo,
cristya19f1d72012-08-07 18:24:38 +0000172 const double,const MagickBooleanType,const MagickBooleanType),
cristybb503372010-05-27 20:51:26 +0000173 TraceBezier(PrimitiveInfo *,const size_t),
cristy3ed852e2009-09-05 21:47:34 +0000174 TraceCircle(PrimitiveInfo *,const PointInfo,const PointInfo),
cristye6bc7772014-11-23 03:37:33 +0000175 TraceEllipse(PrimitiveInfo *,const PointInfo,const PointInfo,
176 const PointInfo),
cristy3ed852e2009-09-05 21:47:34 +0000177 TraceLine(PrimitiveInfo *,const PointInfo,const PointInfo),
178 TraceRectangle(PrimitiveInfo *,const PointInfo,const PointInfo),
179 TraceRoundRectangle(PrimitiveInfo *,const PointInfo,const PointInfo,
180 PointInfo),
cristya19f1d72012-08-07 18:24:38 +0000181 TraceSquareLinecap(PrimitiveInfo *,const size_t,const double);
cristy3ed852e2009-09-05 21:47:34 +0000182
183/*
184%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
185% %
186% %
187% %
188% A c q u i r e D r a w I n f o %
189% %
190% %
191% %
192%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
193%
194% AcquireDrawInfo() returns a DrawInfo structure properly initialized.
195%
196% The format of the AcquireDrawInfo method is:
197%
198% DrawInfo *AcquireDrawInfo(void)
199%
200*/
201MagickExport DrawInfo *AcquireDrawInfo(void)
202{
203 DrawInfo
204 *draw_info;
205
cristy73bd4a52010-10-05 11:24:23 +0000206 draw_info=(DrawInfo *) AcquireMagickMemory(sizeof(*draw_info));
cristy3ed852e2009-09-05 21:47:34 +0000207 if (draw_info == (DrawInfo *) NULL)
208 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
209 GetDrawInfo((ImageInfo *) NULL,draw_info);
210 return(draw_info);
211}
212
213/*
214%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
215% %
216% %
217% %
218% C l o n e D r a w I n f o %
219% %
220% %
221% %
222%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
223%
anthony36fe1752011-09-29 11:28:37 +0000224% CloneDrawInfo() makes a copy of the given draw_info structure. If NULL
cristy430522c2012-09-03 00:07:16 +0000225% is specified, a new DrawInfo structure is created initialized to default
226% values.
cristy3ed852e2009-09-05 21:47:34 +0000227%
228% The format of the CloneDrawInfo method is:
229%
230% DrawInfo *CloneDrawInfo(const ImageInfo *image_info,
231% const DrawInfo *draw_info)
232%
233% A description of each parameter follows:
234%
235% o image_info: the image info.
236%
237% o draw_info: the draw info.
238%
239*/
240MagickExport DrawInfo *CloneDrawInfo(const ImageInfo *image_info,
241 const DrawInfo *draw_info)
242{
243 DrawInfo
244 *clone_info;
245
cristy947cb4c2011-10-20 18:41:46 +0000246 ExceptionInfo
247 *exception;
248
cristy73bd4a52010-10-05 11:24:23 +0000249 clone_info=(DrawInfo *) AcquireMagickMemory(sizeof(*clone_info));
cristy3ed852e2009-09-05 21:47:34 +0000250 if (clone_info == (DrawInfo *) NULL)
251 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
252 GetDrawInfo(image_info,clone_info);
253 if (draw_info == (DrawInfo *) NULL)
254 return(clone_info);
cristy947cb4c2011-10-20 18:41:46 +0000255 exception=AcquireExceptionInfo();
anthony42f6c202011-10-23 10:28:55 +0000256 (void) CloneString(&clone_info->primitive,draw_info->primitive);
257 (void) CloneString(&clone_info->geometry,draw_info->geometry);
cristy3ed852e2009-09-05 21:47:34 +0000258 clone_info->viewbox=draw_info->viewbox;
259 clone_info->affine=draw_info->affine;
260 clone_info->gravity=draw_info->gravity;
261 clone_info->fill=draw_info->fill;
262 clone_info->stroke=draw_info->stroke;
263 clone_info->stroke_width=draw_info->stroke_width;
264 if (draw_info->fill_pattern != (Image *) NULL)
265 clone_info->fill_pattern=CloneImage(draw_info->fill_pattern,0,0,MagickTrue,
cristy947cb4c2011-10-20 18:41:46 +0000266 exception);
cristy3ed852e2009-09-05 21:47:34 +0000267 if (draw_info->stroke_pattern != (Image *) NULL)
268 clone_info->stroke_pattern=CloneImage(draw_info->stroke_pattern,0,0,
cristy947cb4c2011-10-20 18:41:46 +0000269 MagickTrue,exception);
cristy3ed852e2009-09-05 21:47:34 +0000270 clone_info->stroke_antialias=draw_info->stroke_antialias;
271 clone_info->text_antialias=draw_info->text_antialias;
272 clone_info->fill_rule=draw_info->fill_rule;
273 clone_info->linecap=draw_info->linecap;
274 clone_info->linejoin=draw_info->linejoin;
275 clone_info->miterlimit=draw_info->miterlimit;
276 clone_info->dash_offset=draw_info->dash_offset;
277 clone_info->decorate=draw_info->decorate;
278 clone_info->compose=draw_info->compose;
anthony42f6c202011-10-23 10:28:55 +0000279 (void) CloneString(&clone_info->text,draw_info->text);
280 (void) CloneString(&clone_info->font,draw_info->font);
281 (void) CloneString(&clone_info->metrics,draw_info->metrics);
282 (void) CloneString(&clone_info->family,draw_info->family);
cristy3ed852e2009-09-05 21:47:34 +0000283 clone_info->style=draw_info->style;
284 clone_info->stretch=draw_info->stretch;
285 clone_info->weight=draw_info->weight;
anthony42f6c202011-10-23 10:28:55 +0000286 (void) CloneString(&clone_info->encoding,draw_info->encoding);
cristy3ed852e2009-09-05 21:47:34 +0000287 clone_info->pointsize=draw_info->pointsize;
288 clone_info->kerning=draw_info->kerning;
cristyb32b90a2009-09-07 21:45:48 +0000289 clone_info->interline_spacing=draw_info->interline_spacing;
cristy3ed852e2009-09-05 21:47:34 +0000290 clone_info->interword_spacing=draw_info->interword_spacing;
cristyc9b12952010-03-28 01:12:28 +0000291 clone_info->direction=draw_info->direction;
anthony42f6c202011-10-23 10:28:55 +0000292 (void) CloneString(&clone_info->density,draw_info->density);
cristy3ed852e2009-09-05 21:47:34 +0000293 clone_info->align=draw_info->align;
294 clone_info->undercolor=draw_info->undercolor;
295 clone_info->border_color=draw_info->border_color;
anthony42f6c202011-10-23 10:28:55 +0000296 (void) CloneString(&clone_info->server_name,draw_info->server_name);
cristy3ed852e2009-09-05 21:47:34 +0000297 if (draw_info->dash_pattern != (double *) NULL)
298 {
cristybb503372010-05-27 20:51:26 +0000299 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000300 x;
301
302 for (x=0; draw_info->dash_pattern[x] != 0.0; x++) ;
303 clone_info->dash_pattern=(double *) AcquireQuantumMemory((size_t) x+1UL,
304 sizeof(*clone_info->dash_pattern));
305 if (clone_info->dash_pattern == (double *) NULL)
306 ThrowFatalException(ResourceLimitFatalError,
307 "UnableToAllocateDashPattern");
308 (void) CopyMagickMemory(clone_info->dash_pattern,draw_info->dash_pattern,
309 (size_t) (x+1)*sizeof(*clone_info->dash_pattern));
310 }
311 clone_info->gradient=draw_info->gradient;
312 if (draw_info->gradient.stops != (StopInfo *) NULL)
313 {
cristybb503372010-05-27 20:51:26 +0000314 size_t
cristy3ed852e2009-09-05 21:47:34 +0000315 number_stops;
316
317 number_stops=clone_info->gradient.number_stops;
318 clone_info->gradient.stops=(StopInfo *) AcquireQuantumMemory((size_t)
319 number_stops,sizeof(*clone_info->gradient.stops));
320 if (clone_info->gradient.stops == (StopInfo *) NULL)
321 ThrowFatalException(ResourceLimitFatalError,
322 "UnableToAllocateDashPattern");
323 (void) CopyMagickMemory(clone_info->gradient.stops,
324 draw_info->gradient.stops,(size_t) number_stops*
325 sizeof(*clone_info->gradient.stops));
326 }
anthony42f6c202011-10-23 10:28:55 +0000327 (void) CloneString(&clone_info->clip_mask,draw_info->clip_mask);
cristy3ed852e2009-09-05 21:47:34 +0000328 clone_info->bounds=draw_info->bounds;
329 clone_info->clip_units=draw_info->clip_units;
330 clone_info->render=draw_info->render;
cristy4c08aed2011-07-01 19:47:50 +0000331 clone_info->alpha=draw_info->alpha;
cristy3ed852e2009-09-05 21:47:34 +0000332 clone_info->element_reference=draw_info->element_reference;
333 clone_info->debug=IsEventLogging();
cristy947cb4c2011-10-20 18:41:46 +0000334 exception=DestroyExceptionInfo(exception);
cristy3ed852e2009-09-05 21:47:34 +0000335 return(clone_info);
336}
337
338/*
339%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
340% %
341% %
342% %
343+ C o n v e r t P a t h T o P o l y g o n %
344% %
345% %
346% %
347%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
348%
349% ConvertPathToPolygon() converts a path to the more efficient sorted
350% rendering form.
351%
352% The format of the ConvertPathToPolygon method is:
353%
354% PolygonInfo *ConvertPathToPolygon(const DrawInfo *draw_info,
355% const PathInfo *path_info)
356%
357% A description of each parameter follows:
358%
359% o Method ConvertPathToPolygon returns the path in a more efficient sorted
360% rendering form of type PolygonInfo.
361%
362% o draw_info: Specifies a pointer to an DrawInfo structure.
363%
364% o path_info: Specifies a pointer to an PathInfo structure.
365%
366%
367*/
368
369#if defined(__cplusplus) || defined(c_plusplus)
370extern "C" {
371#endif
372
373static int CompareEdges(const void *x,const void *y)
374{
375 register const EdgeInfo
376 *p,
377 *q;
378
379 /*
380 Compare two edges.
381 */
382 p=(const EdgeInfo *) x;
383 q=(const EdgeInfo *) y;
cristy53aed702012-07-08 00:21:25 +0000384 if ((p->points[0].y-MagickEpsilon) > q->points[0].y)
cristy3ed852e2009-09-05 21:47:34 +0000385 return(1);
cristy53aed702012-07-08 00:21:25 +0000386 if ((p->points[0].y+MagickEpsilon) < q->points[0].y)
cristy3ed852e2009-09-05 21:47:34 +0000387 return(-1);
cristy53aed702012-07-08 00:21:25 +0000388 if ((p->points[0].x-MagickEpsilon) > q->points[0].x)
cristy3ed852e2009-09-05 21:47:34 +0000389 return(1);
cristy53aed702012-07-08 00:21:25 +0000390 if ((p->points[0].x+MagickEpsilon) < q->points[0].x)
cristy3ed852e2009-09-05 21:47:34 +0000391 return(-1);
392 if (((p->points[1].x-p->points[0].x)*(q->points[1].y-q->points[0].y)-
393 (p->points[1].y-p->points[0].y)*(q->points[1].x-q->points[0].x)) > 0.0)
394 return(1);
395 return(-1);
396}
397
398#if defined(__cplusplus) || defined(c_plusplus)
399}
400#endif
401
402static void LogPolygonInfo(const PolygonInfo *polygon_info)
403{
404 register EdgeInfo
405 *p;
406
cristybb503372010-05-27 20:51:26 +0000407 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000408 i,
409 j;
410
411 (void) LogMagickEvent(DrawEvent,GetMagickModule()," begin active-edge");
412 p=polygon_info->edges;
cristybb503372010-05-27 20:51:26 +0000413 for (i=0; i < (ssize_t) polygon_info->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +0000414 {
cristye8c25f92010-06-03 00:53:06 +0000415 (void) LogMagickEvent(DrawEvent,GetMagickModule()," edge %.20g:",
416 (double) i);
cristy3ed852e2009-09-05 21:47:34 +0000417 (void) LogMagickEvent(DrawEvent,GetMagickModule()," direction: %s",
418 p->direction != MagickFalse ? "down" : "up");
419 (void) LogMagickEvent(DrawEvent,GetMagickModule()," ghostline: %s",
420 p->ghostline != MagickFalse ? "transparent" : "opaque");
421 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristy14388de2011-05-15 14:57:16 +0000422 " bounds: %g %g - %g %g",p->bounds.x1,p->bounds.y1,
cristy8cd5b312010-01-07 01:10:24 +0000423 p->bounds.x2,p->bounds.y2);
cristybb503372010-05-27 20:51:26 +0000424 for (j=0; j < (ssize_t) p->number_points; j++)
cristy14388de2011-05-15 14:57:16 +0000425 (void) LogMagickEvent(DrawEvent,GetMagickModule()," %g %g",
cristy3ed852e2009-09-05 21:47:34 +0000426 p->points[j].x,p->points[j].y);
427 p++;
428 }
429 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end active-edge");
430}
431
cristybb503372010-05-27 20:51:26 +0000432static void ReversePoints(PointInfo *points,const size_t number_points)
cristy3ed852e2009-09-05 21:47:34 +0000433{
434 PointInfo
435 point;
436
cristybb503372010-05-27 20:51:26 +0000437 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000438 i;
439
cristybb503372010-05-27 20:51:26 +0000440 for (i=0; i < (ssize_t) (number_points >> 1); i++)
cristy3ed852e2009-09-05 21:47:34 +0000441 {
442 point=points[i];
443 points[i]=points[number_points-(i+1)];
444 points[number_points-(i+1)]=point;
445 }
446}
447
448static PolygonInfo *ConvertPathToPolygon(
449 const DrawInfo *magick_unused(draw_info),const PathInfo *path_info)
450{
cristycee97112010-05-28 00:44:52 +0000451 long
cristy3ed852e2009-09-05 21:47:34 +0000452 direction,
453 next_direction;
454
455 PointInfo
456 point,
457 *points;
458
459 PolygonInfo
460 *polygon_info;
461
462 SegmentInfo
463 bounds;
464
cristybb503372010-05-27 20:51:26 +0000465 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000466 i,
467 n;
468
469 MagickBooleanType
470 ghostline;
471
cristybb503372010-05-27 20:51:26 +0000472 size_t
cristy3ed852e2009-09-05 21:47:34 +0000473 edge,
474 number_edges,
475 number_points;
476
477 /*
478 Convert a path to the more efficient sorted rendering form.
479 */
cristy73bd4a52010-10-05 11:24:23 +0000480 polygon_info=(PolygonInfo *) AcquireMagickMemory(sizeof(*polygon_info));
cristy3ed852e2009-09-05 21:47:34 +0000481 if (polygon_info == (PolygonInfo *) NULL)
482 return((PolygonInfo *) NULL);
483 number_edges=16;
484 polygon_info->edges=(EdgeInfo *) AcquireQuantumMemory((size_t) number_edges,
485 sizeof(*polygon_info->edges));
486 if (polygon_info->edges == (EdgeInfo *) NULL)
487 return((PolygonInfo *) NULL);
488 direction=0;
489 edge=0;
490 ghostline=MagickFalse;
491 n=0;
492 number_points=0;
493 points=(PointInfo *) NULL;
494 (void) ResetMagickMemory(&point,0,sizeof(point));
495 (void) ResetMagickMemory(&bounds,0,sizeof(bounds));
496 for (i=0; path_info[i].code != EndCode; i++)
497 {
498 if ((path_info[i].code == MoveToCode) || (path_info[i].code == OpenCode) ||
499 (path_info[i].code == GhostlineCode))
500 {
501 /*
502 Move to.
503 */
504 if ((points != (PointInfo *) NULL) && (n >= 2))
505 {
506 if (edge == number_edges)
507 {
508 number_edges<<=1;
509 polygon_info->edges=(EdgeInfo *) ResizeQuantumMemory(
510 polygon_info->edges,(size_t) number_edges,
511 sizeof(*polygon_info->edges));
512 if (polygon_info->edges == (EdgeInfo *) NULL)
513 return((PolygonInfo *) NULL);
514 }
cristybb503372010-05-27 20:51:26 +0000515 polygon_info->edges[edge].number_points=(size_t) n;
cristy3ed852e2009-09-05 21:47:34 +0000516 polygon_info->edges[edge].scanline=(-1.0);
517 polygon_info->edges[edge].highwater=0;
518 polygon_info->edges[edge].ghostline=ghostline;
cristybb503372010-05-27 20:51:26 +0000519 polygon_info->edges[edge].direction=(ssize_t) (direction > 0);
cristy3ed852e2009-09-05 21:47:34 +0000520 if (direction < 0)
cristybb503372010-05-27 20:51:26 +0000521 ReversePoints(points,(size_t) n);
cristy3ed852e2009-09-05 21:47:34 +0000522 polygon_info->edges[edge].points=points;
523 polygon_info->edges[edge].bounds=bounds;
524 polygon_info->edges[edge].bounds.y1=points[0].y;
525 polygon_info->edges[edge].bounds.y2=points[n-1].y;
526 points=(PointInfo *) NULL;
527 ghostline=MagickFalse;
528 edge++;
529 }
530 if (points == (PointInfo *) NULL)
531 {
532 number_points=16;
533 points=(PointInfo *) AcquireQuantumMemory((size_t) number_points,
534 sizeof(*points));
535 if (points == (PointInfo *) NULL)
536 return((PolygonInfo *) NULL);
537 }
538 ghostline=path_info[i].code == GhostlineCode ? MagickTrue : MagickFalse;
539 point=path_info[i].point;
540 points[0]=point;
541 bounds.x1=point.x;
542 bounds.x2=point.x;
543 direction=0;
544 n=1;
545 continue;
546 }
547 /*
548 Line to.
549 */
550 next_direction=((path_info[i].point.y > point.y) ||
551 ((path_info[i].point.y == point.y) &&
552 (path_info[i].point.x > point.x))) ? 1 : -1;
cristy15cace92014-01-14 16:37:23 +0000553 if ((points != (PointInfo *) NULL) && (direction != 0) &&
554 (direction != next_direction))
cristy3ed852e2009-09-05 21:47:34 +0000555 {
556 /*
557 New edge.
558 */
559 point=points[n-1];
560 if (edge == number_edges)
561 {
562 number_edges<<=1;
563 polygon_info->edges=(EdgeInfo *) ResizeQuantumMemory(
564 polygon_info->edges,(size_t) number_edges,
565 sizeof(*polygon_info->edges));
566 if (polygon_info->edges == (EdgeInfo *) NULL)
567 return((PolygonInfo *) NULL);
568 }
cristybb503372010-05-27 20:51:26 +0000569 polygon_info->edges[edge].number_points=(size_t) n;
cristy3ed852e2009-09-05 21:47:34 +0000570 polygon_info->edges[edge].scanline=(-1.0);
571 polygon_info->edges[edge].highwater=0;
572 polygon_info->edges[edge].ghostline=ghostline;
cristybb503372010-05-27 20:51:26 +0000573 polygon_info->edges[edge].direction=(ssize_t) (direction > 0);
cristy3ed852e2009-09-05 21:47:34 +0000574 if (direction < 0)
cristybb503372010-05-27 20:51:26 +0000575 ReversePoints(points,(size_t) n);
cristy3ed852e2009-09-05 21:47:34 +0000576 polygon_info->edges[edge].points=points;
577 polygon_info->edges[edge].bounds=bounds;
578 polygon_info->edges[edge].bounds.y1=points[0].y;
579 polygon_info->edges[edge].bounds.y2=points[n-1].y;
580 number_points=16;
581 points=(PointInfo *) AcquireQuantumMemory((size_t) number_points,
582 sizeof(*points));
583 if (points == (PointInfo *) NULL)
584 return((PolygonInfo *) NULL);
585 n=1;
586 ghostline=MagickFalse;
587 points[0]=point;
588 bounds.x1=point.x;
589 bounds.x2=point.x;
590 edge++;
591 }
592 direction=next_direction;
593 if (points == (PointInfo *) NULL)
594 continue;
cristybb503372010-05-27 20:51:26 +0000595 if (n == (ssize_t) number_points)
cristy3ed852e2009-09-05 21:47:34 +0000596 {
597 number_points<<=1;
598 points=(PointInfo *) ResizeQuantumMemory(points,(size_t) number_points,
599 sizeof(*points));
600 if (points == (PointInfo *) NULL)
601 return((PolygonInfo *) NULL);
602 }
603 point=path_info[i].point;
604 points[n]=point;
605 if (point.x < bounds.x1)
606 bounds.x1=point.x;
607 if (point.x > bounds.x2)
608 bounds.x2=point.x;
609 n++;
610 }
611 if (points != (PointInfo *) NULL)
612 {
613 if (n < 2)
614 points=(PointInfo *) RelinquishMagickMemory(points);
615 else
616 {
617 if (edge == number_edges)
618 {
619 number_edges<<=1;
620 polygon_info->edges=(EdgeInfo *) ResizeQuantumMemory(
621 polygon_info->edges,(size_t) number_edges,
622 sizeof(*polygon_info->edges));
623 if (polygon_info->edges == (EdgeInfo *) NULL)
624 return((PolygonInfo *) NULL);
625 }
cristybb503372010-05-27 20:51:26 +0000626 polygon_info->edges[edge].number_points=(size_t) n;
cristy3ed852e2009-09-05 21:47:34 +0000627 polygon_info->edges[edge].scanline=(-1.0);
628 polygon_info->edges[edge].highwater=0;
629 polygon_info->edges[edge].ghostline=ghostline;
cristybb503372010-05-27 20:51:26 +0000630 polygon_info->edges[edge].direction=(ssize_t) (direction > 0);
cristy3ed852e2009-09-05 21:47:34 +0000631 if (direction < 0)
cristybb503372010-05-27 20:51:26 +0000632 ReversePoints(points,(size_t) n);
cristy3ed852e2009-09-05 21:47:34 +0000633 polygon_info->edges[edge].points=points;
634 polygon_info->edges[edge].bounds=bounds;
635 polygon_info->edges[edge].bounds.y1=points[0].y;
636 polygon_info->edges[edge].bounds.y2=points[n-1].y;
637 ghostline=MagickFalse;
638 edge++;
639 }
640 }
641 polygon_info->number_edges=edge;
642 qsort(polygon_info->edges,(size_t) polygon_info->number_edges,
643 sizeof(*polygon_info->edges),CompareEdges);
644 if (IsEventLogging() != MagickFalse)
645 LogPolygonInfo(polygon_info);
646 return(polygon_info);
647}
648
649/*
650%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
651% %
652% %
653% %
654+ C o n v e r t P r i m i t i v e T o P a t h %
655% %
656% %
657% %
658%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
659%
660% ConvertPrimitiveToPath() converts a PrimitiveInfo structure into a vector
661% path structure.
662%
663% The format of the ConvertPrimitiveToPath method is:
664%
665% PathInfo *ConvertPrimitiveToPath(const DrawInfo *draw_info,
666% const PrimitiveInfo *primitive_info)
667%
668% A description of each parameter follows:
669%
670% o Method ConvertPrimitiveToPath returns a vector path structure of type
671% PathInfo.
672%
673% o draw_info: a structure of type DrawInfo.
674%
675% o primitive_info: Specifies a pointer to an PrimitiveInfo structure.
676%
677%
678*/
679
680static void LogPathInfo(const PathInfo *path_info)
681{
682 register const PathInfo
683 *p;
684
685 (void) LogMagickEvent(DrawEvent,GetMagickModule()," begin vector-path");
686 for (p=path_info; p->code != EndCode; p++)
687 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristy14388de2011-05-15 14:57:16 +0000688 " %g %g %s",p->point.x,p->point.y,p->code == GhostlineCode ?
cristy3ed852e2009-09-05 21:47:34 +0000689 "moveto ghostline" : p->code == OpenCode ? "moveto open" :
690 p->code == MoveToCode ? "moveto" : p->code == LineToCode ? "lineto" :
691 "?");
692 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end vector-path");
693}
694
695static PathInfo *ConvertPrimitiveToPath(
696 const DrawInfo *magick_unused(draw_info),const PrimitiveInfo *primitive_info)
697{
cristy3ed852e2009-09-05 21:47:34 +0000698 PathInfo
699 *path_info;
700
701 PathInfoCode
702 code;
703
704 PointInfo
705 p,
706 q;
707
cristybb503372010-05-27 20:51:26 +0000708 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000709 i,
710 n;
711
cristy826a5472010-08-31 23:21:38 +0000712 ssize_t
713 coordinates,
714 start;
715
cristy3ed852e2009-09-05 21:47:34 +0000716 /*
717 Converts a PrimitiveInfo structure into a vector path structure.
718 */
719 switch (primitive_info->primitive)
720 {
dirk34e1a212015-03-22 16:45:12 +0000721 case AlphaPrimitive:
cristy3ed852e2009-09-05 21:47:34 +0000722 case ColorPrimitive:
cristy3ed852e2009-09-05 21:47:34 +0000723 case ImagePrimitive:
dirk34e1a212015-03-22 16:45:12 +0000724 case PointPrimitive:
725 case TextPrimitive:
cristy3ed852e2009-09-05 21:47:34 +0000726 return((PathInfo *) NULL);
727 default:
728 break;
729 }
730 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++) ;
731 path_info=(PathInfo *) AcquireQuantumMemory((size_t) (2UL*i+3UL),
732 sizeof(*path_info));
733 if (path_info == (PathInfo *) NULL)
734 return((PathInfo *) NULL);
735 coordinates=0;
736 n=0;
737 p.x=(-1.0);
738 p.y=(-1.0);
739 q.x=(-1.0);
740 q.y=(-1.0);
741 start=0;
742 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++)
743 {
744 code=LineToCode;
745 if (coordinates <= 0)
746 {
cristybb503372010-05-27 20:51:26 +0000747 coordinates=(ssize_t) primitive_info[i].coordinates;
cristy3ed852e2009-09-05 21:47:34 +0000748 p=primitive_info[i].point;
749 start=n;
750 code=MoveToCode;
751 }
752 coordinates--;
753 /*
754 Eliminate duplicate points.
755 */
cristy53aed702012-07-08 00:21:25 +0000756 if ((i == 0) || (fabs(q.x-primitive_info[i].point.x) >= MagickEpsilon) ||
757 (fabs(q.y-primitive_info[i].point.y) >= MagickEpsilon))
cristy3ed852e2009-09-05 21:47:34 +0000758 {
759 path_info[n].code=code;
760 path_info[n].point=primitive_info[i].point;
761 q=primitive_info[i].point;
762 n++;
763 }
764 if (coordinates > 0)
765 continue;
cristy53aed702012-07-08 00:21:25 +0000766 if ((fabs(p.x-primitive_info[i].point.x) < MagickEpsilon) &&
767 (fabs(p.y-primitive_info[i].point.y) < MagickEpsilon))
cristy3ed852e2009-09-05 21:47:34 +0000768 continue;
769 /*
770 Mark the p point as open if it does not match the q.
771 */
772 path_info[start].code=OpenCode;
773 path_info[n].code=GhostlineCode;
774 path_info[n].point=primitive_info[i].point;
775 n++;
776 path_info[n].code=LineToCode;
777 path_info[n].point=p;
778 n++;
779 }
780 path_info[n].code=EndCode;
781 path_info[n].point.x=0.0;
782 path_info[n].point.y=0.0;
783 if (IsEventLogging() != MagickFalse)
784 LogPathInfo(path_info);
785 return(path_info);
786}
787
788/*
789%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
790% %
791% %
792% %
793% D e s t r o y D r a w I n f o %
794% %
795% %
796% %
797%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
798%
799% DestroyDrawInfo() deallocates memory associated with an DrawInfo
800% structure.
801%
802% The format of the DestroyDrawInfo method is:
803%
804% DrawInfo *DestroyDrawInfo(DrawInfo *draw_info)
805%
806% A description of each parameter follows:
807%
808% o draw_info: the draw info.
809%
810*/
811MagickExport DrawInfo *DestroyDrawInfo(DrawInfo *draw_info)
812{
813 if (draw_info->debug != MagickFalse)
814 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
815 assert(draw_info != (DrawInfo *) NULL);
816 assert(draw_info->signature == MagickSignature);
817 if (draw_info->primitive != (char *) NULL)
818 draw_info->primitive=DestroyString(draw_info->primitive);
819 if (draw_info->text != (char *) NULL)
820 draw_info->text=DestroyString(draw_info->text);
821 if (draw_info->geometry != (char *) NULL)
822 draw_info->geometry=DestroyString(draw_info->geometry);
cristy3ed852e2009-09-05 21:47:34 +0000823 if (draw_info->fill_pattern != (Image *) NULL)
824 draw_info->fill_pattern=DestroyImage(draw_info->fill_pattern);
825 if (draw_info->stroke_pattern != (Image *) NULL)
826 draw_info->stroke_pattern=DestroyImage(draw_info->stroke_pattern);
827 if (draw_info->font != (char *) NULL)
828 draw_info->font=DestroyString(draw_info->font);
829 if (draw_info->metrics != (char *) NULL)
830 draw_info->metrics=DestroyString(draw_info->metrics);
831 if (draw_info->family != (char *) NULL)
832 draw_info->family=DestroyString(draw_info->family);
833 if (draw_info->encoding != (char *) NULL)
834 draw_info->encoding=DestroyString(draw_info->encoding);
835 if (draw_info->density != (char *) NULL)
836 draw_info->density=DestroyString(draw_info->density);
837 if (draw_info->server_name != (char *) NULL)
838 draw_info->server_name=(char *)
839 RelinquishMagickMemory(draw_info->server_name);
840 if (draw_info->dash_pattern != (double *) NULL)
841 draw_info->dash_pattern=(double *) RelinquishMagickMemory(
842 draw_info->dash_pattern);
843 if (draw_info->gradient.stops != (StopInfo *) NULL)
844 draw_info->gradient.stops=(StopInfo *) RelinquishMagickMemory(
845 draw_info->gradient.stops);
846 if (draw_info->clip_mask != (char *) NULL)
847 draw_info->clip_mask=DestroyString(draw_info->clip_mask);
848 draw_info->signature=(~MagickSignature);
849 draw_info=(DrawInfo *) RelinquishMagickMemory(draw_info);
850 return(draw_info);
851}
852
853/*
854%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
855% %
856% %
857% %
858+ D e s t r o y E d g e %
859% %
860% %
861% %
862%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
863%
864% DestroyEdge() destroys the specified polygon edge.
865%
866% The format of the DestroyEdge method is:
867%
cristybb503372010-05-27 20:51:26 +0000868% ssize_t DestroyEdge(PolygonInfo *polygon_info,const int edge)
cristy3ed852e2009-09-05 21:47:34 +0000869%
870% A description of each parameter follows:
871%
872% o polygon_info: Specifies a pointer to an PolygonInfo structure.
873%
874% o edge: the polygon edge number to destroy.
875%
876*/
cristybb503372010-05-27 20:51:26 +0000877static size_t DestroyEdge(PolygonInfo *polygon_info,
878 const size_t edge)
cristy3ed852e2009-09-05 21:47:34 +0000879{
880 assert(edge < polygon_info->number_edges);
881 polygon_info->edges[edge].points=(PointInfo *) RelinquishMagickMemory(
882 polygon_info->edges[edge].points);
883 polygon_info->number_edges--;
884 if (edge < polygon_info->number_edges)
885 (void) CopyMagickMemory(polygon_info->edges+edge,polygon_info->edges+edge+1,
886 (size_t) (polygon_info->number_edges-edge)*sizeof(*polygon_info->edges));
887 return(polygon_info->number_edges);
888}
889
890/*
891%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
892% %
893% %
894% %
895+ D e s t r o y P o l y g o n I n f o %
896% %
897% %
898% %
899%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
900%
901% DestroyPolygonInfo() destroys the PolygonInfo data structure.
902%
903% The format of the DestroyPolygonInfo method is:
904%
905% PolygonInfo *DestroyPolygonInfo(PolygonInfo *polygon_info)
906%
907% A description of each parameter follows:
908%
909% o polygon_info: Specifies a pointer to an PolygonInfo structure.
910%
911*/
912static PolygonInfo *DestroyPolygonInfo(PolygonInfo *polygon_info)
913{
cristybb503372010-05-27 20:51:26 +0000914 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000915 i;
916
cristybb503372010-05-27 20:51:26 +0000917 for (i=0; i < (ssize_t) polygon_info->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +0000918 polygon_info->edges[i].points=(PointInfo *)
919 RelinquishMagickMemory(polygon_info->edges[i].points);
920 polygon_info->edges=(EdgeInfo *) RelinquishMagickMemory(polygon_info->edges);
921 return((PolygonInfo *) RelinquishMagickMemory(polygon_info));
922}
923
924/*
925%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
926% %
927% %
928% %
929% D r a w A f f i n e I m a g e %
930% %
931% %
932% %
933%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
934%
935% DrawAffineImage() composites the source over the destination image as
936% dictated by the affine transform.
937%
938% The format of the DrawAffineImage method is:
939%
940% MagickBooleanType DrawAffineImage(Image *image,const Image *source,
cristy947cb4c2011-10-20 18:41:46 +0000941% const AffineMatrix *affine,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000942%
943% A description of each parameter follows:
944%
945% o image: the image.
946%
947% o source: the source image.
948%
949% o affine: the affine transform.
950%
cristy947cb4c2011-10-20 18:41:46 +0000951% o exception: return any errors or warnings in this structure.
952%
cristy3ed852e2009-09-05 21:47:34 +0000953*/
cristyefa9e8a2011-11-07 01:56:51 +0000954
cristy3ed852e2009-09-05 21:47:34 +0000955static SegmentInfo AffineEdge(const Image *image,const AffineMatrix *affine,
956 const double y,const SegmentInfo *edge)
957{
958 double
959 intercept,
960 z;
961
962 register double
963 x;
964
965 SegmentInfo
966 inverse_edge;
967
968 /*
969 Determine left and right edges.
970 */
971 inverse_edge.x1=edge->x1;
972 inverse_edge.y1=edge->y1;
973 inverse_edge.x2=edge->x2;
974 inverse_edge.y2=edge->y2;
975 z=affine->ry*y+affine->tx;
cristy53aed702012-07-08 00:21:25 +0000976 if (affine->sx >= MagickEpsilon)
cristy3ed852e2009-09-05 21:47:34 +0000977 {
978 intercept=(-z/affine->sx);
cristyefa9e8a2011-11-07 01:56:51 +0000979 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +0000980 if (x > inverse_edge.x1)
981 inverse_edge.x1=x;
982 intercept=(-z+(double) image->columns)/affine->sx;
cristyefa9e8a2011-11-07 01:56:51 +0000983 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +0000984 if (x < inverse_edge.x2)
985 inverse_edge.x2=x;
986 }
987 else
cristy53aed702012-07-08 00:21:25 +0000988 if (affine->sx < -MagickEpsilon)
cristy3ed852e2009-09-05 21:47:34 +0000989 {
990 intercept=(-z+(double) image->columns)/affine->sx;
cristyefa9e8a2011-11-07 01:56:51 +0000991 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +0000992 if (x > inverse_edge.x1)
993 inverse_edge.x1=x;
994 intercept=(-z/affine->sx);
cristyefa9e8a2011-11-07 01:56:51 +0000995 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +0000996 if (x < inverse_edge.x2)
997 inverse_edge.x2=x;
998 }
999 else
cristybb503372010-05-27 20:51:26 +00001000 if ((z < 0.0) || ((size_t) floor(z+0.5) >= image->columns))
cristy3ed852e2009-09-05 21:47:34 +00001001 {
1002 inverse_edge.x2=edge->x1;
1003 return(inverse_edge);
1004 }
1005 /*
1006 Determine top and bottom edges.
1007 */
1008 z=affine->sy*y+affine->ty;
cristy53aed702012-07-08 00:21:25 +00001009 if (affine->rx >= MagickEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00001010 {
1011 intercept=(-z/affine->rx);
cristyefa9e8a2011-11-07 01:56:51 +00001012 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001013 if (x > inverse_edge.x1)
1014 inverse_edge.x1=x;
1015 intercept=(-z+(double) image->rows)/affine->rx;
cristyefa9e8a2011-11-07 01:56:51 +00001016 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001017 if (x < inverse_edge.x2)
1018 inverse_edge.x2=x;
1019 }
1020 else
cristy53aed702012-07-08 00:21:25 +00001021 if (affine->rx < -MagickEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00001022 {
1023 intercept=(-z+(double) image->rows)/affine->rx;
cristyefa9e8a2011-11-07 01:56:51 +00001024 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001025 if (x > inverse_edge.x1)
1026 inverse_edge.x1=x;
1027 intercept=(-z/affine->rx);
cristyefa9e8a2011-11-07 01:56:51 +00001028 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001029 if (x < inverse_edge.x2)
1030 inverse_edge.x2=x;
1031 }
1032 else
cristybb503372010-05-27 20:51:26 +00001033 if ((z < 0.0) || ((size_t) floor(z+0.5) >= image->rows))
cristy3ed852e2009-09-05 21:47:34 +00001034 {
1035 inverse_edge.x2=edge->x2;
1036 return(inverse_edge);
1037 }
1038 return(inverse_edge);
1039}
1040
1041static AffineMatrix InverseAffineMatrix(const AffineMatrix *affine)
1042{
1043 AffineMatrix
1044 inverse_affine;
1045
1046 double
1047 determinant;
1048
cristy3e3ec3a2012-11-03 23:11:06 +00001049 determinant=PerceptibleReciprocal(affine->sx*affine->sy-affine->rx*
cristy35f15302012-06-07 14:59:02 +00001050 affine->ry);
cristy3ed852e2009-09-05 21:47:34 +00001051 inverse_affine.sx=determinant*affine->sy;
1052 inverse_affine.rx=determinant*(-affine->rx);
1053 inverse_affine.ry=determinant*(-affine->ry);
1054 inverse_affine.sy=determinant*affine->sx;
1055 inverse_affine.tx=(-affine->tx)*inverse_affine.sx-affine->ty*
1056 inverse_affine.ry;
1057 inverse_affine.ty=(-affine->tx)*inverse_affine.rx-affine->ty*
1058 inverse_affine.sy;
1059 return(inverse_affine);
1060}
1061
cristy3ed852e2009-09-05 21:47:34 +00001062MagickExport MagickBooleanType DrawAffineImage(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00001063 const Image *source,const AffineMatrix *affine,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001064{
1065 AffineMatrix
1066 inverse_affine;
1067
cristyfa112112010-01-04 17:48:07 +00001068 CacheView
1069 *image_view,
1070 *source_view;
1071
cristy3ed852e2009-09-05 21:47:34 +00001072 MagickBooleanType
1073 status;
1074
cristy4c08aed2011-07-01 19:47:50 +00001075 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001076 zero;
1077
1078 PointInfo
1079 extent[4],
1080 min,
1081 max,
1082 point;
1083
cristybb503372010-05-27 20:51:26 +00001084 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001085 i;
1086
cristy3ed852e2009-09-05 21:47:34 +00001087 SegmentInfo
1088 edge;
1089
cristy826a5472010-08-31 23:21:38 +00001090 ssize_t
cristy564a5692012-01-20 23:56:26 +00001091 start,
1092 stop,
cristy826a5472010-08-31 23:21:38 +00001093 y;
1094
cristy3ed852e2009-09-05 21:47:34 +00001095 /*
1096 Determine bounding box.
1097 */
1098 assert(image != (Image *) NULL);
1099 assert(image->signature == MagickSignature);
1100 if (image->debug != MagickFalse)
1101 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1102 assert(source != (const Image *) NULL);
1103 assert(source->signature == MagickSignature);
1104 assert(affine != (AffineMatrix *) NULL);
1105 extent[0].x=0.0;
1106 extent[0].y=0.0;
1107 extent[1].x=(double) source->columns-1.0;
1108 extent[1].y=0.0;
1109 extent[2].x=(double) source->columns-1.0;
1110 extent[2].y=(double) source->rows-1.0;
1111 extent[3].x=0.0;
1112 extent[3].y=(double) source->rows-1.0;
1113 for (i=0; i < 4; i++)
1114 {
1115 point=extent[i];
1116 extent[i].x=point.x*affine->sx+point.y*affine->ry+affine->tx;
1117 extent[i].y=point.x*affine->rx+point.y*affine->sy+affine->ty;
1118 }
1119 min=extent[0];
1120 max=extent[0];
1121 for (i=1; i < 4; i++)
1122 {
1123 if (min.x > extent[i].x)
1124 min.x=extent[i].x;
1125 if (min.y > extent[i].y)
1126 min.y=extent[i].y;
1127 if (max.x < extent[i].x)
1128 max.x=extent[i].x;
1129 if (max.y < extent[i].y)
1130 max.y=extent[i].y;
1131 }
1132 /*
1133 Affine transform image.
1134 */
cristy574cc262011-08-05 01:23:58 +00001135 if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001136 return(MagickFalse);
1137 status=MagickTrue;
1138 edge.x1=MagickMax(min.x,0.0);
1139 edge.y1=MagickMax(min.y,0.0);
1140 edge.x2=MagickMin(max.x,(double) image->columns-1.0);
1141 edge.y2=MagickMin(max.y,(double) image->rows-1.0);
1142 inverse_affine=InverseAffineMatrix(affine);
cristy4c08aed2011-07-01 19:47:50 +00001143 GetPixelInfo(image,&zero);
cristy564a5692012-01-20 23:56:26 +00001144 start=(ssize_t) ceil(edge.y1-0.5);
cristy8071c472012-09-24 12:41:06 +00001145 stop=(ssize_t) floor(edge.y2+0.5);
cristy46ff2672012-12-14 15:32:26 +00001146 source_view=AcquireVirtualCacheView(source,exception);
1147 image_view=AcquireAuthenticCacheView(image,exception);
cristyb5d5f722009-11-04 03:03:49 +00001148#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy9a5a52f2012-10-09 14:40:31 +00001149 #pragma omp parallel for schedule(static,4) shared(status) \
cristycb7dfcc2013-01-06 18:34:59 +00001150 magick_threads(source,image,1,1)
cristy3ed852e2009-09-05 21:47:34 +00001151#endif
cristy564a5692012-01-20 23:56:26 +00001152 for (y=start; y <= stop; y++)
cristy3ed852e2009-09-05 21:47:34 +00001153 {
cristy4c08aed2011-07-01 19:47:50 +00001154 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001155 composite,
1156 pixel;
1157
1158 PointInfo
1159 point;
1160
cristybb503372010-05-27 20:51:26 +00001161 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001162 x;
1163
cristy4c08aed2011-07-01 19:47:50 +00001164 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00001165 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001166
1167 SegmentInfo
1168 inverse_edge;
1169
cristy826a5472010-08-31 23:21:38 +00001170 ssize_t
1171 x_offset;
1172
cristy3ed852e2009-09-05 21:47:34 +00001173 inverse_edge=AffineEdge(source,&inverse_affine,(double) y,&edge);
1174 if (inverse_edge.x2 < inverse_edge.x1)
1175 continue;
cristy6ebe97c2010-07-03 01:17:28 +00001176 q=GetCacheViewAuthenticPixels(image_view,(ssize_t) ceil(inverse_edge.x1-
cristy592aefd2013-02-03 15:41:39 +00001177 0.5),y,(size_t) (floor(inverse_edge.x2+0.5)-ceil(inverse_edge.x1-0.5)+1),
1178 1,exception);
cristy4c08aed2011-07-01 19:47:50 +00001179 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001180 continue;
cristy3ed852e2009-09-05 21:47:34 +00001181 pixel=zero;
1182 composite=zero;
1183 x_offset=0;
cristy8071c472012-09-24 12:41:06 +00001184 for (x=(ssize_t) ceil(inverse_edge.x1-0.5); x <= (ssize_t) floor(inverse_edge.x2+0.5); x++)
cristy3ed852e2009-09-05 21:47:34 +00001185 {
1186 point.x=(double) x*inverse_affine.sx+y*inverse_affine.ry+
1187 inverse_affine.tx;
1188 point.y=(double) x*inverse_affine.rx+y*inverse_affine.sy+
1189 inverse_affine.ty;
cristy4c08aed2011-07-01 19:47:50 +00001190 (void) InterpolatePixelInfo(source,source_view,UndefinedInterpolatePixel,
1191 point.x,point.y,&pixel,exception);
cristy803640d2011-11-17 02:11:32 +00001192 GetPixelInfoPixel(image,q,&composite);
cristy4c08aed2011-07-01 19:47:50 +00001193 CompositePixelInfoOver(&pixel,pixel.alpha,&composite,composite.alpha,
1194 &composite);
cristy11a06d32015-01-04 12:03:27 +00001195 SetPixelViaPixelInfo(image,&composite,q);
cristy3ed852e2009-09-05 21:47:34 +00001196 x_offset++;
cristyed231572011-07-14 02:18:59 +00001197 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001198 }
1199 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
1200 status=MagickFalse;
1201 }
cristy3ed852e2009-09-05 21:47:34 +00001202 source_view=DestroyCacheView(source_view);
1203 image_view=DestroyCacheView(image_view);
1204 return(status);
1205}
1206
1207/*
1208%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1209% %
1210% %
1211% %
1212+ D r a w B o u n d i n g R e c t a n g l e s %
1213% %
1214% %
1215% %
1216%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1217%
1218% DrawBoundingRectangles() draws the bounding rectangles on the image. This
1219% is only useful for developers debugging the rendering algorithm.
1220%
1221% The format of the DrawBoundingRectangles method is:
1222%
1223% void DrawBoundingRectangles(Image *image,const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00001224% PolygonInfo *polygon_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001225%
1226% A description of each parameter follows:
1227%
1228% o image: the image.
1229%
1230% o draw_info: the draw info.
1231%
1232% o polygon_info: Specifies a pointer to a PolygonInfo structure.
1233%
cristy947cb4c2011-10-20 18:41:46 +00001234% o exception: return any errors or warnings in this structure.
1235%
cristy3ed852e2009-09-05 21:47:34 +00001236*/
1237static void DrawBoundingRectangles(Image *image,const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00001238 const PolygonInfo *polygon_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001239{
1240 DrawInfo
1241 *clone_info;
1242
cristya19f1d72012-08-07 18:24:38 +00001243 double
cristy3ed852e2009-09-05 21:47:34 +00001244 mid;
1245
1246 PointInfo
1247 end,
1248 resolution,
1249 start;
1250
1251 PrimitiveInfo
1252 primitive_info[6];
1253
cristybb503372010-05-27 20:51:26 +00001254 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001255 i;
1256
1257 SegmentInfo
1258 bounds;
1259
cristy826a5472010-08-31 23:21:38 +00001260 ssize_t
1261 coordinates;
1262
cristy3ed852e2009-09-05 21:47:34 +00001263 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
cristyfad60c92012-01-19 18:32:39 +00001264 (void) QueryColorCompliance("#0000",AllCompliance,&clone_info->fill,
cristy947cb4c2011-10-20 18:41:46 +00001265 exception);
cristy3ed852e2009-09-05 21:47:34 +00001266 resolution.x=DefaultResolution;
1267 resolution.y=DefaultResolution;
1268 if (clone_info->density != (char *) NULL)
1269 {
1270 GeometryInfo
1271 geometry_info;
1272
1273 MagickStatusType
1274 flags;
1275
1276 flags=ParseGeometry(clone_info->density,&geometry_info);
1277 resolution.x=geometry_info.rho;
1278 resolution.y=geometry_info.sigma;
1279 if ((flags & SigmaValue) == MagickFalse)
1280 resolution.y=resolution.x;
1281 }
1282 mid=(resolution.x/72.0)*ExpandAffine(&clone_info->affine)*
1283 clone_info->stroke_width/2.0;
1284 bounds.x1=0.0;
1285 bounds.y1=0.0;
1286 bounds.x2=0.0;
1287 bounds.y2=0.0;
1288 if (polygon_info != (PolygonInfo *) NULL)
1289 {
1290 bounds=polygon_info->edges[0].bounds;
cristybb503372010-05-27 20:51:26 +00001291 for (i=1; i < (ssize_t) polygon_info->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +00001292 {
1293 if (polygon_info->edges[i].bounds.x1 < (double) bounds.x1)
1294 bounds.x1=polygon_info->edges[i].bounds.x1;
1295 if (polygon_info->edges[i].bounds.y1 < (double) bounds.y1)
1296 bounds.y1=polygon_info->edges[i].bounds.y1;
1297 if (polygon_info->edges[i].bounds.x2 > (double) bounds.x2)
1298 bounds.x2=polygon_info->edges[i].bounds.x2;
1299 if (polygon_info->edges[i].bounds.y2 > (double) bounds.y2)
1300 bounds.y2=polygon_info->edges[i].bounds.y2;
1301 }
1302 bounds.x1-=mid;
1303 bounds.x1=bounds.x1 < 0.0 ? 0.0 : bounds.x1 >= (double)
cristy6c5494a2012-09-22 00:30:37 +00001304 image->columns ? (double) image->columns-1 : bounds.x1;
cristy3ed852e2009-09-05 21:47:34 +00001305 bounds.y1-=mid;
1306 bounds.y1=bounds.y1 < 0.0 ? 0.0 : bounds.y1 >= (double)
cristy6c5494a2012-09-22 00:30:37 +00001307 image->rows ? (double) image->rows-1 : bounds.y1;
cristy3ed852e2009-09-05 21:47:34 +00001308 bounds.x2+=mid;
1309 bounds.x2=bounds.x2 < 0.0 ? 0.0 : bounds.x2 >= (double)
cristy6c5494a2012-09-22 00:30:37 +00001310 image->columns ? (double) image->columns-1 : bounds.x2;
cristy3ed852e2009-09-05 21:47:34 +00001311 bounds.y2+=mid;
1312 bounds.y2=bounds.y2 < 0.0 ? 0.0 : bounds.y2 >= (double)
cristy6c5494a2012-09-22 00:30:37 +00001313 image->rows ? (double) image->rows-1 : bounds.y2;
cristybb503372010-05-27 20:51:26 +00001314 for (i=0; i < (ssize_t) polygon_info->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +00001315 {
1316 if (polygon_info->edges[i].direction != 0)
cristy9950d572011-10-01 18:22:35 +00001317 (void) QueryColorCompliance("red",AllCompliance,&clone_info->stroke,
cristy947cb4c2011-10-20 18:41:46 +00001318 exception);
cristy3ed852e2009-09-05 21:47:34 +00001319 else
cristy9950d572011-10-01 18:22:35 +00001320 (void) QueryColorCompliance("green",AllCompliance,&clone_info->stroke,
cristy947cb4c2011-10-20 18:41:46 +00001321 exception);
cristy3ed852e2009-09-05 21:47:34 +00001322 start.x=(double) (polygon_info->edges[i].bounds.x1-mid);
1323 start.y=(double) (polygon_info->edges[i].bounds.y1-mid);
1324 end.x=(double) (polygon_info->edges[i].bounds.x2+mid);
1325 end.y=(double) (polygon_info->edges[i].bounds.y2+mid);
1326 primitive_info[0].primitive=RectanglePrimitive;
1327 TraceRectangle(primitive_info,start,end);
1328 primitive_info[0].method=ReplaceMethod;
cristybb503372010-05-27 20:51:26 +00001329 coordinates=(ssize_t) primitive_info[0].coordinates;
cristy3ed852e2009-09-05 21:47:34 +00001330 primitive_info[coordinates].primitive=UndefinedPrimitive;
cristy947cb4c2011-10-20 18:41:46 +00001331 (void) DrawPrimitive(image,clone_info,primitive_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00001332 }
1333 }
cristy9950d572011-10-01 18:22:35 +00001334 (void) QueryColorCompliance("blue",AllCompliance,&clone_info->stroke,
cristy947cb4c2011-10-20 18:41:46 +00001335 exception);
cristy3ed852e2009-09-05 21:47:34 +00001336 start.x=(double) (bounds.x1-mid);
1337 start.y=(double) (bounds.y1-mid);
1338 end.x=(double) (bounds.x2+mid);
1339 end.y=(double) (bounds.y2+mid);
1340 primitive_info[0].primitive=RectanglePrimitive;
1341 TraceRectangle(primitive_info,start,end);
1342 primitive_info[0].method=ReplaceMethod;
cristybb503372010-05-27 20:51:26 +00001343 coordinates=(ssize_t) primitive_info[0].coordinates;
cristy3ed852e2009-09-05 21:47:34 +00001344 primitive_info[coordinates].primitive=UndefinedPrimitive;
cristy947cb4c2011-10-20 18:41:46 +00001345 (void) DrawPrimitive(image,clone_info,primitive_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00001346 clone_info=DestroyDrawInfo(clone_info);
1347}
1348
1349/*
1350%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1351% %
1352% %
1353% %
1354% D r a w C l i p P a t h %
1355% %
1356% %
1357% %
1358%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1359%
1360% DrawClipPath() draws the clip path on the image mask.
1361%
1362% The format of the DrawClipPath method is:
1363%
1364% MagickBooleanType DrawClipPath(Image *image,const DrawInfo *draw_info,
cristy018f07f2011-09-04 21:15:19 +00001365% const char *name,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001366%
1367% A description of each parameter follows:
1368%
1369% o image: the image.
1370%
1371% o draw_info: the draw info.
1372%
1373% o name: the name of the clip path.
1374%
cristy018f07f2011-09-04 21:15:19 +00001375% o exception: return any errors or warnings in this structure.
1376%
cristy3ed852e2009-09-05 21:47:34 +00001377*/
1378MagickExport MagickBooleanType DrawClipPath(Image *image,
cristy018f07f2011-09-04 21:15:19 +00001379 const DrawInfo *draw_info,const char *name,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001380{
1381 char
cristy10a6c612012-01-29 21:41:05 +00001382 filename[MaxTextExtent];
1383
1384 Image
1385 *clip_mask;
cristy3ed852e2009-09-05 21:47:34 +00001386
1387 const char
1388 *value;
1389
1390 DrawInfo
1391 *clone_info;
1392
1393 MagickStatusType
1394 status;
1395
1396 assert(image != (Image *) NULL);
1397 assert(image->signature == MagickSignature);
1398 if (image->debug != MagickFalse)
1399 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1400 assert(draw_info != (const DrawInfo *) NULL);
cristy10a6c612012-01-29 21:41:05 +00001401 (void) FormatLocaleString(filename,MaxTextExtent,"%s",name);
1402 value=GetImageArtifact(image,filename);
cristy3ed852e2009-09-05 21:47:34 +00001403 if (value == (const char *) NULL)
1404 return(MagickFalse);
cristy10a6c612012-01-29 21:41:05 +00001405 clip_mask=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
1406 if (clip_mask == (Image *) NULL)
1407 return(MagickFalse);
cristyfad60c92012-01-19 18:32:39 +00001408 (void) QueryColorCompliance("#0000",AllCompliance,
cristy10a6c612012-01-29 21:41:05 +00001409 &clip_mask->background_color,exception);
1410 clip_mask->background_color.alpha=(Quantum) TransparentAlpha;
1411 (void) SetImageBackgroundColor(clip_mask,exception);
cristy3ed852e2009-09-05 21:47:34 +00001412 if (image->debug != MagickFalse)
1413 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"\nbegin clip-path %s",
1414 draw_info->clip_mask);
1415 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
1416 (void) CloneString(&clone_info->primitive,value);
cristy9950d572011-10-01 18:22:35 +00001417 (void) QueryColorCompliance("#ffffff",AllCompliance,&clone_info->fill,
cristyea1a8aa2011-10-20 13:24:06 +00001418 exception);
cristy3ed852e2009-09-05 21:47:34 +00001419 clone_info->clip_mask=(char *) NULL;
cristy0c901882012-01-30 15:58:59 +00001420 status=NegateImage(clip_mask,MagickFalse,exception);
cristy10a6c612012-01-29 21:41:05 +00001421 (void) SetImageMask(image,clip_mask,exception);
1422 clip_mask=DestroyImage(clip_mask);
cristy8a77f142013-08-14 12:44:38 +00001423 status&=DrawImage(image,clone_info,exception);
cristy8e508182012-09-22 00:21:17 +00001424 clone_info=DestroyDrawInfo(clone_info);
cristy3ed852e2009-09-05 21:47:34 +00001425 if (image->debug != MagickFalse)
1426 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"end clip-path");
1427 return(status != 0 ? MagickTrue : MagickFalse);
1428}
1429
1430/*
1431%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1432% %
1433% %
1434% %
1435+ D r a w D a s h P o l y g o n %
1436% %
1437% %
1438% %
1439%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1440%
1441% DrawDashPolygon() draws a dashed polygon (line, rectangle, ellipse) on the
1442% image while respecting the dash offset and dash pattern attributes.
1443%
1444% The format of the DrawDashPolygon method is:
1445%
1446% MagickBooleanType DrawDashPolygon(const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00001447% const PrimitiveInfo *primitive_info,Image *image,
1448% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001449%
1450% A description of each parameter follows:
1451%
1452% o draw_info: the draw info.
1453%
1454% o primitive_info: Specifies a pointer to a PrimitiveInfo structure.
1455%
1456% o image: the image.
1457%
cristy947cb4c2011-10-20 18:41:46 +00001458% o exception: return any errors or warnings in this structure.
cristy3ed852e2009-09-05 21:47:34 +00001459%
1460*/
1461static MagickBooleanType DrawDashPolygon(const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00001462 const PrimitiveInfo *primitive_info,Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001463{
1464 DrawInfo
1465 *clone_info;
1466
cristya19f1d72012-08-07 18:24:38 +00001467 double
cristy3ed852e2009-09-05 21:47:34 +00001468 length,
1469 maximum_length,
1470 offset,
1471 scale,
1472 total_length;
1473
1474 MagickStatusType
1475 status;
1476
1477 PrimitiveInfo
1478 *dash_polygon;
1479
cristybb503372010-05-27 20:51:26 +00001480 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001481 i;
1482
cristya19f1d72012-08-07 18:24:38 +00001483 register double
cristy3ed852e2009-09-05 21:47:34 +00001484 dx,
1485 dy;
1486
cristybb503372010-05-27 20:51:26 +00001487 size_t
cristy3ed852e2009-09-05 21:47:34 +00001488 number_vertices;
1489
cristy826a5472010-08-31 23:21:38 +00001490 ssize_t
1491 j,
1492 n;
1493
cristy3ed852e2009-09-05 21:47:34 +00001494 assert(draw_info != (const DrawInfo *) NULL);
1495 if (image->debug != MagickFalse)
1496 (void) LogMagickEvent(DrawEvent,GetMagickModule()," begin draw-dash");
1497 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
1498 clone_info->miterlimit=0;
1499 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++) ;
cristybb503372010-05-27 20:51:26 +00001500 number_vertices=(size_t) i;
cristy3ed852e2009-09-05 21:47:34 +00001501 dash_polygon=(PrimitiveInfo *) AcquireQuantumMemory((size_t)
1502 (2UL*number_vertices+1UL),sizeof(*dash_polygon));
1503 if (dash_polygon == (PrimitiveInfo *) NULL)
1504 return(MagickFalse);
1505 dash_polygon[0]=primitive_info[0];
1506 scale=ExpandAffine(&draw_info->affine);
1507 length=scale*(draw_info->dash_pattern[0]-0.5);
1508 offset=draw_info->dash_offset != 0.0 ? scale*draw_info->dash_offset : 0.0;
1509 j=1;
1510 for (n=0; offset > 0.0; j=0)
1511 {
1512 if (draw_info->dash_pattern[n] <= 0.0)
1513 break;
1514 length=scale*(draw_info->dash_pattern[n]+(n == 0 ? -0.5 : 0.5));
1515 if (offset > length)
1516 {
1517 offset-=length;
1518 n++;
cristy4d0ca342014-05-01 00:42:09 +00001519 length=scale*(draw_info->dash_pattern[n]+0.5);
cristy3ed852e2009-09-05 21:47:34 +00001520 continue;
1521 }
1522 if (offset < length)
1523 {
1524 length-=offset;
1525 offset=0.0;
1526 break;
1527 }
1528 offset=0.0;
1529 n++;
1530 }
1531 status=MagickTrue;
1532 maximum_length=0.0;
1533 total_length=0.0;
cristybb503372010-05-27 20:51:26 +00001534 for (i=1; i < (ssize_t) number_vertices; i++)
cristy3ed852e2009-09-05 21:47:34 +00001535 {
1536 dx=primitive_info[i].point.x-primitive_info[i-1].point.x;
1537 dy=primitive_info[i].point.y-primitive_info[i-1].point.y;
1538 maximum_length=hypot((double) dx,dy);
1539 if (length == 0.0)
1540 {
1541 n++;
1542 if (draw_info->dash_pattern[n] == 0.0)
1543 n=0;
1544 length=scale*(draw_info->dash_pattern[n]+(n == 0 ? -0.5 : 0.5));
1545 }
cristycbda6112012-05-27 20:57:16 +00001546 for (total_length=0.0; (total_length+length) <= maximum_length; )
cristy3ed852e2009-09-05 21:47:34 +00001547 {
1548 total_length+=length;
1549 if ((n & 0x01) != 0)
1550 {
1551 dash_polygon[0]=primitive_info[0];
1552 dash_polygon[0].point.x=(double) (primitive_info[i-1].point.x+dx*
1553 total_length/maximum_length);
1554 dash_polygon[0].point.y=(double) (primitive_info[i-1].point.y+dy*
1555 total_length/maximum_length);
1556 j=1;
1557 }
1558 else
1559 {
cristybb503372010-05-27 20:51:26 +00001560 if ((j+1) > (ssize_t) (2*number_vertices))
cristy3ed852e2009-09-05 21:47:34 +00001561 break;
1562 dash_polygon[j]=primitive_info[i-1];
1563 dash_polygon[j].point.x=(double) (primitive_info[i-1].point.x+dx*
1564 total_length/maximum_length);
1565 dash_polygon[j].point.y=(double) (primitive_info[i-1].point.y+dy*
1566 total_length/maximum_length);
1567 dash_polygon[j].coordinates=1;
1568 j++;
cristybb503372010-05-27 20:51:26 +00001569 dash_polygon[0].coordinates=(size_t) j;
cristy3ed852e2009-09-05 21:47:34 +00001570 dash_polygon[j].primitive=UndefinedPrimitive;
cristy8a77f142013-08-14 12:44:38 +00001571 status&=DrawStrokePolygon(image,clone_info,dash_polygon,exception);
cristy3ed852e2009-09-05 21:47:34 +00001572 }
1573 n++;
1574 if (draw_info->dash_pattern[n] == 0.0)
1575 n=0;
1576 length=scale*(draw_info->dash_pattern[n]+(n == 0 ? -0.5 : 0.5));
1577 }
1578 length-=(maximum_length-total_length);
1579 if ((n & 0x01) != 0)
1580 continue;
1581 dash_polygon[j]=primitive_info[i];
1582 dash_polygon[j].coordinates=1;
1583 j++;
1584 }
cristycbda6112012-05-27 20:57:16 +00001585 if ((total_length <= maximum_length) && ((n & 0x01) == 0) && (j > 1))
cristy3ed852e2009-09-05 21:47:34 +00001586 {
1587 dash_polygon[j]=primitive_info[i-1];
cristy53aed702012-07-08 00:21:25 +00001588 dash_polygon[j].point.x+=MagickEpsilon;
1589 dash_polygon[j].point.y+=MagickEpsilon;
cristy3ed852e2009-09-05 21:47:34 +00001590 dash_polygon[j].coordinates=1;
1591 j++;
cristybb503372010-05-27 20:51:26 +00001592 dash_polygon[0].coordinates=(size_t) j;
cristy3ed852e2009-09-05 21:47:34 +00001593 dash_polygon[j].primitive=UndefinedPrimitive;
cristy8a77f142013-08-14 12:44:38 +00001594 status&=DrawStrokePolygon(image,clone_info,dash_polygon,exception);
cristy3ed852e2009-09-05 21:47:34 +00001595 }
1596 dash_polygon=(PrimitiveInfo *) RelinquishMagickMemory(dash_polygon);
1597 clone_info=DestroyDrawInfo(clone_info);
1598 if (image->debug != MagickFalse)
1599 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end draw-dash");
1600 return(status != 0 ? MagickTrue : MagickFalse);
1601}
1602
1603/*
1604%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1605% %
1606% %
1607% %
1608% D r a w I m a g e %
1609% %
1610% %
1611% %
1612%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1613%
1614% DrawImage() draws a graphic primitive on your image. The primitive
1615% may be represented as a string or filename. Precede the filename with an
1616% "at" sign (@) and the contents of the file are drawn on the image. You
1617% can affect how text is drawn by setting one or more members of the draw
1618% info structure.
1619%
1620% The format of the DrawImage method is:
1621%
cristy018f07f2011-09-04 21:15:19 +00001622% MagickBooleanType DrawImage(Image *image,const DrawInfo *draw_info,
1623% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001624%
1625% A description of each parameter follows:
1626%
1627% o image: the image.
1628%
1629% o draw_info: the draw info.
1630%
cristy018f07f2011-09-04 21:15:19 +00001631% o exception: return any errors or warnings in this structure.
1632%
cristy3ed852e2009-09-05 21:47:34 +00001633*/
1634
1635static inline MagickBooleanType IsPoint(const char *point)
1636{
1637 char
1638 *p;
1639
1640 double
1641 value;
1642
cristydbdd0e32011-11-04 23:29:40 +00001643 value=StringToDouble(point,&p);
cristy3ed852e2009-09-05 21:47:34 +00001644 return((value == 0.0) && (p == point) ? MagickFalse : MagickTrue);
1645}
1646
1647static inline void TracePoint(PrimitiveInfo *primitive_info,
1648 const PointInfo point)
1649{
1650 primitive_info->coordinates=1;
1651 primitive_info->point=point;
1652}
1653
cristy018f07f2011-09-04 21:15:19 +00001654MagickExport MagickBooleanType DrawImage(Image *image,const DrawInfo *draw_info,
1655 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001656{
1657#define RenderImageTag "Render/Image"
1658
1659 AffineMatrix
1660 affine,
1661 current;
1662
1663 char
1664 key[2*MaxTextExtent],
1665 keyword[MaxTextExtent],
1666 geometry[MaxTextExtent],
1667 name[MaxTextExtent],
1668 pattern[MaxTextExtent],
1669 *primitive,
1670 *token;
1671
1672 const char
1673 *q;
1674
1675 DrawInfo
1676 **graphic_context;
1677
cristy3ed852e2009-09-05 21:47:34 +00001678 MagickBooleanType
cristy8a77f142013-08-14 12:44:38 +00001679 proceed;
1680
1681 MagickStatusType
cristy3ed852e2009-09-05 21:47:34 +00001682 status;
1683
cristya19f1d72012-08-07 18:24:38 +00001684 double
cristy3ed852e2009-09-05 21:47:34 +00001685 angle,
1686 factor,
1687 primitive_extent;
1688
1689 PointInfo
1690 point;
1691
cristy101ab702011-10-13 13:06:32 +00001692 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001693 start_color;
1694
1695 PrimitiveInfo
1696 *primitive_info;
1697
1698 PrimitiveType
1699 primitive_type;
1700
1701 register const char
1702 *p;
1703
cristybb503372010-05-27 20:51:26 +00001704 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001705 i,
1706 x;
1707
1708 SegmentInfo
1709 bounds;
1710
1711 size_t
cristy826a5472010-08-31 23:21:38 +00001712 length,
cristy3ed852e2009-09-05 21:47:34 +00001713 number_points;
1714
cristy826a5472010-08-31 23:21:38 +00001715 ssize_t
1716 j,
1717 k,
1718 n;
1719
cristy3ed852e2009-09-05 21:47:34 +00001720 /*
1721 Ensure the annotation info is valid.
1722 */
1723 assert(image != (Image *) NULL);
1724 assert(image->signature == MagickSignature);
1725 if (image->debug != MagickFalse)
1726 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1727 assert(draw_info != (DrawInfo *) NULL);
1728 assert(draw_info->signature == MagickSignature);
1729 if (image->debug != MagickFalse)
1730 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
1731 if ((draw_info->primitive == (char *) NULL) ||
1732 (*draw_info->primitive == '\0'))
1733 return(MagickFalse);
1734 if (image->debug != MagickFalse)
1735 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"begin draw-image");
1736 if (*draw_info->primitive != '@')
1737 primitive=AcquireString(draw_info->primitive);
1738 else
cristy3a5987c2013-11-07 14:18:46 +00001739 primitive=FileToString(draw_info->primitive+1,~0UL,exception);
cristy3ed852e2009-09-05 21:47:34 +00001740 if (primitive == (char *) NULL)
1741 return(MagickFalse);
cristya19f1d72012-08-07 18:24:38 +00001742 primitive_extent=(double) strlen(primitive);
cristy3ed852e2009-09-05 21:47:34 +00001743 (void) SetImageArtifact(image,"MVG",primitive);
1744 n=0;
1745 /*
1746 Allocate primitive info memory.
1747 */
cristy73bd4a52010-10-05 11:24:23 +00001748 graphic_context=(DrawInfo **) AcquireMagickMemory(
cristyed110712010-03-23 01:16:38 +00001749 sizeof(*graphic_context));
cristy3ed852e2009-09-05 21:47:34 +00001750 if (graphic_context == (DrawInfo **) NULL)
1751 {
1752 primitive=DestroyString(primitive);
1753 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
1754 image->filename);
1755 }
cristy430522c2012-09-03 00:07:16 +00001756 number_points=6553;
cristy3ed852e2009-09-05 21:47:34 +00001757 primitive_info=(PrimitiveInfo *) AcquireQuantumMemory((size_t) number_points,
1758 sizeof(*primitive_info));
1759 if (primitive_info == (PrimitiveInfo *) NULL)
1760 {
1761 primitive=DestroyString(primitive);
1762 for ( ; n >= 0; n--)
1763 graphic_context[n]=DestroyDrawInfo(graphic_context[n]);
1764 graphic_context=(DrawInfo **) RelinquishMagickMemory(graphic_context);
1765 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
1766 image->filename);
1767 }
1768 graphic_context[n]=CloneDrawInfo((ImageInfo *) NULL,draw_info);
1769 graphic_context[n]->viewbox=image->page;
1770 if ((image->page.width == 0) || (image->page.height == 0))
1771 {
1772 graphic_context[n]->viewbox.width=image->columns;
1773 graphic_context[n]->viewbox.height=image->rows;
1774 }
1775 token=AcquireString(primitive);
cristy9950d572011-10-01 18:22:35 +00001776 (void) QueryColorCompliance("#000000",AllCompliance,&start_color,
cristy947cb4c2011-10-20 18:41:46 +00001777 exception);
1778 if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001779 return(MagickFalse);
1780 status=MagickTrue;
1781 for (q=primitive; *q != '\0'; )
1782 {
1783 /*
1784 Interpret graphic primitive.
1785 */
1786 GetMagickToken(q,&q,keyword);
1787 if (*keyword == '\0')
1788 break;
1789 if (*keyword == '#')
1790 {
1791 /*
1792 Comment.
1793 */
1794 while ((*q != '\n') && (*q != '\0'))
1795 q++;
1796 continue;
1797 }
1798 p=q-strlen(keyword)-1;
1799 primitive_type=UndefinedPrimitive;
1800 current=graphic_context[n]->affine;
1801 GetAffineMatrix(&affine);
1802 switch (*keyword)
1803 {
1804 case ';':
1805 break;
1806 case 'a':
1807 case 'A':
1808 {
1809 if (LocaleCompare("affine",keyword) == 0)
1810 {
1811 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00001812 affine.sx=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001813 GetMagickToken(q,&q,token);
1814 if (*token == ',')
1815 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00001816 affine.rx=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001817 GetMagickToken(q,&q,token);
1818 if (*token == ',')
1819 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00001820 affine.ry=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001821 GetMagickToken(q,&q,token);
1822 if (*token == ',')
1823 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00001824 affine.sy=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001825 GetMagickToken(q,&q,token);
1826 if (*token == ',')
1827 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00001828 affine.tx=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001829 GetMagickToken(q,&q,token);
1830 if (*token == ',')
1831 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00001832 affine.ty=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001833 break;
1834 }
dirk34e1a212015-03-22 16:45:12 +00001835 if (LocaleCompare("alpha",keyword) == 0)
1836 {
1837 primitive_type=AlphaPrimitive;
1838 break;
1839 }
cristy3ed852e2009-09-05 21:47:34 +00001840 if (LocaleCompare("arc",keyword) == 0)
1841 {
1842 primitive_type=ArcPrimitive;
1843 break;
1844 }
1845 status=MagickFalse;
1846 break;
1847 }
1848 case 'b':
1849 case 'B':
1850 {
1851 if (LocaleCompare("bezier",keyword) == 0)
1852 {
1853 primitive_type=BezierPrimitive;
1854 break;
1855 }
1856 if (LocaleCompare("border-color",keyword) == 0)
1857 {
1858 GetMagickToken(q,&q,token);
cristy9950d572011-10-01 18:22:35 +00001859 (void) QueryColorCompliance(token,AllCompliance,
cristy947cb4c2011-10-20 18:41:46 +00001860 &graphic_context[n]->border_color,exception);
cristy3ed852e2009-09-05 21:47:34 +00001861 break;
1862 }
1863 status=MagickFalse;
1864 break;
1865 }
1866 case 'c':
1867 case 'C':
1868 {
1869 if (LocaleCompare("clip-path",keyword) == 0)
1870 {
1871 /*
1872 Create clip mask.
1873 */
1874 GetMagickToken(q,&q,token);
1875 (void) CloneString(&graphic_context[n]->clip_mask,token);
1876 (void) DrawClipPath(image,graphic_context[n],
cristy018f07f2011-09-04 21:15:19 +00001877 graphic_context[n]->clip_mask,exception);
cristy3ed852e2009-09-05 21:47:34 +00001878 break;
1879 }
1880 if (LocaleCompare("clip-rule",keyword) == 0)
1881 {
cristybb503372010-05-27 20:51:26 +00001882 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001883 fill_rule;
1884
1885 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00001886 fill_rule=ParseCommandOption(MagickFillRuleOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00001887 token);
1888 if (fill_rule == -1)
anthony2a021472011-10-08 11:29:29 +00001889 status=MagickFalse;
1890 else
1891 graphic_context[n]->fill_rule=(FillRule) fill_rule;
cristy3ed852e2009-09-05 21:47:34 +00001892 break;
1893 }
1894 if (LocaleCompare("clip-units",keyword) == 0)
1895 {
cristybb503372010-05-27 20:51:26 +00001896 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001897 clip_units;
1898
1899 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00001900 clip_units=ParseCommandOption(MagickClipPathOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00001901 token);
1902 if (clip_units == -1)
1903 {
1904 status=MagickFalse;
1905 break;
1906 }
1907 graphic_context[n]->clip_units=(ClipPathUnits) clip_units;
1908 if (clip_units == ObjectBoundingBox)
1909 {
1910 GetAffineMatrix(&current);
1911 affine.sx=draw_info->bounds.x2;
1912 affine.sy=draw_info->bounds.y2;
1913 affine.tx=draw_info->bounds.x1;
1914 affine.ty=draw_info->bounds.y1;
1915 break;
1916 }
1917 break;
1918 }
1919 if (LocaleCompare("circle",keyword) == 0)
1920 {
1921 primitive_type=CirclePrimitive;
1922 break;
1923 }
1924 if (LocaleCompare("color",keyword) == 0)
1925 {
1926 primitive_type=ColorPrimitive;
1927 break;
1928 }
1929 status=MagickFalse;
1930 break;
1931 }
1932 case 'd':
1933 case 'D':
1934 {
1935 if (LocaleCompare("decorate",keyword) == 0)
1936 {
cristybb503372010-05-27 20:51:26 +00001937 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001938 decorate;
1939
1940 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00001941 decorate=ParseCommandOption(MagickDecorateOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00001942 token);
1943 if (decorate == -1)
anthony2a021472011-10-08 11:29:29 +00001944 status=MagickFalse;
1945 else
1946 graphic_context[n]->decorate=(DecorationType) decorate;
cristy3ed852e2009-09-05 21:47:34 +00001947 break;
1948 }
dirkc084d392014-01-27 19:08:45 +00001949 if (LocaleCompare("direction",keyword) == 0)
1950 {
1951 ssize_t
1952 direction;
1953
1954 GetMagickToken(q,&q,token);
1955 direction=ParseCommandOption(MagickDirectionOptions,MagickFalse,
1956 token);
1957 if (direction == -1)
1958 status=MagickFalse;
1959 else
1960 graphic_context[n]->direction=(DirectionType) direction;
1961 break;
1962 }
cristy3ed852e2009-09-05 21:47:34 +00001963 status=MagickFalse;
1964 break;
1965 }
1966 case 'e':
1967 case 'E':
1968 {
1969 if (LocaleCompare("ellipse",keyword) == 0)
1970 {
1971 primitive_type=EllipsePrimitive;
1972 break;
1973 }
1974 if (LocaleCompare("encoding",keyword) == 0)
1975 {
1976 GetMagickToken(q,&q,token);
1977 (void) CloneString(&graphic_context[n]->encoding,token);
1978 break;
1979 }
1980 status=MagickFalse;
1981 break;
1982 }
1983 case 'f':
1984 case 'F':
1985 {
1986 if (LocaleCompare("fill",keyword) == 0)
1987 {
1988 GetMagickToken(q,&q,token);
cristyb51dff52011-05-19 16:55:47 +00001989 (void) FormatLocaleString(pattern,MaxTextExtent,"%s",token);
cristy3ed852e2009-09-05 21:47:34 +00001990 if (GetImageArtifact(image,pattern) != (const char *) NULL)
1991 (void) DrawPatternPath(image,draw_info,token,
cristy018f07f2011-09-04 21:15:19 +00001992 &graphic_context[n]->fill_pattern,exception);
cristy3ed852e2009-09-05 21:47:34 +00001993 else
1994 {
cristy8a77f142013-08-14 12:44:38 +00001995 status&=QueryColorCompliance(token,AllCompliance,
cristy947cb4c2011-10-20 18:41:46 +00001996 &graphic_context[n]->fill,exception);
cristy3ed852e2009-09-05 21:47:34 +00001997 if (status == MagickFalse)
1998 {
1999 ImageInfo
2000 *pattern_info;
2001
2002 pattern_info=AcquireImageInfo();
2003 (void) CopyMagickString(pattern_info->filename,token,
2004 MaxTextExtent);
cristy947cb4c2011-10-20 18:41:46 +00002005 graphic_context[n]->fill_pattern=ReadImage(pattern_info,
2006 exception);
2007 CatchException(exception);
cristy3ed852e2009-09-05 21:47:34 +00002008 pattern_info=DestroyImageInfo(pattern_info);
2009 }
2010 }
2011 break;
2012 }
cristy69fcc592012-04-28 18:39:59 +00002013 if (LocaleCompare("fill-alpha",keyword) == 0)
cristy3ed852e2009-09-05 21:47:34 +00002014 {
2015 GetMagickToken(q,&q,token);
2016 factor=strchr(token,'%') != (char *) NULL ? 0.01 : 1.0;
cristya19f1d72012-08-07 18:24:38 +00002017 graphic_context[n]->fill.alpha=(double) QuantumRange*
cristydbdd0e32011-11-04 23:29:40 +00002018 factor*StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002019 break;
2020 }
2021 if (LocaleCompare("fill-rule",keyword) == 0)
2022 {
cristybb503372010-05-27 20:51:26 +00002023 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002024 fill_rule;
2025
2026 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00002027 fill_rule=ParseCommandOption(MagickFillRuleOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00002028 token);
2029 if (fill_rule == -1)
anthony2a021472011-10-08 11:29:29 +00002030 status=MagickFalse;
2031 else
2032 graphic_context[n]->fill_rule=(FillRule) fill_rule;
cristy3ed852e2009-09-05 21:47:34 +00002033 break;
2034 }
2035 if (LocaleCompare("font",keyword) == 0)
2036 {
2037 GetMagickToken(q,&q,token);
2038 (void) CloneString(&graphic_context[n]->font,token);
2039 if (LocaleCompare("none",token) == 0)
2040 graphic_context[n]->font=(char *)
2041 RelinquishMagickMemory(graphic_context[n]->font);
2042 break;
2043 }
2044 if (LocaleCompare("font-family",keyword) == 0)
2045 {
2046 GetMagickToken(q,&q,token);
2047 (void) CloneString(&graphic_context[n]->family,token);
2048 break;
2049 }
2050 if (LocaleCompare("font-size",keyword) == 0)
2051 {
2052 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002053 graphic_context[n]->pointsize=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002054 break;
2055 }
2056 if (LocaleCompare("font-stretch",keyword) == 0)
2057 {
cristybb503372010-05-27 20:51:26 +00002058 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002059 stretch;
2060
2061 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00002062 stretch=ParseCommandOption(MagickStretchOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002063 if (stretch == -1)
anthony2a021472011-10-08 11:29:29 +00002064 status=MagickFalse;
2065 else
2066 graphic_context[n]->stretch=(StretchType) stretch;
cristy3ed852e2009-09-05 21:47:34 +00002067 break;
2068 }
2069 if (LocaleCompare("font-style",keyword) == 0)
2070 {
cristybb503372010-05-27 20:51:26 +00002071 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002072 style;
2073
2074 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00002075 style=ParseCommandOption(MagickStyleOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002076 if (style == -1)
anthony2a021472011-10-08 11:29:29 +00002077 status=MagickFalse;
2078 else
2079 graphic_context[n]->style=(StyleType) style;
cristy3ed852e2009-09-05 21:47:34 +00002080 break;
2081 }
2082 if (LocaleCompare("font-weight",keyword) == 0)
2083 {
2084 GetMagickToken(q,&q,token);
cristye27293e2009-12-18 02:53:20 +00002085 graphic_context[n]->weight=StringToUnsignedLong(token);
cristy3ed852e2009-09-05 21:47:34 +00002086 if (LocaleCompare(token,"all") == 0)
2087 graphic_context[n]->weight=0;
2088 if (LocaleCompare(token,"bold") == 0)
2089 graphic_context[n]->weight=700;
2090 if (LocaleCompare(token,"bolder") == 0)
2091 if (graphic_context[n]->weight <= 800)
2092 graphic_context[n]->weight+=100;
2093 if (LocaleCompare(token,"lighter") == 0)
2094 if (graphic_context[n]->weight >= 100)
2095 graphic_context[n]->weight-=100;
2096 if (LocaleCompare(token,"normal") == 0)
2097 graphic_context[n]->weight=400;
2098 break;
2099 }
2100 status=MagickFalse;
2101 break;
2102 }
2103 case 'g':
2104 case 'G':
2105 {
2106 if (LocaleCompare("gradient-units",keyword) == 0)
2107 {
2108 GetMagickToken(q,&q,token);
2109 break;
2110 }
2111 if (LocaleCompare("gravity",keyword) == 0)
2112 {
cristybb503372010-05-27 20:51:26 +00002113 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002114 gravity;
2115
2116 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00002117 gravity=ParseCommandOption(MagickGravityOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002118 if (gravity == -1)
anthony2a021472011-10-08 11:29:29 +00002119 status=MagickFalse;
2120 else
2121 graphic_context[n]->gravity=(GravityType) gravity;
cristy3ed852e2009-09-05 21:47:34 +00002122 break;
2123 }
2124 status=MagickFalse;
2125 break;
2126 }
2127 case 'i':
2128 case 'I':
2129 {
2130 if (LocaleCompare("image",keyword) == 0)
2131 {
cristybb503372010-05-27 20:51:26 +00002132 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002133 compose;
2134
2135 primitive_type=ImagePrimitive;
2136 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00002137 compose=ParseCommandOption(MagickComposeOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002138 if (compose == -1)
anthony2a021472011-10-08 11:29:29 +00002139 status=MagickFalse;
2140 else
2141 graphic_context[n]->compose=(CompositeOperator) compose;
cristy3ed852e2009-09-05 21:47:34 +00002142 break;
2143 }
cristyb32b90a2009-09-07 21:45:48 +00002144 if (LocaleCompare("interline-spacing",keyword) == 0)
2145 {
2146 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002147 graphic_context[n]->interline_spacing=StringToDouble(token,
cristyc1acd842011-05-19 23:05:47 +00002148 (char **) NULL);
cristyb32b90a2009-09-07 21:45:48 +00002149 break;
2150 }
cristy3ed852e2009-09-05 21:47:34 +00002151 if (LocaleCompare("interword-spacing",keyword) == 0)
2152 {
2153 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002154 graphic_context[n]->interword_spacing=StringToDouble(token,
cristyc1acd842011-05-19 23:05:47 +00002155 (char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002156 break;
2157 }
2158 status=MagickFalse;
2159 break;
2160 }
2161 case 'k':
2162 case 'K':
2163 {
2164 if (LocaleCompare("kerning",keyword) == 0)
2165 {
2166 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002167 graphic_context[n]->kerning=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002168 break;
2169 }
2170 status=MagickFalse;
2171 break;
2172 }
2173 case 'l':
2174 case 'L':
2175 {
2176 if (LocaleCompare("line",keyword) == 0)
anthony2a021472011-10-08 11:29:29 +00002177 primitive_type=LinePrimitive;
2178 else
2179 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002180 break;
2181 }
cristy3ed852e2009-09-05 21:47:34 +00002182 case 'o':
2183 case 'O':
2184 {
2185 if (LocaleCompare("offset",keyword) == 0)
2186 {
2187 GetMagickToken(q,&q,token);
2188 break;
2189 }
2190 if (LocaleCompare("opacity",keyword) == 0)
2191 {
2192 GetMagickToken(q,&q,token);
2193 factor=strchr(token,'%') != (char *) NULL ? 0.01 : 1.0;
cristy8cd03c32012-07-07 18:57:59 +00002194 graphic_context[n]->alpha=ClampToQuantum(QuantumRange*(1.0-((1.0-
2195 QuantumScale*graphic_context[n]->alpha)*factor*
2196 StringToDouble(token,(char **) NULL))));
cristyda1f9c12011-10-02 21:39:49 +00002197 graphic_context[n]->fill.alpha=(double) graphic_context[n]->alpha;
2198 graphic_context[n]->stroke.alpha=(double) graphic_context[n]->alpha;
cristy3ed852e2009-09-05 21:47:34 +00002199 break;
2200 }
2201 status=MagickFalse;
2202 break;
2203 }
2204 case 'p':
2205 case 'P':
2206 {
2207 if (LocaleCompare("path",keyword) == 0)
2208 {
2209 primitive_type=PathPrimitive;
2210 break;
2211 }
2212 if (LocaleCompare("point",keyword) == 0)
2213 {
2214 primitive_type=PointPrimitive;
2215 break;
2216 }
2217 if (LocaleCompare("polyline",keyword) == 0)
2218 {
2219 primitive_type=PolylinePrimitive;
2220 break;
2221 }
2222 if (LocaleCompare("polygon",keyword) == 0)
2223 {
2224 primitive_type=PolygonPrimitive;
2225 break;
2226 }
2227 if (LocaleCompare("pop",keyword) == 0)
2228 {
2229 GetMagickToken(q,&q,token);
2230 if (LocaleCompare("clip-path",token) == 0)
2231 break;
2232 if (LocaleCompare("defs",token) == 0)
2233 break;
2234 if (LocaleCompare("gradient",token) == 0)
2235 break;
2236 if (LocaleCompare("graphic-context",token) == 0)
2237 {
2238 if (n <= 0)
2239 {
cristy947cb4c2011-10-20 18:41:46 +00002240 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002241 DrawError,"UnbalancedGraphicContextPushPop","`%s'",token);
cristy3ed852e2009-09-05 21:47:34 +00002242 n=0;
2243 break;
2244 }
2245 if (graphic_context[n]->clip_mask != (char *) NULL)
2246 if (LocaleCompare(graphic_context[n]->clip_mask,
2247 graphic_context[n-1]->clip_mask) != 0)
cristye42f6582012-02-11 17:59:50 +00002248 (void) SetImageMask(image,(Image *) NULL,exception);
cristy3ed852e2009-09-05 21:47:34 +00002249 graphic_context[n]=DestroyDrawInfo(graphic_context[n]);
2250 n--;
2251 break;
2252 }
2253 if (LocaleCompare("pattern",token) == 0)
2254 break;
2255 status=MagickFalse;
2256 break;
2257 }
2258 if (LocaleCompare("push",keyword) == 0)
2259 {
2260 GetMagickToken(q,&q,token);
2261 if (LocaleCompare("clip-path",token) == 0)
2262 {
2263 char
2264 name[MaxTextExtent];
2265
2266 GetMagickToken(q,&q,token);
cristyb51dff52011-05-19 16:55:47 +00002267 (void) FormatLocaleString(name,MaxTextExtent,"%s",token);
cristy3ed852e2009-09-05 21:47:34 +00002268 for (p=q; *q != '\0'; )
2269 {
2270 GetMagickToken(q,&q,token);
2271 if (LocaleCompare(token,"pop") != 0)
2272 continue;
2273 GetMagickToken(q,(const char **) NULL,token);
2274 if (LocaleCompare(token,"clip-path") != 0)
2275 continue;
2276 break;
2277 }
2278 (void) CopyMagickString(token,p,(size_t) (q-p-4+1));
2279 (void) SetImageArtifact(image,name,token);
2280 GetMagickToken(q,&q,token);
2281 break;
2282 }
2283 if (LocaleCompare("gradient",token) == 0)
2284 {
2285 char
2286 key[2*MaxTextExtent],
2287 name[MaxTextExtent],
2288 type[MaxTextExtent];
2289
cristy3ed852e2009-09-05 21:47:34 +00002290 SegmentInfo
2291 segment;
2292
2293 GetMagickToken(q,&q,token);
2294 (void) CopyMagickString(name,token,MaxTextExtent);
2295 GetMagickToken(q,&q,token);
2296 (void) CopyMagickString(type,token,MaxTextExtent);
2297 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002298 segment.x1=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002299 GetMagickToken(q,&q,token);
2300 if (*token == ',')
2301 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002302 segment.y1=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002303 GetMagickToken(q,&q,token);
2304 if (*token == ',')
2305 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002306 segment.x2=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002307 GetMagickToken(q,&q,token);
2308 if (*token == ',')
2309 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002310 segment.y2=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002311 if (LocaleCompare(type,"radial") == 0)
2312 {
2313 GetMagickToken(q,&q,token);
2314 if (*token == ',')
2315 GetMagickToken(q,&q,token);
cristy3ed852e2009-09-05 21:47:34 +00002316 }
2317 for (p=q; *q != '\0'; )
2318 {
2319 GetMagickToken(q,&q,token);
2320 if (LocaleCompare(token,"pop") != 0)
2321 continue;
2322 GetMagickToken(q,(const char **) NULL,token);
2323 if (LocaleCompare(token,"gradient") != 0)
2324 continue;
2325 break;
2326 }
2327 (void) CopyMagickString(token,p,(size_t) (q-p-4+1));
2328 bounds.x1=graphic_context[n]->affine.sx*segment.x1+
2329 graphic_context[n]->affine.ry*segment.y1+
2330 graphic_context[n]->affine.tx;
2331 bounds.y1=graphic_context[n]->affine.rx*segment.x1+
2332 graphic_context[n]->affine.sy*segment.y1+
2333 graphic_context[n]->affine.ty;
2334 bounds.x2=graphic_context[n]->affine.sx*segment.x2+
2335 graphic_context[n]->affine.ry*segment.y2+
2336 graphic_context[n]->affine.tx;
2337 bounds.y2=graphic_context[n]->affine.rx*segment.x2+
2338 graphic_context[n]->affine.sy*segment.y2+
2339 graphic_context[n]->affine.ty;
cristyb51dff52011-05-19 16:55:47 +00002340 (void) FormatLocaleString(key,MaxTextExtent,"%s",name);
cristy3ed852e2009-09-05 21:47:34 +00002341 (void) SetImageArtifact(image,key,token);
cristyb51dff52011-05-19 16:55:47 +00002342 (void) FormatLocaleString(key,MaxTextExtent,"%s-geometry",name);
2343 (void) FormatLocaleString(geometry,MaxTextExtent,
cristye7f51092010-01-17 00:39:37 +00002344 "%gx%g%+.15g%+.15g",
cristy3ed852e2009-09-05 21:47:34 +00002345 MagickMax(fabs(bounds.x2-bounds.x1+1.0),1.0),
2346 MagickMax(fabs(bounds.y2-bounds.y1+1.0),1.0),
2347 bounds.x1,bounds.y1);
2348 (void) SetImageArtifact(image,key,geometry);
2349 GetMagickToken(q,&q,token);
2350 break;
2351 }
2352 if (LocaleCompare("pattern",token) == 0)
2353 {
2354 RectangleInfo
2355 bounds;
2356
2357 GetMagickToken(q,&q,token);
2358 (void) CopyMagickString(name,token,MaxTextExtent);
2359 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002360 bounds.x=(ssize_t) ceil(StringToDouble(token,(char **) NULL)-
2361 0.5);
cristy3ed852e2009-09-05 21:47:34 +00002362 GetMagickToken(q,&q,token);
2363 if (*token == ',')
2364 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002365 bounds.y=(ssize_t) ceil(StringToDouble(token,(char **) NULL)-
2366 0.5);
cristy3ed852e2009-09-05 21:47:34 +00002367 GetMagickToken(q,&q,token);
2368 if (*token == ',')
2369 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002370 bounds.width=(size_t) floor(StringToDouble(token,
cristyc1acd842011-05-19 23:05:47 +00002371 (char **) NULL)+0.5);
cristy3ed852e2009-09-05 21:47:34 +00002372 GetMagickToken(q,&q,token);
2373 if (*token == ',')
2374 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002375 bounds.height=(size_t) floor(StringToDouble(token,
cristyc1acd842011-05-19 23:05:47 +00002376 (char **) NULL)+0.5);
cristy3ed852e2009-09-05 21:47:34 +00002377 for (p=q; *q != '\0'; )
2378 {
2379 GetMagickToken(q,&q,token);
2380 if (LocaleCompare(token,"pop") != 0)
2381 continue;
2382 GetMagickToken(q,(const char **) NULL,token);
2383 if (LocaleCompare(token,"pattern") != 0)
2384 continue;
2385 break;
2386 }
2387 (void) CopyMagickString(token,p,(size_t) (q-p-4+1));
cristyb51dff52011-05-19 16:55:47 +00002388 (void) FormatLocaleString(key,MaxTextExtent,"%s",name);
cristy3ed852e2009-09-05 21:47:34 +00002389 (void) SetImageArtifact(image,key,token);
cristyb51dff52011-05-19 16:55:47 +00002390 (void) FormatLocaleString(key,MaxTextExtent,"%s-geometry",name);
2391 (void) FormatLocaleString(geometry,MaxTextExtent,
cristy6d8abba2010-06-03 01:10:47 +00002392 "%.20gx%.20g%+.20g%+.20g",(double) bounds.width,(double)
cristye8c25f92010-06-03 00:53:06 +00002393 bounds.height,(double) bounds.x,(double) bounds.y);
cristy3ed852e2009-09-05 21:47:34 +00002394 (void) SetImageArtifact(image,key,geometry);
2395 GetMagickToken(q,&q,token);
2396 break;
2397 }
2398 if (LocaleCompare("graphic-context",token) == 0)
2399 {
2400 n++;
2401 graphic_context=(DrawInfo **) ResizeQuantumMemory(
2402 graphic_context,(size_t) (n+1),sizeof(*graphic_context));
2403 if (graphic_context == (DrawInfo **) NULL)
2404 {
cristy947cb4c2011-10-20 18:41:46 +00002405 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002406 ResourceLimitError,"MemoryAllocationFailed","`%s'",
cristy947cb4c2011-10-20 18:41:46 +00002407 image->filename);
cristy3ed852e2009-09-05 21:47:34 +00002408 break;
2409 }
2410 graphic_context[n]=CloneDrawInfo((ImageInfo *) NULL,
2411 graphic_context[n-1]);
2412 break;
2413 }
2414 if (LocaleCompare("defs",token) == 0)
2415 break;
2416 status=MagickFalse;
2417 break;
2418 }
2419 status=MagickFalse;
2420 break;
2421 }
2422 case 'r':
2423 case 'R':
2424 {
2425 if (LocaleCompare("rectangle",keyword) == 0)
2426 {
2427 primitive_type=RectanglePrimitive;
2428 break;
2429 }
2430 if (LocaleCompare("rotate",keyword) == 0)
2431 {
2432 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002433 angle=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002434 affine.sx=cos(DegreesToRadians(fmod((double) angle,360.0)));
2435 affine.rx=sin(DegreesToRadians(fmod((double) angle,360.0)));
2436 affine.ry=(-sin(DegreesToRadians(fmod((double) angle,360.0))));
2437 affine.sy=cos(DegreesToRadians(fmod((double) angle,360.0)));
2438 break;
2439 }
2440 if (LocaleCompare("roundRectangle",keyword) == 0)
2441 {
2442 primitive_type=RoundRectanglePrimitive;
2443 break;
2444 }
2445 status=MagickFalse;
2446 break;
2447 }
2448 case 's':
2449 case 'S':
2450 {
2451 if (LocaleCompare("scale",keyword) == 0)
2452 {
2453 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002454 affine.sx=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002455 GetMagickToken(q,&q,token);
2456 if (*token == ',')
2457 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002458 affine.sy=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002459 break;
2460 }
2461 if (LocaleCompare("skewX",keyword) == 0)
2462 {
2463 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002464 angle=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002465 affine.ry=sin(DegreesToRadians(angle));
2466 break;
2467 }
2468 if (LocaleCompare("skewY",keyword) == 0)
2469 {
2470 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002471 angle=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002472 affine.rx=(-tan(DegreesToRadians(angle)/2.0));
2473 break;
2474 }
2475 if (LocaleCompare("stop-color",keyword) == 0)
2476 {
cristy101ab702011-10-13 13:06:32 +00002477 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00002478 stop_color;
2479
2480 GetMagickToken(q,&q,token);
cristy9950d572011-10-01 18:22:35 +00002481 (void) QueryColorCompliance(token,AllCompliance,&stop_color,
cristy947cb4c2011-10-20 18:41:46 +00002482 exception);
cristy3ed852e2009-09-05 21:47:34 +00002483 (void) GradientImage(image,LinearGradient,ReflectSpread,
cristy947cb4c2011-10-20 18:41:46 +00002484 &start_color,&stop_color,exception);
cristy3ed852e2009-09-05 21:47:34 +00002485 start_color=stop_color;
2486 GetMagickToken(q,&q,token);
2487 break;
2488 }
2489 if (LocaleCompare("stroke",keyword) == 0)
2490 {
2491 GetMagickToken(q,&q,token);
cristyb51dff52011-05-19 16:55:47 +00002492 (void) FormatLocaleString(pattern,MaxTextExtent,"%s",token);
cristy3ed852e2009-09-05 21:47:34 +00002493 if (GetImageArtifact(image,pattern) != (const char *) NULL)
2494 (void) DrawPatternPath(image,draw_info,token,
cristy018f07f2011-09-04 21:15:19 +00002495 &graphic_context[n]->stroke_pattern,exception);
cristy3ed852e2009-09-05 21:47:34 +00002496 else
2497 {
cristy8a77f142013-08-14 12:44:38 +00002498 status&=QueryColorCompliance(token,AllCompliance,
cristy947cb4c2011-10-20 18:41:46 +00002499 &graphic_context[n]->stroke,exception);
cristy3ed852e2009-09-05 21:47:34 +00002500 if (status == MagickFalse)
2501 {
2502 ImageInfo
2503 *pattern_info;
2504
2505 pattern_info=AcquireImageInfo();
2506 (void) CopyMagickString(pattern_info->filename,token,
2507 MaxTextExtent);
cristy947cb4c2011-10-20 18:41:46 +00002508 graphic_context[n]->stroke_pattern=ReadImage(pattern_info,
2509 exception);
2510 CatchException(exception);
cristy3ed852e2009-09-05 21:47:34 +00002511 pattern_info=DestroyImageInfo(pattern_info);
2512 }
2513 }
2514 break;
2515 }
2516 if (LocaleCompare("stroke-antialias",keyword) == 0)
2517 {
2518 GetMagickToken(q,&q,token);
2519 graphic_context[n]->stroke_antialias=
cristyf2f27272009-12-17 14:48:46 +00002520 StringToLong(token) != 0 ? MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002521 break;
2522 }
2523 if (LocaleCompare("stroke-dasharray",keyword) == 0)
2524 {
2525 if (graphic_context[n]->dash_pattern != (double *) NULL)
2526 graphic_context[n]->dash_pattern=(double *)
2527 RelinquishMagickMemory(graphic_context[n]->dash_pattern);
2528 if (IsPoint(q) != MagickFalse)
2529 {
2530 const char
2531 *p;
2532
2533 p=q;
2534 GetMagickToken(p,&p,token);
2535 if (*token == ',')
2536 GetMagickToken(p,&p,token);
2537 for (x=0; IsPoint(token) != MagickFalse; x++)
2538 {
2539 GetMagickToken(p,&p,token);
2540 if (*token == ',')
2541 GetMagickToken(p,&p,token);
2542 }
2543 graphic_context[n]->dash_pattern=(double *)
2544 AcquireQuantumMemory((size_t) (2UL*x+1UL),
2545 sizeof(*graphic_context[n]->dash_pattern));
2546 if (graphic_context[n]->dash_pattern == (double *) NULL)
2547 {
cristy947cb4c2011-10-20 18:41:46 +00002548 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002549 ResourceLimitError,"MemoryAllocationFailed","`%s'",
cristy947cb4c2011-10-20 18:41:46 +00002550 image->filename);
cristy3ed852e2009-09-05 21:47:34 +00002551 break;
2552 }
2553 for (j=0; j < x; j++)
2554 {
2555 GetMagickToken(q,&q,token);
2556 if (*token == ',')
2557 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002558 graphic_context[n]->dash_pattern[j]=StringToDouble(token,
2559 (char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002560 }
2561 if ((x & 0x01) != 0)
2562 for ( ; j < (2*x); j++)
2563 graphic_context[n]->dash_pattern[j]=
2564 graphic_context[n]->dash_pattern[j-x];
2565 graphic_context[n]->dash_pattern[j]=0.0;
2566 break;
2567 }
2568 GetMagickToken(q,&q,token);
2569 break;
2570 }
2571 if (LocaleCompare("stroke-dashoffset",keyword) == 0)
2572 {
2573 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002574 graphic_context[n]->dash_offset=StringToDouble(token,
cristyc1acd842011-05-19 23:05:47 +00002575 (char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002576 break;
2577 }
2578 if (LocaleCompare("stroke-linecap",keyword) == 0)
2579 {
cristybb503372010-05-27 20:51:26 +00002580 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002581 linecap;
2582
2583 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00002584 linecap=ParseCommandOption(MagickLineCapOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002585 if (linecap == -1)
anthony2a021472011-10-08 11:29:29 +00002586 status=MagickFalse;
2587 else
2588 graphic_context[n]->linecap=(LineCap) linecap;
cristy3ed852e2009-09-05 21:47:34 +00002589 break;
2590 }
2591 if (LocaleCompare("stroke-linejoin",keyword) == 0)
2592 {
cristybb503372010-05-27 20:51:26 +00002593 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002594 linejoin;
2595
2596 GetMagickToken(q,&q,token);
cristy7118edf2011-10-08 13:33:25 +00002597 linejoin=ParseCommandOption(MagickLineJoinOptions,MagickFalse,
2598 token);
cristy3ed852e2009-09-05 21:47:34 +00002599 if (linejoin == -1)
anthony2a021472011-10-08 11:29:29 +00002600 status=MagickFalse;
2601 else
2602 graphic_context[n]->linejoin=(LineJoin) linejoin;
cristy3ed852e2009-09-05 21:47:34 +00002603 break;
2604 }
2605 if (LocaleCompare("stroke-miterlimit",keyword) == 0)
2606 {
2607 GetMagickToken(q,&q,token);
cristye27293e2009-12-18 02:53:20 +00002608 graphic_context[n]->miterlimit=StringToUnsignedLong(token);
cristy3ed852e2009-09-05 21:47:34 +00002609 break;
2610 }
2611 if (LocaleCompare("stroke-opacity",keyword) == 0)
2612 {
2613 GetMagickToken(q,&q,token);
2614 factor=strchr(token,'%') != (char *) NULL ? 0.01 : 1.0;
cristya19f1d72012-08-07 18:24:38 +00002615 graphic_context[n]->stroke.alpha=(double) QuantumRange*
cristydbdd0e32011-11-04 23:29:40 +00002616 factor*StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002617 break;
2618 }
2619 if (LocaleCompare("stroke-width",keyword) == 0)
2620 {
2621 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002622 graphic_context[n]->stroke_width=StringToDouble(token,
cristyc1acd842011-05-19 23:05:47 +00002623 (char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002624 break;
2625 }
2626 status=MagickFalse;
2627 break;
2628 }
2629 case 't':
2630 case 'T':
2631 {
2632 if (LocaleCompare("text",keyword) == 0)
2633 {
2634 primitive_type=TextPrimitive;
2635 break;
2636 }
2637 if (LocaleCompare("text-align",keyword) == 0)
2638 {
cristybb503372010-05-27 20:51:26 +00002639 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002640 align;
2641
2642 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00002643 align=ParseCommandOption(MagickAlignOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002644 if (align == -1)
anthony2a021472011-10-08 11:29:29 +00002645 status=MagickFalse;
2646 else
2647 graphic_context[n]->align=(AlignType) align;
cristy3ed852e2009-09-05 21:47:34 +00002648 break;
2649 }
2650 if (LocaleCompare("text-anchor",keyword) == 0)
2651 {
cristybb503372010-05-27 20:51:26 +00002652 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002653 align;
2654
2655 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00002656 align=ParseCommandOption(MagickAlignOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002657 if (align == -1)
anthony2a021472011-10-08 11:29:29 +00002658 status=MagickFalse;
2659 else
2660 graphic_context[n]->align=(AlignType) align;
cristy3ed852e2009-09-05 21:47:34 +00002661 break;
2662 }
2663 if (LocaleCompare("text-antialias",keyword) == 0)
2664 {
2665 GetMagickToken(q,&q,token);
2666 graphic_context[n]->text_antialias=
cristyf2f27272009-12-17 14:48:46 +00002667 StringToLong(token) != 0 ? MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002668 break;
2669 }
2670 if (LocaleCompare("text-undercolor",keyword) == 0)
2671 {
2672 GetMagickToken(q,&q,token);
cristy9950d572011-10-01 18:22:35 +00002673 (void) QueryColorCompliance(token,AllCompliance,
cristy947cb4c2011-10-20 18:41:46 +00002674 &graphic_context[n]->undercolor,exception);
cristy3ed852e2009-09-05 21:47:34 +00002675 break;
2676 }
2677 if (LocaleCompare("translate",keyword) == 0)
2678 {
2679 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002680 affine.tx=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002681 GetMagickToken(q,&q,token);
2682 if (*token == ',')
2683 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002684 affine.ty=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002685 break;
2686 }
2687 status=MagickFalse;
2688 break;
2689 }
2690 case 'v':
2691 case 'V':
2692 {
2693 if (LocaleCompare("viewbox",keyword) == 0)
2694 {
2695 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002696 graphic_context[n]->viewbox.x=(ssize_t) ceil(StringToDouble(token,
2697 (char **) NULL)-0.5);
cristy06609ee2010-03-17 20:21:27 +00002698 GetMagickToken(q,&q,token);
2699 if (*token == ',')
2700 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002701 graphic_context[n]->viewbox.y=(ssize_t) ceil(StringToDouble(token,
2702 (char **) NULL)-0.5);
cristy06609ee2010-03-17 20:21:27 +00002703 GetMagickToken(q,&q,token);
2704 if (*token == ',')
2705 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002706 graphic_context[n]->viewbox.width=(size_t) floor(StringToDouble(
2707 token,(char **) NULL)+0.5);
cristy06609ee2010-03-17 20:21:27 +00002708 GetMagickToken(q,&q,token);
2709 if (*token == ',')
2710 GetMagickToken(q,&q,token);
cristy9b34e302011-11-05 02:15:45 +00002711 graphic_context[n]->viewbox.height=(size_t) floor(StringToDouble(
2712 token,(char **) NULL)+0.5);
cristy3ed852e2009-09-05 21:47:34 +00002713 break;
2714 }
2715 status=MagickFalse;
2716 break;
2717 }
2718 default:
2719 {
2720 status=MagickFalse;
2721 break;
2722 }
2723 }
2724 if (status == MagickFalse)
2725 break;
2726 if ((affine.sx != 1.0) || (affine.rx != 0.0) || (affine.ry != 0.0) ||
2727 (affine.sy != 1.0) || (affine.tx != 0.0) || (affine.ty != 0.0))
2728 {
cristyfbd70092010-12-01 19:31:14 +00002729 graphic_context[n]->affine.sx=current.sx*affine.sx+current.ry*affine.rx;
2730 graphic_context[n]->affine.rx=current.rx*affine.sx+current.sy*affine.rx;
2731 graphic_context[n]->affine.ry=current.sx*affine.ry+current.ry*affine.sy;
2732 graphic_context[n]->affine.sy=current.rx*affine.ry+current.sy*affine.sy;
2733 graphic_context[n]->affine.tx=current.sx*affine.tx+current.ry*affine.ty+
2734 current.tx;
2735 graphic_context[n]->affine.ty=current.rx*affine.tx+current.sy*affine.ty+
2736 current.ty;
cristy3ed852e2009-09-05 21:47:34 +00002737 }
2738 if (primitive_type == UndefinedPrimitive)
2739 {
2740 if (image->debug != MagickFalse)
2741 (void) LogMagickEvent(DrawEvent,GetMagickModule()," %.*s",
2742 (int) (q-p),p);
2743 continue;
2744 }
2745 /*
2746 Parse the primitive attributes.
2747 */
2748 i=0;
2749 j=0;
2750 primitive_info[0].point.x=0.0;
2751 primitive_info[0].point.y=0.0;
2752 for (x=0; *q != '\0'; x++)
2753 {
2754 /*
2755 Define points.
2756 */
2757 if (IsPoint(q) == MagickFalse)
2758 break;
2759 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002760 point.x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002761 GetMagickToken(q,&q,token);
2762 if (*token == ',')
2763 GetMagickToken(q,&q,token);
cristydbdd0e32011-11-04 23:29:40 +00002764 point.y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00002765 GetMagickToken(q,(const char **) NULL,token);
2766 if (*token == ',')
2767 GetMagickToken(q,&q,token);
2768 primitive_info[i].primitive=primitive_type;
2769 primitive_info[i].point=point;
2770 primitive_info[i].coordinates=0;
2771 primitive_info[i].method=FloodfillMethod;
2772 i++;
cristybb503372010-05-27 20:51:26 +00002773 if (i < (ssize_t) number_points)
cristy3ed852e2009-09-05 21:47:34 +00002774 continue;
2775 number_points<<=1;
2776 primitive_info=(PrimitiveInfo *) ResizeQuantumMemory(primitive_info,
2777 (size_t) number_points,sizeof(*primitive_info));
2778 if (primitive_info == (PrimitiveInfo *) NULL)
2779 {
cristy947cb4c2011-10-20 18:41:46 +00002780 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002781 ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename);
cristy3ed852e2009-09-05 21:47:34 +00002782 break;
2783 }
2784 }
2785 primitive_info[j].primitive=primitive_type;
cristybb503372010-05-27 20:51:26 +00002786 primitive_info[j].coordinates=(size_t) x;
cristy3ed852e2009-09-05 21:47:34 +00002787 primitive_info[j].method=FloodfillMethod;
2788 primitive_info[j].text=(char *) NULL;
2789 /*
2790 Circumscribe primitive within a circle.
2791 */
2792 bounds.x1=primitive_info[j].point.x;
2793 bounds.y1=primitive_info[j].point.y;
2794 bounds.x2=primitive_info[j].point.x;
2795 bounds.y2=primitive_info[j].point.y;
cristybb503372010-05-27 20:51:26 +00002796 for (k=1; k < (ssize_t) primitive_info[j].coordinates; k++)
cristy3ed852e2009-09-05 21:47:34 +00002797 {
2798 point=primitive_info[j+k].point;
2799 if (point.x < bounds.x1)
2800 bounds.x1=point.x;
2801 if (point.y < bounds.y1)
2802 bounds.y1=point.y;
2803 if (point.x > bounds.x2)
2804 bounds.x2=point.x;
2805 if (point.y > bounds.y2)
2806 bounds.y2=point.y;
2807 }
2808 /*
2809 Speculate how many points our primitive might consume.
2810 */
2811 length=primitive_info[j].coordinates;
2812 switch (primitive_type)
2813 {
2814 case RectanglePrimitive:
2815 {
2816 length*=5;
2817 break;
2818 }
2819 case RoundRectanglePrimitive:
2820 {
cristy1bdb2332014-11-23 14:02:08 +00002821 double
2822 alpha,
2823 beta,
2824 radius;
2825
2826 alpha=bounds.x2-bounds.x1;
2827 beta=bounds.y2-bounds.y1;
2828 radius=hypot((double) alpha,(double) beta);
2829 length*=5;
2830 length+=2*((size_t) ceil((double) MagickPI*radius))+6*BezierQuantum+360;
cristy3ed852e2009-09-05 21:47:34 +00002831 break;
2832 }
2833 case BezierPrimitive:
2834 {
2835 if (primitive_info[j].coordinates > 107)
cristy947cb4c2011-10-20 18:41:46 +00002836 (void) ThrowMagickException(exception,GetMagickModule(),DrawError,
cristyefe601c2013-01-05 17:51:12 +00002837 "TooManyBezierCoordinates","`%s'",token);
cristy3ed852e2009-09-05 21:47:34 +00002838 length=BezierQuantum*primitive_info[j].coordinates;
2839 break;
2840 }
2841 case PathPrimitive:
2842 {
2843 char
2844 *s,
2845 *t;
2846
2847 GetMagickToken(q,&q,token);
cristy40a08ad2010-02-09 02:27:44 +00002848 length=1;
cristy3ed852e2009-09-05 21:47:34 +00002849 t=token;
2850 for (s=token; *s != '\0'; s=t)
2851 {
cristy00976d82011-02-20 20:31:28 +00002852 double
2853 value;
2854
cristydbdd0e32011-11-04 23:29:40 +00002855 value=StringToDouble(s,&t);
cristy00976d82011-02-20 20:31:28 +00002856 (void) value;
cristy3ed852e2009-09-05 21:47:34 +00002857 if (s == t)
2858 {
2859 t++;
2860 continue;
2861 }
cristyef7a6ce2011-05-14 15:01:11 +00002862 length++;
cristy3ed852e2009-09-05 21:47:34 +00002863 }
cristyd2f832c2011-06-28 12:35:24 +00002864 length=length*BezierQuantum/2;
cristy3ed852e2009-09-05 21:47:34 +00002865 break;
2866 }
2867 case CirclePrimitive:
2868 case ArcPrimitive:
2869 case EllipsePrimitive:
2870 {
cristya19f1d72012-08-07 18:24:38 +00002871 double
cristy3ed852e2009-09-05 21:47:34 +00002872 alpha,
2873 beta,
2874 radius;
2875
2876 alpha=bounds.x2-bounds.x1;
2877 beta=bounds.y2-bounds.y1;
2878 radius=hypot((double) alpha,(double) beta);
cristyf53f26f2011-05-16 00:56:05 +00002879 length=2*((size_t) ceil((double) MagickPI*radius))+6*BezierQuantum+360;
cristy3ed852e2009-09-05 21:47:34 +00002880 break;
2881 }
2882 default:
2883 break;
2884 }
cristybb503372010-05-27 20:51:26 +00002885 if ((size_t) (i+length) >= number_points)
cristy3ed852e2009-09-05 21:47:34 +00002886 {
2887 /*
2888 Resize based on speculative points required by primitive.
2889 */
cristy9ce61b92010-05-12 16:30:26 +00002890 number_points+=length+1;
cristy3ed852e2009-09-05 21:47:34 +00002891 primitive_info=(PrimitiveInfo *) ResizeQuantumMemory(primitive_info,
2892 (size_t) number_points,sizeof(*primitive_info));
2893 if (primitive_info == (PrimitiveInfo *) NULL)
2894 {
cristy947cb4c2011-10-20 18:41:46 +00002895 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002896 ResourceLimitError,"MemoryAllocationFailed","`%s'",
cristy3ed852e2009-09-05 21:47:34 +00002897 image->filename);
2898 break;
2899 }
2900 }
2901 switch (primitive_type)
2902 {
2903 case PointPrimitive:
2904 default:
2905 {
2906 if (primitive_info[j].coordinates != 1)
2907 {
2908 status=MagickFalse;
2909 break;
2910 }
2911 TracePoint(primitive_info+j,primitive_info[j].point);
cristybb503372010-05-27 20:51:26 +00002912 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00002913 break;
2914 }
2915 case LinePrimitive:
2916 {
2917 if (primitive_info[j].coordinates != 2)
2918 {
2919 status=MagickFalse;
2920 break;
2921 }
2922 TraceLine(primitive_info+j,primitive_info[j].point,
2923 primitive_info[j+1].point);
cristybb503372010-05-27 20:51:26 +00002924 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00002925 break;
2926 }
2927 case RectanglePrimitive:
2928 {
2929 if (primitive_info[j].coordinates != 2)
2930 {
2931 status=MagickFalse;
2932 break;
2933 }
2934 TraceRectangle(primitive_info+j,primitive_info[j].point,
2935 primitive_info[j+1].point);
cristybb503372010-05-27 20:51:26 +00002936 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00002937 break;
2938 }
2939 case RoundRectanglePrimitive:
2940 {
2941 if (primitive_info[j].coordinates != 3)
2942 {
2943 status=MagickFalse;
2944 break;
2945 }
2946 TraceRoundRectangle(primitive_info+j,primitive_info[j].point,
2947 primitive_info[j+1].point,primitive_info[j+2].point);
cristybb503372010-05-27 20:51:26 +00002948 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00002949 break;
2950 }
2951 case ArcPrimitive:
2952 {
2953 if (primitive_info[j].coordinates != 3)
2954 {
2955 primitive_type=UndefinedPrimitive;
2956 break;
2957 }
2958 TraceArc(primitive_info+j,primitive_info[j].point,
2959 primitive_info[j+1].point,primitive_info[j+2].point);
cristybb503372010-05-27 20:51:26 +00002960 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00002961 break;
2962 }
2963 case EllipsePrimitive:
2964 {
2965 if (primitive_info[j].coordinates != 3)
2966 {
2967 status=MagickFalse;
2968 break;
2969 }
2970 TraceEllipse(primitive_info+j,primitive_info[j].point,
2971 primitive_info[j+1].point,primitive_info[j+2].point);
cristybb503372010-05-27 20:51:26 +00002972 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00002973 break;
2974 }
2975 case CirclePrimitive:
2976 {
2977 if (primitive_info[j].coordinates != 2)
2978 {
2979 status=MagickFalse;
2980 break;
2981 }
2982 TraceCircle(primitive_info+j,primitive_info[j].point,
2983 primitive_info[j+1].point);
cristybb503372010-05-27 20:51:26 +00002984 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00002985 break;
2986 }
2987 case PolylinePrimitive:
2988 break;
2989 case PolygonPrimitive:
2990 {
2991 primitive_info[i]=primitive_info[j];
2992 primitive_info[i].coordinates=0;
2993 primitive_info[j].coordinates++;
2994 i++;
2995 break;
2996 }
2997 case BezierPrimitive:
2998 {
2999 if (primitive_info[j].coordinates < 3)
3000 {
3001 status=MagickFalse;
3002 break;
3003 }
3004 TraceBezier(primitive_info+j,primitive_info[j].coordinates);
cristybb503372010-05-27 20:51:26 +00003005 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003006 break;
3007 }
3008 case PathPrimitive:
3009 {
cristybb503372010-05-27 20:51:26 +00003010 i=(ssize_t) (j+TracePath(primitive_info+j,token));
cristy3ed852e2009-09-05 21:47:34 +00003011 break;
3012 }
dirk34e1a212015-03-22 16:45:12 +00003013 case AlphaPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00003014 case ColorPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00003015 {
cristybb503372010-05-27 20:51:26 +00003016 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003017 method;
3018
3019 if (primitive_info[j].coordinates != 1)
3020 {
3021 status=MagickFalse;
3022 break;
3023 }
3024 GetMagickToken(q,&q,token);
cristy042ee782011-04-22 18:48:30 +00003025 method=ParseCommandOption(MagickMethodOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00003026 if (method == -1)
anthony2a021472011-10-08 11:29:29 +00003027 status=MagickFalse;
3028 else
3029 primitive_info[j].method=(PaintMethod) method;
cristy3ed852e2009-09-05 21:47:34 +00003030 break;
3031 }
3032 case TextPrimitive:
3033 {
3034 if (primitive_info[j].coordinates != 1)
3035 {
3036 status=MagickFalse;
3037 break;
3038 }
3039 if (*token != ',')
3040 GetMagickToken(q,&q,token);
3041 primitive_info[j].text=AcquireString(token);
3042 break;
3043 }
3044 case ImagePrimitive:
3045 {
3046 if (primitive_info[j].coordinates != 2)
3047 {
3048 status=MagickFalse;
3049 break;
3050 }
3051 GetMagickToken(q,&q,token);
3052 primitive_info[j].text=AcquireString(token);
3053 break;
3054 }
3055 }
3056 if (primitive_info == (PrimitiveInfo *) NULL)
3057 break;
3058 if (image->debug != MagickFalse)
3059 (void) LogMagickEvent(DrawEvent,GetMagickModule()," %.*s",(int) (q-p),p);
3060 if (status == MagickFalse)
3061 break;
3062 primitive_info[i].primitive=UndefinedPrimitive;
3063 if (i == 0)
3064 continue;
3065 /*
3066 Transform points.
3067 */
3068 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++)
3069 {
3070 point=primitive_info[i].point;
3071 primitive_info[i].point.x=graphic_context[n]->affine.sx*point.x+
3072 graphic_context[n]->affine.ry*point.y+graphic_context[n]->affine.tx;
3073 primitive_info[i].point.y=graphic_context[n]->affine.rx*point.x+
3074 graphic_context[n]->affine.sy*point.y+graphic_context[n]->affine.ty;
3075 point=primitive_info[i].point;
3076 if (point.x < graphic_context[n]->bounds.x1)
3077 graphic_context[n]->bounds.x1=point.x;
3078 if (point.y < graphic_context[n]->bounds.y1)
3079 graphic_context[n]->bounds.y1=point.y;
3080 if (point.x > graphic_context[n]->bounds.x2)
3081 graphic_context[n]->bounds.x2=point.x;
3082 if (point.y > graphic_context[n]->bounds.y2)
3083 graphic_context[n]->bounds.y2=point.y;
3084 if (primitive_info[i].primitive == ImagePrimitive)
3085 break;
cristybb503372010-05-27 20:51:26 +00003086 if (i >= (ssize_t) number_points)
cristy9ce61b92010-05-12 16:30:26 +00003087 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
cristy3ed852e2009-09-05 21:47:34 +00003088 }
cristy3ed852e2009-09-05 21:47:34 +00003089 if (graphic_context[n]->render != MagickFalse)
3090 {
3091 if ((n != 0) && (graphic_context[n]->clip_mask != (char *) NULL) &&
3092 (LocaleCompare(graphic_context[n]->clip_mask,
3093 graphic_context[n-1]->clip_mask) != 0))
cristy8a77f142013-08-14 12:44:38 +00003094 status&=DrawClipPath(image,graphic_context[n],
cristy018f07f2011-09-04 21:15:19 +00003095 graphic_context[n]->clip_mask,exception);
cristy8a77f142013-08-14 12:44:38 +00003096 status&=DrawPrimitive(image,graphic_context[n],primitive_info,
3097 exception);
cristy3ed852e2009-09-05 21:47:34 +00003098 }
3099 if (primitive_info->text != (char *) NULL)
3100 primitive_info->text=(char *) RelinquishMagickMemory(
3101 primitive_info->text);
3102 proceed=SetImageProgress(image,RenderImageTag,q-primitive,(MagickSizeType)
3103 primitive_extent);
3104 if (proceed == MagickFalse)
3105 break;
cristy8a77f142013-08-14 12:44:38 +00003106 if (status == 0)
3107 break;
cristy3ed852e2009-09-05 21:47:34 +00003108 }
3109 if (image->debug != MagickFalse)
3110 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"end draw-image");
3111 /*
3112 Relinquish resources.
3113 */
3114 token=DestroyString(token);
3115 if (primitive_info != (PrimitiveInfo *) NULL)
3116 primitive_info=(PrimitiveInfo *) RelinquishMagickMemory(primitive_info);
3117 primitive=DestroyString(primitive);
3118 for ( ; n >= 0; n--)
3119 graphic_context[n]=DestroyDrawInfo(graphic_context[n]);
3120 graphic_context=(DrawInfo **) RelinquishMagickMemory(graphic_context);
3121 if (status == MagickFalse)
3122 ThrowBinaryException(DrawError,"NonconformingDrawingPrimitiveDefinition",
3123 keyword);
cristy8a77f142013-08-14 12:44:38 +00003124 return(status != 0 ? MagickTrue : MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +00003125}
3126
3127/*
3128%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3129% %
3130% %
3131% %
3132% D r a w G r a d i e n t I m a g e %
3133% %
3134% %
3135% %
3136%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3137%
3138% DrawGradientImage() draws a linear gradient on the image.
3139%
3140% The format of the DrawGradientImage method is:
3141%
3142% MagickBooleanType DrawGradientImage(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00003143% const DrawInfo *draw_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003144%
3145% A description of each parameter follows:
3146%
3147% o image: the image.
3148%
anthony2a021472011-10-08 11:29:29 +00003149% o draw_info: the draw info.
cristy3ed852e2009-09-05 21:47:34 +00003150%
cristy947cb4c2011-10-20 18:41:46 +00003151% o exception: return any errors or warnings in this structure.
3152%
cristy3ed852e2009-09-05 21:47:34 +00003153*/
3154
cristya19f1d72012-08-07 18:24:38 +00003155static inline double GetStopColorOffset(const GradientInfo *gradient,
cristybb503372010-05-27 20:51:26 +00003156 const ssize_t x,const ssize_t y)
cristy3ed852e2009-09-05 21:47:34 +00003157{
3158 switch (gradient->type)
3159 {
3160 case UndefinedGradient:
3161 case LinearGradient:
3162 {
cristya19f1d72012-08-07 18:24:38 +00003163 double
cristy3ed852e2009-09-05 21:47:34 +00003164 gamma,
3165 length,
3166 offset,
3167 scale;
3168
3169 PointInfo
3170 p,
3171 q;
3172
3173 const SegmentInfo
3174 *gradient_vector;
3175
3176 gradient_vector=(&gradient->gradient_vector);
3177 p.x=gradient_vector->x2-gradient_vector->x1;
3178 p.y=gradient_vector->y2-gradient_vector->y1;
3179 q.x=(double) x-gradient_vector->x1;
3180 q.y=(double) y-gradient_vector->y1;
3181 length=sqrt(q.x*q.x+q.y*q.y);
3182 gamma=sqrt(p.x*p.x+p.y*p.y)*length;
cristy3e3ec3a2012-11-03 23:11:06 +00003183 gamma=PerceptibleReciprocal(gamma);
cristy3ed852e2009-09-05 21:47:34 +00003184 scale=p.x*q.x+p.y*q.y;
3185 offset=gamma*scale*length;
3186 return(offset);
3187 }
3188 case RadialGradient:
3189 {
cristya19f1d72012-08-07 18:24:38 +00003190 double
cristy3ed852e2009-09-05 21:47:34 +00003191 length,
3192 offset;
3193
3194 PointInfo
3195 v;
3196
3197 v.x=(double) x-gradient->center.x;
3198 v.y=(double) y-gradient->center.y;
3199 length=sqrt(v.x*v.x+v.y*v.y);
3200 if (gradient->spread == RepeatSpread)
3201 return(length);
3202 offset=length/gradient->radius;
3203 return(offset);
3204 }
3205 }
3206 return(0.0);
3207}
3208
3209MagickExport MagickBooleanType DrawGradientImage(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00003210 const DrawInfo *draw_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003211{
cristyc4c8d132010-01-07 01:58:38 +00003212 CacheView
3213 *image_view;
3214
cristy3ed852e2009-09-05 21:47:34 +00003215 const GradientInfo
3216 *gradient;
3217
3218 const SegmentInfo
3219 *gradient_vector;
3220
cristy75c658f2012-12-30 16:09:36 +00003221 double
3222 length;
3223
cristy3ed852e2009-09-05 21:47:34 +00003224 MagickBooleanType
3225 status;
3226
cristy4c08aed2011-07-01 19:47:50 +00003227 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00003228 zero;
3229
cristy3ed852e2009-09-05 21:47:34 +00003230 PointInfo
3231 point;
3232
3233 RectangleInfo
3234 bounding_box;
3235
cristy826a5472010-08-31 23:21:38 +00003236 ssize_t
3237 y;
3238
cristy3ed852e2009-09-05 21:47:34 +00003239 /*
3240 Draw linear or radial gradient on image.
3241 */
3242 assert(image != (Image *) NULL);
3243 assert(image->signature == MagickSignature);
3244 if (image->debug != MagickFalse)
3245 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3246 assert(draw_info != (const DrawInfo *) NULL);
3247 gradient=(&draw_info->gradient);
3248 gradient_vector=(&gradient->gradient_vector);
3249 point.x=gradient_vector->x2-gradient_vector->x1;
3250 point.y=gradient_vector->y2-gradient_vector->y1;
3251 length=sqrt(point.x*point.x+point.y*point.y);
3252 bounding_box=gradient->bounding_box;
3253 status=MagickTrue;
cristy4c08aed2011-07-01 19:47:50 +00003254 GetPixelInfo(image,&zero);
cristy46ff2672012-12-14 15:32:26 +00003255 image_view=AcquireAuthenticCacheView(image,exception);
cristyb5d5f722009-11-04 03:03:49 +00003256#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy9a5a52f2012-10-09 14:40:31 +00003257 #pragma omp parallel for schedule(static,4) shared(status) \
cristycb7dfcc2013-01-06 18:34:59 +00003258 magick_threads(image,image,1,1)
cristy3ed852e2009-09-05 21:47:34 +00003259#endif
cristybb503372010-05-27 20:51:26 +00003260 for (y=bounding_box.y; y < (ssize_t) bounding_box.height; y++)
cristy3ed852e2009-09-05 21:47:34 +00003261 {
cristy4c08aed2011-07-01 19:47:50 +00003262 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00003263 composite,
3264 pixel;
3265
cristya19f1d72012-08-07 18:24:38 +00003266 double
cristy3ed852e2009-09-05 21:47:34 +00003267 alpha,
3268 offset;
3269
cristy4c08aed2011-07-01 19:47:50 +00003270 register Quantum
3271 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003272
cristybb503372010-05-27 20:51:26 +00003273 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003274 i,
3275 x;
3276
cristy826a5472010-08-31 23:21:38 +00003277 ssize_t
3278 j;
3279
cristy3ed852e2009-09-05 21:47:34 +00003280 if (status == MagickFalse)
3281 continue;
3282 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00003283 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003284 {
3285 status=MagickFalse;
3286 continue;
3287 }
cristy3ed852e2009-09-05 21:47:34 +00003288 pixel=zero;
3289 composite=zero;
3290 offset=GetStopColorOffset(gradient,0,y);
3291 if (gradient->type != RadialGradient)
3292 offset/=length;
cristybb503372010-05-27 20:51:26 +00003293 for (x=bounding_box.x; x < (ssize_t) bounding_box.width; x++)
cristy3ed852e2009-09-05 21:47:34 +00003294 {
cristy803640d2011-11-17 02:11:32 +00003295 GetPixelInfoPixel(image,q,&pixel);
cristy3ed852e2009-09-05 21:47:34 +00003296 switch (gradient->spread)
3297 {
3298 case UndefinedSpread:
3299 case PadSpread:
3300 {
cristybb503372010-05-27 20:51:26 +00003301 if ((x != (ssize_t) ceil(gradient_vector->x1-0.5)) ||
3302 (y != (ssize_t) ceil(gradient_vector->y1-0.5)))
cristy3ed852e2009-09-05 21:47:34 +00003303 {
3304 offset=GetStopColorOffset(gradient,x,y);
3305 if (gradient->type != RadialGradient)
3306 offset/=length;
3307 }
cristybb503372010-05-27 20:51:26 +00003308 for (i=0; i < (ssize_t) gradient->number_stops; i++)
cristy3ed852e2009-09-05 21:47:34 +00003309 if (offset < gradient->stops[i].offset)
3310 break;
3311 if ((offset < 0.0) || (i == 0))
3312 composite=gradient->stops[0].color;
3313 else
cristybb503372010-05-27 20:51:26 +00003314 if ((offset > 1.0) || (i == (ssize_t) gradient->number_stops))
cristy3ed852e2009-09-05 21:47:34 +00003315 composite=gradient->stops[gradient->number_stops-1].color;
3316 else
3317 {
3318 j=i;
3319 i--;
3320 alpha=(offset-gradient->stops[i].offset)/
3321 (gradient->stops[j].offset-gradient->stops[i].offset);
cristy4c08aed2011-07-01 19:47:50 +00003322 CompositePixelInfoBlend(&gradient->stops[i].color,1.0-alpha,
cristy3ed852e2009-09-05 21:47:34 +00003323 &gradient->stops[j].color,alpha,&composite);
3324 }
3325 break;
3326 }
3327 case ReflectSpread:
3328 {
cristybb503372010-05-27 20:51:26 +00003329 if ((x != (ssize_t) ceil(gradient_vector->x1-0.5)) ||
3330 (y != (ssize_t) ceil(gradient_vector->y1-0.5)))
cristy3ed852e2009-09-05 21:47:34 +00003331 {
3332 offset=GetStopColorOffset(gradient,x,y);
3333 if (gradient->type != RadialGradient)
3334 offset/=length;
3335 }
3336 if (offset < 0.0)
3337 offset=(-offset);
cristybb503372010-05-27 20:51:26 +00003338 if ((ssize_t) fmod(offset,2.0) == 0)
cristy3ed852e2009-09-05 21:47:34 +00003339 offset=fmod(offset,1.0);
3340 else
3341 offset=1.0-fmod(offset,1.0);
cristybb503372010-05-27 20:51:26 +00003342 for (i=0; i < (ssize_t) gradient->number_stops; i++)
cristy3ed852e2009-09-05 21:47:34 +00003343 if (offset < gradient->stops[i].offset)
3344 break;
3345 if (i == 0)
3346 composite=gradient->stops[0].color;
3347 else
cristybb503372010-05-27 20:51:26 +00003348 if (i == (ssize_t) gradient->number_stops)
cristy3ed852e2009-09-05 21:47:34 +00003349 composite=gradient->stops[gradient->number_stops-1].color;
3350 else
3351 {
3352 j=i;
3353 i--;
3354 alpha=(offset-gradient->stops[i].offset)/
3355 (gradient->stops[j].offset-gradient->stops[i].offset);
cristy4c08aed2011-07-01 19:47:50 +00003356 CompositePixelInfoBlend(&gradient->stops[i].color,1.0-alpha,
cristy3ed852e2009-09-05 21:47:34 +00003357 &gradient->stops[j].color,alpha,&composite);
3358 }
3359 break;
3360 }
3361 case RepeatSpread:
3362 {
3363 MagickBooleanType
3364 antialias;
3365
cristya19f1d72012-08-07 18:24:38 +00003366 double
cristy3ed852e2009-09-05 21:47:34 +00003367 repeat;
3368
3369 antialias=MagickFalse;
3370 repeat=0.0;
cristybb503372010-05-27 20:51:26 +00003371 if ((x != (ssize_t) ceil(gradient_vector->x1-0.5)) ||
3372 (y != (ssize_t) ceil(gradient_vector->y1-0.5)))
cristy3ed852e2009-09-05 21:47:34 +00003373 {
3374 offset=GetStopColorOffset(gradient,x,y);
3375 if (gradient->type == LinearGradient)
3376 {
3377 repeat=fmod(offset,length);
3378 if (repeat < 0.0)
3379 repeat=length-fmod(-repeat,length);
3380 else
3381 repeat=fmod(offset,length);
3382 antialias=(repeat < length) && ((repeat+1.0) > length) ?
3383 MagickTrue : MagickFalse;
3384 offset=repeat/length;
3385 }
3386 else
3387 {
3388 repeat=fmod(offset,gradient->radius);
3389 if (repeat < 0.0)
3390 repeat=gradient->radius-fmod(-repeat,gradient->radius);
3391 else
3392 repeat=fmod(offset,gradient->radius);
cristy4c08aed2011-07-01 19:47:50 +00003393 antialias=repeat+1.0 > gradient->radius ? MagickTrue :
3394 MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00003395 offset=repeat/gradient->radius;
3396 }
3397 }
cristybb503372010-05-27 20:51:26 +00003398 for (i=0; i < (ssize_t) gradient->number_stops; i++)
cristy3ed852e2009-09-05 21:47:34 +00003399 if (offset < gradient->stops[i].offset)
3400 break;
3401 if (i == 0)
3402 composite=gradient->stops[0].color;
3403 else
cristybb503372010-05-27 20:51:26 +00003404 if (i == (ssize_t) gradient->number_stops)
cristy3ed852e2009-09-05 21:47:34 +00003405 composite=gradient->stops[gradient->number_stops-1].color;
3406 else
3407 {
3408 j=i;
3409 i--;
3410 alpha=(offset-gradient->stops[i].offset)/
3411 (gradient->stops[j].offset-gradient->stops[i].offset);
3412 if (antialias != MagickFalse)
3413 {
3414 if (gradient->type == LinearGradient)
3415 alpha=length-repeat;
3416 else
3417 alpha=gradient->radius-repeat;
3418 i=0;
cristybb503372010-05-27 20:51:26 +00003419 j=(ssize_t) gradient->number_stops-1L;
cristy3ed852e2009-09-05 21:47:34 +00003420 }
cristy4c08aed2011-07-01 19:47:50 +00003421 CompositePixelInfoBlend(&gradient->stops[i].color,1.0-alpha,
cristy3ed852e2009-09-05 21:47:34 +00003422 &gradient->stops[j].color,alpha,&composite);
3423 }
3424 break;
3425 }
3426 }
cristy4c08aed2011-07-01 19:47:50 +00003427 CompositePixelInfoOver(&composite,composite.alpha,&pixel,pixel.alpha,
3428 &pixel);
cristy11a06d32015-01-04 12:03:27 +00003429 SetPixelViaPixelInfo(image,&pixel,q);
cristyed231572011-07-14 02:18:59 +00003430 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00003431 }
3432 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3433 status=MagickFalse;
3434 }
3435 image_view=DestroyCacheView(image_view);
3436 return(status);
3437}
3438
3439/*
3440%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3441% %
3442% %
3443% %
3444% D r a w P a t t e r n P a t h %
3445% %
3446% %
3447% %
3448%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3449%
3450% DrawPatternPath() draws a pattern.
3451%
3452% The format of the DrawPatternPath method is:
3453%
3454% MagickBooleanType DrawPatternPath(Image *image,const DrawInfo *draw_info,
cristy018f07f2011-09-04 21:15:19 +00003455% const char *name,Image **pattern,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003456%
3457% A description of each parameter follows:
3458%
3459% o image: the image.
3460%
3461% o draw_info: the draw info.
3462%
3463% o name: the pattern name.
3464%
3465% o image: the image.
3466%
cristy018f07f2011-09-04 21:15:19 +00003467% o exception: return any errors or warnings in this structure.
3468%
cristy3ed852e2009-09-05 21:47:34 +00003469*/
3470MagickExport MagickBooleanType DrawPatternPath(Image *image,
cristy018f07f2011-09-04 21:15:19 +00003471 const DrawInfo *draw_info,const char *name,Image **pattern,
3472 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003473{
3474 char
3475 property[MaxTextExtent];
3476
3477 const char
3478 *geometry,
3479 *path;
3480
3481 DrawInfo
3482 *clone_info;
3483
3484 ImageInfo
3485 *image_info;
3486
3487 MagickBooleanType
3488 status;
3489
3490 assert(image != (Image *) NULL);
3491 assert(image->signature == MagickSignature);
3492 if (image->debug != MagickFalse)
3493 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3494 assert(draw_info != (const DrawInfo *) NULL);
3495 assert(name != (const char *) NULL);
cristyb51dff52011-05-19 16:55:47 +00003496 (void) FormatLocaleString(property,MaxTextExtent,"%s",name);
cristy3ed852e2009-09-05 21:47:34 +00003497 path=GetImageArtifact(image,property);
3498 if (path == (const char *) NULL)
3499 return(MagickFalse);
cristyb51dff52011-05-19 16:55:47 +00003500 (void) FormatLocaleString(property,MaxTextExtent,"%s-geometry",name);
cristy3ed852e2009-09-05 21:47:34 +00003501 geometry=GetImageArtifact(image,property);
3502 if (geometry == (const char *) NULL)
3503 return(MagickFalse);
3504 if ((*pattern) != (Image *) NULL)
3505 *pattern=DestroyImage(*pattern);
3506 image_info=AcquireImageInfo();
3507 image_info->size=AcquireString(geometry);
cristy947cb4c2011-10-20 18:41:46 +00003508 *pattern=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00003509 image_info=DestroyImageInfo(image_info);
cristyca611542013-02-19 00:54:03 +00003510 (void) QueryColorCompliance("#000000ff",AllCompliance,
cristyea1a8aa2011-10-20 13:24:06 +00003511 &(*pattern)->background_color,exception);
3512 (void) SetImageBackgroundColor(*pattern,exception);
cristy3ed852e2009-09-05 21:47:34 +00003513 if (image->debug != MagickFalse)
3514 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
3515 "begin pattern-path %s %s",name,geometry);
3516 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
3517 clone_info->fill_pattern=NewImageList();
3518 clone_info->stroke_pattern=NewImageList();
3519 (void) CloneString(&clone_info->primitive,path);
cristy018f07f2011-09-04 21:15:19 +00003520 status=DrawImage(*pattern,clone_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00003521 clone_info=DestroyDrawInfo(clone_info);
3522 if (image->debug != MagickFalse)
3523 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"end pattern-path");
3524 return(status);
3525}
3526
3527/*
3528%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3529% %
3530% %
3531% %
3532+ D r a w P o l y g o n P r i m i t i v e %
3533% %
3534% %
3535% %
3536%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3537%
3538% DrawPolygonPrimitive() draws a polygon on the image.
3539%
3540% The format of the DrawPolygonPrimitive method is:
3541%
3542% MagickBooleanType DrawPolygonPrimitive(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00003543% const DrawInfo *draw_info,const PrimitiveInfo *primitive_info,
3544% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003545%
3546% A description of each parameter follows:
3547%
3548% o image: the image.
3549%
3550% o draw_info: the draw info.
3551%
3552% o primitive_info: Specifies a pointer to a PrimitiveInfo structure.
3553%
cristy947cb4c2011-10-20 18:41:46 +00003554% o exception: return any errors or warnings in this structure.
3555%
cristy3ed852e2009-09-05 21:47:34 +00003556*/
3557
3558static PolygonInfo **DestroyPolygonThreadSet(PolygonInfo **polygon_info)
3559{
cristybb503372010-05-27 20:51:26 +00003560 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003561 i;
3562
3563 assert(polygon_info != (PolygonInfo **) NULL);
cristyac245f82012-05-05 17:13:57 +00003564 for (i=0; i < (ssize_t) GetMagickResourceLimit(ThreadResource); i++)
cristy3ed852e2009-09-05 21:47:34 +00003565 if (polygon_info[i] != (PolygonInfo *) NULL)
3566 polygon_info[i]=DestroyPolygonInfo(polygon_info[i]);
cristyb41ee102010-10-04 16:46:15 +00003567 polygon_info=(PolygonInfo **) RelinquishMagickMemory(polygon_info);
cristy3ed852e2009-09-05 21:47:34 +00003568 return(polygon_info);
3569}
3570
3571static PolygonInfo **AcquirePolygonThreadSet(const DrawInfo *draw_info,
3572 const PrimitiveInfo *primitive_info)
3573{
3574 PathInfo
cristyfa112112010-01-04 17:48:07 +00003575 *restrict path_info;
cristy3ed852e2009-09-05 21:47:34 +00003576
cristy3ed852e2009-09-05 21:47:34 +00003577 PolygonInfo
3578 **polygon_info;
3579
cristy826a5472010-08-31 23:21:38 +00003580 register ssize_t
3581 i;
3582
cristybb503372010-05-27 20:51:26 +00003583 size_t
cristy3ed852e2009-09-05 21:47:34 +00003584 number_threads;
3585
cristy9357bdd2012-07-30 12:28:34 +00003586 number_threads=(size_t) GetMagickResourceLimit(ThreadResource);
cristyb41ee102010-10-04 16:46:15 +00003587 polygon_info=(PolygonInfo **) AcquireQuantumMemory(number_threads,
cristy3ed852e2009-09-05 21:47:34 +00003588 sizeof(*polygon_info));
3589 if (polygon_info == (PolygonInfo **) NULL)
3590 return((PolygonInfo **) NULL);
cristyac245f82012-05-05 17:13:57 +00003591 (void) ResetMagickMemory(polygon_info,0,number_threads*sizeof(*polygon_info));
cristy3ed852e2009-09-05 21:47:34 +00003592 path_info=ConvertPrimitiveToPath(draw_info,primitive_info);
3593 if (path_info == (PathInfo *) NULL)
3594 return(DestroyPolygonThreadSet(polygon_info));
cristybb503372010-05-27 20:51:26 +00003595 for (i=0; i < (ssize_t) number_threads; i++)
cristy3ed852e2009-09-05 21:47:34 +00003596 {
3597 polygon_info[i]=ConvertPathToPolygon(draw_info,path_info);
3598 if (polygon_info[i] == (PolygonInfo *) NULL)
3599 return(DestroyPolygonThreadSet(polygon_info));
3600 }
3601 path_info=(PathInfo *) RelinquishMagickMemory(path_info);
3602 return(polygon_info);
3603}
3604
cristy884d1622012-09-03 18:10:10 +00003605static double GetFillAlpha(PolygonInfo *polygon_info,const double mid,
cristye4e47ae2012-09-04 23:36:43 +00003606 const MagickBooleanType fill,const FillRule fill_rule,const ssize_t x,
3607 const ssize_t y,double *stroke_alpha)
cristy3ed852e2009-09-05 21:47:34 +00003608{
cristya19f1d72012-08-07 18:24:38 +00003609 double
cristyb32b90a2009-09-07 21:45:48 +00003610 alpha,
3611 beta,
cristy3ed852e2009-09-05 21:47:34 +00003612 distance,
cristyb2e6b992011-12-17 16:42:29 +00003613 subpath_alpha;
cristy3ed852e2009-09-05 21:47:34 +00003614
3615 PointInfo
cristyb32b90a2009-09-07 21:45:48 +00003616 delta;
cristy3ed852e2009-09-05 21:47:34 +00003617
cristyb32b90a2009-09-07 21:45:48 +00003618 register const PointInfo
3619 *q;
3620
cristy884d1622012-09-03 18:10:10 +00003621 register EdgeInfo
3622 *p;
3623
cristybb503372010-05-27 20:51:26 +00003624 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003625 i;
3626
cristycee97112010-05-28 00:44:52 +00003627 ssize_t
3628 j,
3629 winding_number;
3630
cristy3ed852e2009-09-05 21:47:34 +00003631 /*
3632 Compute fill & stroke opacity for this (x,y) point.
3633 */
cristyb2e6b992011-12-17 16:42:29 +00003634 *stroke_alpha=0.0;
3635 subpath_alpha=0.0;
cristy3ed852e2009-09-05 21:47:34 +00003636 p=polygon_info->edges;
cristybb503372010-05-27 20:51:26 +00003637 for (j=0; j < (ssize_t) polygon_info->number_edges; j++, p++)
cristy3ed852e2009-09-05 21:47:34 +00003638 {
cristye4e47ae2012-09-04 23:36:43 +00003639 if ((double) y <= (p->bounds.y1-mid-0.5))
cristy3ed852e2009-09-05 21:47:34 +00003640 break;
cristye4e47ae2012-09-04 23:36:43 +00003641 if ((double) y > (p->bounds.y2+mid+0.5))
cristy3ed852e2009-09-05 21:47:34 +00003642 {
cristybb503372010-05-27 20:51:26 +00003643 (void) DestroyEdge(polygon_info,(size_t) j);
cristy3ed852e2009-09-05 21:47:34 +00003644 continue;
3645 }
cristye4e47ae2012-09-04 23:36:43 +00003646 if (((double) x <= (p->bounds.x1-mid-0.5)) ||
3647 ((double) x > (p->bounds.x2+mid+0.5)))
cristy3ed852e2009-09-05 21:47:34 +00003648 continue;
cristybb503372010-05-27 20:51:26 +00003649 i=(ssize_t) MagickMax((double) p->highwater,1.0);
3650 for ( ; i < (ssize_t) p->number_points; i++)
cristy3ed852e2009-09-05 21:47:34 +00003651 {
cristye4e47ae2012-09-04 23:36:43 +00003652 if ((double) y <= (p->points[i-1].y-mid-0.5))
cristy3ed852e2009-09-05 21:47:34 +00003653 break;
cristye4e47ae2012-09-04 23:36:43 +00003654 if ((double) y > (p->points[i].y+mid+0.5))
cristy3ed852e2009-09-05 21:47:34 +00003655 continue;
cristye4e47ae2012-09-04 23:36:43 +00003656 if (p->scanline != (double) y)
cristy3ed852e2009-09-05 21:47:34 +00003657 {
cristye4e47ae2012-09-04 23:36:43 +00003658 p->scanline=(double) y;
cristybb503372010-05-27 20:51:26 +00003659 p->highwater=(size_t) i;
cristy3ed852e2009-09-05 21:47:34 +00003660 }
3661 /*
3662 Compute distance between a point and an edge.
3663 */
cristyb32b90a2009-09-07 21:45:48 +00003664 q=p->points+i-1;
3665 delta.x=(q+1)->x-q->x;
3666 delta.y=(q+1)->y-q->y;
3667 beta=delta.x*(x-q->x)+delta.y*(y-q->y);
cristy3ed852e2009-09-05 21:47:34 +00003668 if (beta < 0.0)
3669 {
cristye4e47ae2012-09-04 23:36:43 +00003670 delta.x=(double) x-q->x;
3671 delta.y=(double) y-q->y;
cristy3ed852e2009-09-05 21:47:34 +00003672 distance=delta.x*delta.x+delta.y*delta.y;
3673 }
3674 else
3675 {
3676 alpha=delta.x*delta.x+delta.y*delta.y;
3677 if (beta > alpha)
3678 {
cristye4e47ae2012-09-04 23:36:43 +00003679 delta.x=(double) x-(q+1)->x;
3680 delta.y=(double) y-(q+1)->y;
cristy3ed852e2009-09-05 21:47:34 +00003681 distance=delta.x*delta.x+delta.y*delta.y;
3682 }
3683 else
3684 {
cristy592aefd2013-02-03 15:41:39 +00003685 alpha=1.0/alpha;
cristyb32b90a2009-09-07 21:45:48 +00003686 beta=delta.x*(y-q->y)-delta.y*(x-q->x);
cristy4b67d752012-07-07 23:50:17 +00003687 distance=alpha*beta*beta;
cristy3ed852e2009-09-05 21:47:34 +00003688 }
3689 }
3690 /*
3691 Compute stroke & subpath opacity.
3692 */
3693 beta=0.0;
3694 if (p->ghostline == MagickFalse)
3695 {
cristyb32b90a2009-09-07 21:45:48 +00003696 alpha=mid+0.5;
cristyb2e6b992011-12-17 16:42:29 +00003697 if ((*stroke_alpha < 1.0) &&
cristy3ed852e2009-09-05 21:47:34 +00003698 (distance <= ((alpha+0.25)*(alpha+0.25))))
3699 {
3700 alpha=mid-0.5;
3701 if (distance <= ((alpha+0.25)*(alpha+0.25)))
cristyb2e6b992011-12-17 16:42:29 +00003702 *stroke_alpha=1.0;
cristy3ed852e2009-09-05 21:47:34 +00003703 else
3704 {
3705 beta=1.0;
3706 if (distance != 1.0)
3707 beta=sqrt((double) distance);
cristyb32b90a2009-09-07 21:45:48 +00003708 alpha=beta-mid-0.5;
cristyb2e6b992011-12-17 16:42:29 +00003709 if (*stroke_alpha < ((alpha-0.25)*(alpha-0.25)))
3710 *stroke_alpha=(alpha-0.25)*(alpha-0.25);
cristy3ed852e2009-09-05 21:47:34 +00003711 }
3712 }
3713 }
cristyb2e6b992011-12-17 16:42:29 +00003714 if ((fill == MagickFalse) || (distance > 1.0) || (subpath_alpha >= 1.0))
cristy3ed852e2009-09-05 21:47:34 +00003715 continue;
3716 if (distance <= 0.0)
3717 {
cristyb2e6b992011-12-17 16:42:29 +00003718 subpath_alpha=1.0;
cristy3ed852e2009-09-05 21:47:34 +00003719 continue;
3720 }
3721 if (distance > 1.0)
3722 continue;
3723 if (beta == 0.0)
3724 {
3725 beta=1.0;
3726 if (distance != 1.0)
cristyb32b90a2009-09-07 21:45:48 +00003727 beta=sqrt(distance);
cristy3ed852e2009-09-05 21:47:34 +00003728 }
3729 alpha=beta-1.0;
cristyb2e6b992011-12-17 16:42:29 +00003730 if (subpath_alpha < (alpha*alpha))
3731 subpath_alpha=alpha*alpha;
cristy3ed852e2009-09-05 21:47:34 +00003732 }
cristy3ed852e2009-09-05 21:47:34 +00003733 }
3734 /*
3735 Compute fill opacity.
3736 */
3737 if (fill == MagickFalse)
3738 return(0.0);
cristyb2e6b992011-12-17 16:42:29 +00003739 if (subpath_alpha >= 1.0)
cristy3ed852e2009-09-05 21:47:34 +00003740 return(1.0);
cristyb32b90a2009-09-07 21:45:48 +00003741 /*
3742 Determine winding number.
3743 */
3744 winding_number=0;
3745 p=polygon_info->edges;
cristybb503372010-05-27 20:51:26 +00003746 for (j=0; j < (ssize_t) polygon_info->number_edges; j++, p++)
cristyb32b90a2009-09-07 21:45:48 +00003747 {
cristye4e47ae2012-09-04 23:36:43 +00003748 if ((double) y <= p->bounds.y1)
cristyb32b90a2009-09-07 21:45:48 +00003749 break;
cristye4e47ae2012-09-04 23:36:43 +00003750 if (((double) y > p->bounds.y2) || ((double) x <= p->bounds.x1))
cristyb32b90a2009-09-07 21:45:48 +00003751 continue;
cristye4e47ae2012-09-04 23:36:43 +00003752 if ((double) x > p->bounds.x2)
cristyb32b90a2009-09-07 21:45:48 +00003753 {
3754 winding_number+=p->direction ? 1 : -1;
3755 continue;
3756 }
cristybb503372010-05-27 20:51:26 +00003757 i=(ssize_t) MagickMax((double) p->highwater,1.0);
3758 for ( ; i < (ssize_t) p->number_points; i++)
cristye4e47ae2012-09-04 23:36:43 +00003759 if ((double) y <= p->points[i].y)
cristyb32b90a2009-09-07 21:45:48 +00003760 break;
3761 q=p->points+i-1;
3762 if ((((q+1)->x-q->x)*(y-q->y)) <= (((q+1)->y-q->y)*(x-q->x)))
3763 winding_number+=p->direction ? 1 : -1;
3764 }
cristy3ed852e2009-09-05 21:47:34 +00003765 if (fill_rule != NonZeroRule)
3766 {
3767 if ((MagickAbsoluteValue(winding_number) & 0x01) != 0)
3768 return(1.0);
3769 }
3770 else
3771 if (MagickAbsoluteValue(winding_number) != 0)
3772 return(1.0);
cristyb2e6b992011-12-17 16:42:29 +00003773 return(subpath_alpha);
cristy3ed852e2009-09-05 21:47:34 +00003774}
3775
3776static MagickBooleanType DrawPolygonPrimitive(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00003777 const DrawInfo *draw_info,const PrimitiveInfo *primitive_info,
3778 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003779{
cristyfa112112010-01-04 17:48:07 +00003780 CacheView
3781 *image_view;
3782
cristy3ed852e2009-09-05 21:47:34 +00003783 MagickBooleanType
3784 fill,
3785 status;
3786
cristya19f1d72012-08-07 18:24:38 +00003787 double
cristy3ed852e2009-09-05 21:47:34 +00003788 mid;
3789
3790 PolygonInfo
cristyfa112112010-01-04 17:48:07 +00003791 **restrict polygon_info;
cristy3ed852e2009-09-05 21:47:34 +00003792
3793 register EdgeInfo
3794 *p;
3795
cristybb503372010-05-27 20:51:26 +00003796 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003797 i;
3798
3799 SegmentInfo
3800 bounds;
3801
cristy826a5472010-08-31 23:21:38 +00003802 ssize_t
3803 start,
3804 stop,
3805 y;
3806
cristy3ed852e2009-09-05 21:47:34 +00003807 /*
3808 Compute bounding box.
3809 */
3810 assert(image != (Image *) NULL);
3811 assert(image->signature == MagickSignature);
3812 if (image->debug != MagickFalse)
3813 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3814 assert(draw_info != (DrawInfo *) NULL);
3815 assert(draw_info->signature == MagickSignature);
3816 assert(primitive_info != (PrimitiveInfo *) NULL);
3817 if (primitive_info->coordinates == 0)
3818 return(MagickTrue);
3819 polygon_info=AcquirePolygonThreadSet(draw_info,primitive_info);
3820 if (polygon_info == (PolygonInfo **) NULL)
3821 return(MagickFalse);
dirk93b02b72013-11-16 16:03:36 +00003822DisableMSCWarning(4127)
cristy3ed852e2009-09-05 21:47:34 +00003823 if (0)
cristy947cb4c2011-10-20 18:41:46 +00003824 DrawBoundingRectangles(image,draw_info,polygon_info[0],exception);
dirk93b02b72013-11-16 16:03:36 +00003825RestoreMSCWarning
cristy3ed852e2009-09-05 21:47:34 +00003826 if (image->debug != MagickFalse)
3827 (void) LogMagickEvent(DrawEvent,GetMagickModule()," begin draw-polygon");
3828 fill=(primitive_info->method == FillToBorderMethod) ||
3829 (primitive_info->method == FloodfillMethod) ? MagickTrue : MagickFalse;
3830 mid=ExpandAffine(&draw_info->affine)*draw_info->stroke_width/2.0;
3831 bounds=polygon_info[0]->edges[0].bounds;
cristybb503372010-05-27 20:51:26 +00003832 for (i=1; i < (ssize_t) polygon_info[0]->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +00003833 {
3834 p=polygon_info[0]->edges+i;
3835 if (p->bounds.x1 < bounds.x1)
3836 bounds.x1=p->bounds.x1;
3837 if (p->bounds.y1 < bounds.y1)
3838 bounds.y1=p->bounds.y1;
3839 if (p->bounds.x2 > bounds.x2)
3840 bounds.x2=p->bounds.x2;
3841 if (p->bounds.y2 > bounds.y2)
3842 bounds.y2=p->bounds.y2;
3843 }
3844 bounds.x1-=(mid+1.0);
cristybb503372010-05-27 20:51:26 +00003845 bounds.x1=bounds.x1 < 0.0 ? 0.0 : (size_t) ceil(bounds.x1-0.5) >=
cristy6c5494a2012-09-22 00:30:37 +00003846 image->columns ? (double) image->columns-1 : bounds.x1;
cristy3ed852e2009-09-05 21:47:34 +00003847 bounds.y1-=(mid+1.0);
cristybb503372010-05-27 20:51:26 +00003848 bounds.y1=bounds.y1 < 0.0 ? 0.0 : (size_t) ceil(bounds.y1-0.5) >=
cristy6c5494a2012-09-22 00:30:37 +00003849 image->rows ? (double) image->rows-1 : bounds.y1;
cristy3ed852e2009-09-05 21:47:34 +00003850 bounds.x2+=(mid+1.0);
cristy8071c472012-09-24 12:41:06 +00003851 bounds.x2=bounds.x2 < 0.0 ? 0.0 : (size_t) floor(bounds.x2+0.5) >=
cristy6c5494a2012-09-22 00:30:37 +00003852 image->columns ? (double) image->columns-1 : bounds.x2;
cristy3ed852e2009-09-05 21:47:34 +00003853 bounds.y2+=(mid+1.0);
cristy8071c472012-09-24 12:41:06 +00003854 bounds.y2=bounds.y2 < 0.0 ? 0.0 : (size_t) floor(bounds.y2+0.5) >=
cristy6c5494a2012-09-22 00:30:37 +00003855 image->rows ? (double) image->rows-1 : bounds.y2;
cristy3ed852e2009-09-05 21:47:34 +00003856 status=MagickTrue;
cristy46ff2672012-12-14 15:32:26 +00003857 image_view=AcquireAuthenticCacheView(image,exception);
cristy3ed852e2009-09-05 21:47:34 +00003858 if (primitive_info->coordinates == 1)
3859 {
3860 /*
3861 Draw point.
3862 */
cristy564a5692012-01-20 23:56:26 +00003863 start=(ssize_t) ceil(bounds.y1-0.5);
cristy8071c472012-09-24 12:41:06 +00003864 stop=(ssize_t) floor(bounds.y2+0.5);
cristyb5d5f722009-11-04 03:03:49 +00003865#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy9a5a52f2012-10-09 14:40:31 +00003866 #pragma omp parallel for schedule(static,4) shared(status) \
cristycb7dfcc2013-01-06 18:34:59 +00003867 magick_threads(image,image,1,1)
cristy3ed852e2009-09-05 21:47:34 +00003868#endif
cristy564a5692012-01-20 23:56:26 +00003869 for (y=start; y <= stop; y++)
cristy3ed852e2009-09-05 21:47:34 +00003870 {
3871 MagickBooleanType
3872 sync;
3873
cristy101ab702011-10-13 13:06:32 +00003874 PixelInfo
cristy4c08aed2011-07-01 19:47:50 +00003875 pixel;
3876
cristybb503372010-05-27 20:51:26 +00003877 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003878 x;
3879
cristy4c08aed2011-07-01 19:47:50 +00003880 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00003881 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003882
cristy564a5692012-01-20 23:56:26 +00003883 ssize_t
3884 start,
3885 stop;
3886
cristy3ed852e2009-09-05 21:47:34 +00003887 if (status == MagickFalse)
3888 continue;
cristy564a5692012-01-20 23:56:26 +00003889 start=(ssize_t) ceil(bounds.x1-0.5);
cristy8071c472012-09-24 12:41:06 +00003890 stop=(ssize_t) floor(bounds.x2+0.5);
cristy3ed852e2009-09-05 21:47:34 +00003891 x=start;
cristyf707b302012-09-04 23:51:26 +00003892 q=GetCacheViewAuthenticPixels(image_view,x,y,(size_t) (stop-x+1),1,
3893 exception);
cristy4c08aed2011-07-01 19:47:50 +00003894 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003895 {
3896 status=MagickFalse;
3897 continue;
3898 }
cristy101ab702011-10-13 13:06:32 +00003899 GetPixelInfo(image,&pixel);
cristy3ed852e2009-09-05 21:47:34 +00003900 for ( ; x <= stop; x++)
3901 {
cristybb503372010-05-27 20:51:26 +00003902 if ((x == (ssize_t) ceil(primitive_info->point.x-0.5)) &&
3903 (y == (ssize_t) ceil(primitive_info->point.y-0.5)))
cristy4c08aed2011-07-01 19:47:50 +00003904 {
cristy2ed42f62011-10-02 19:49:57 +00003905 (void) GetStrokeColor(draw_info,x,y,&pixel,exception);
cristy11a06d32015-01-04 12:03:27 +00003906 SetPixelViaPixelInfo(image,&pixel,q);
cristy4c08aed2011-07-01 19:47:50 +00003907 }
cristyed231572011-07-14 02:18:59 +00003908 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00003909 }
3910 sync=SyncCacheViewAuthenticPixels(image_view,exception);
3911 if (sync == MagickFalse)
3912 status=MagickFalse;
3913 }
3914 image_view=DestroyCacheView(image_view);
3915 polygon_info=DestroyPolygonThreadSet(polygon_info);
3916 if (image->debug != MagickFalse)
3917 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
3918 " end draw-polygon");
3919 return(status);
3920 }
3921 /*
3922 Draw polygon or line.
3923 */
cristy17f11b02014-12-20 19:37:04 +00003924 if (image->alpha_trait == UndefinedPixelTrait)
cristy63240882011-08-05 19:05:27 +00003925 (void) SetImageAlphaChannel(image,OpaqueAlphaChannel,exception);
cristy564a5692012-01-20 23:56:26 +00003926 start=(ssize_t) ceil(bounds.y1-0.5);
cristy8071c472012-09-24 12:41:06 +00003927 stop=(ssize_t) floor(bounds.y2+0.5);
cristyb5d5f722009-11-04 03:03:49 +00003928#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy9a5a52f2012-10-09 14:40:31 +00003929 #pragma omp parallel for schedule(static,4) shared(status) \
cristycb7dfcc2013-01-06 18:34:59 +00003930 magick_threads(image,image,1,1)
cristy3ed852e2009-09-05 21:47:34 +00003931#endif
cristy564a5692012-01-20 23:56:26 +00003932 for (y=start; y <= stop; y++)
cristy3ed852e2009-09-05 21:47:34 +00003933 {
cristy5c9e6f22010-09-17 17:31:01 +00003934 const int
3935 id = GetOpenMPThreadId();
cristy6ebe97c2010-07-03 01:17:28 +00003936
cristya19f1d72012-08-07 18:24:38 +00003937 double
cristyb2e6b992011-12-17 16:42:29 +00003938 fill_alpha,
3939 stroke_alpha;
cristy3ed852e2009-09-05 21:47:34 +00003940
cristy101ab702011-10-13 13:06:32 +00003941 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00003942 fill_color,
3943 stroke_color;
3944
cristy4c08aed2011-07-01 19:47:50 +00003945 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00003946 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003947
cristy826a5472010-08-31 23:21:38 +00003948 register ssize_t
3949 x;
3950
cristy564a5692012-01-20 23:56:26 +00003951 ssize_t
3952 start,
3953 stop;
3954
cristy3ed852e2009-09-05 21:47:34 +00003955 if (status == MagickFalse)
3956 continue;
cristy564a5692012-01-20 23:56:26 +00003957 start=(ssize_t) ceil(bounds.x1-0.5);
cristy8071c472012-09-24 12:41:06 +00003958 stop=(ssize_t) floor(bounds.x2+0.5);
cristyb2e6b992011-12-17 16:42:29 +00003959 q=GetCacheViewAuthenticPixels(image_view,start,y,(size_t) (stop-start+1),1,
3960 exception);
cristy4c08aed2011-07-01 19:47:50 +00003961 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003962 {
3963 status=MagickFalse;
3964 continue;
3965 }
cristy3ed852e2009-09-05 21:47:34 +00003966 for (x=start; x <= stop; x++)
3967 {
3968 /*
3969 Fill and/or stroke.
3970 */
cristyb2e6b992011-12-17 16:42:29 +00003971 fill_alpha=GetFillAlpha(polygon_info[id],mid,fill,draw_info->fill_rule,
cristye4e47ae2012-09-04 23:36:43 +00003972 x,y,&stroke_alpha);
cristy3ed852e2009-09-05 21:47:34 +00003973 if (draw_info->stroke_antialias == MagickFalse)
3974 {
cristyb2e6b992011-12-17 16:42:29 +00003975 fill_alpha=fill_alpha > 0.25 ? 1.0 : 0.0;
3976 stroke_alpha=stroke_alpha > 0.25 ? 1.0 : 0.0;
cristy3ed852e2009-09-05 21:47:34 +00003977 }
cristy2ed42f62011-10-02 19:49:57 +00003978 (void) GetFillColor(draw_info,x,y,&fill_color,exception);
cristyb2e6b992011-12-17 16:42:29 +00003979 fill_alpha=fill_alpha*fill_color.alpha;
cristya19f1d72012-08-07 18:24:38 +00003980 CompositePixelOver(image,&fill_color,fill_alpha,q,(double)
cristy4c08aed2011-07-01 19:47:50 +00003981 GetPixelAlpha(image,q),q);
cristy2ed42f62011-10-02 19:49:57 +00003982 (void) GetStrokeColor(draw_info,x,y,&stroke_color,exception);
cristyb2e6b992011-12-17 16:42:29 +00003983 stroke_alpha=stroke_alpha*stroke_color.alpha;
cristya19f1d72012-08-07 18:24:38 +00003984 CompositePixelOver(image,&stroke_color,stroke_alpha,q,(double)
cristy4c08aed2011-07-01 19:47:50 +00003985 GetPixelAlpha(image,q),q);
cristyed231572011-07-14 02:18:59 +00003986 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00003987 }
3988 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3989 status=MagickFalse;
3990 }
3991 image_view=DestroyCacheView(image_view);
3992 polygon_info=DestroyPolygonThreadSet(polygon_info);
3993 if (image->debug != MagickFalse)
3994 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end draw-polygon");
3995 return(status);
3996}
3997
3998/*
3999%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4000% %
4001% %
4002% %
4003% D r a w P r i m i t i v e %
4004% %
4005% %
4006% %
4007%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4008%
4009% DrawPrimitive() draws a primitive (line, rectangle, ellipse) on the image.
4010%
4011% The format of the DrawPrimitive method is:
4012%
4013% MagickBooleanType DrawPrimitive(Image *image,const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00004014% PrimitiveInfo *primitive_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004015%
4016% A description of each parameter follows:
4017%
4018% o image: the image.
4019%
4020% o draw_info: the draw info.
4021%
4022% o primitive_info: Specifies a pointer to a PrimitiveInfo structure.
4023%
cristy947cb4c2011-10-20 18:41:46 +00004024% o exception: return any errors or warnings in this structure.
4025%
cristy3ed852e2009-09-05 21:47:34 +00004026*/
4027
4028static void LogPrimitiveInfo(const PrimitiveInfo *primitive_info)
4029{
4030 const char
4031 *methods[] =
4032 {
4033 "point",
4034 "replace",
4035 "floodfill",
4036 "filltoborder",
4037 "reset",
4038 "?"
4039 };
4040
cristy3ed852e2009-09-05 21:47:34 +00004041 PointInfo
4042 p,
4043 q,
4044 point;
4045
cristybb503372010-05-27 20:51:26 +00004046 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004047 i,
4048 x;
4049
cristy826a5472010-08-31 23:21:38 +00004050 ssize_t
4051 coordinates,
4052 y;
4053
cristybb503372010-05-27 20:51:26 +00004054 x=(ssize_t) ceil(primitive_info->point.x-0.5);
4055 y=(ssize_t) ceil(primitive_info->point.y-0.5);
cristy3ed852e2009-09-05 21:47:34 +00004056 switch (primitive_info->primitive)
4057 {
dirk34e1a212015-03-22 16:45:12 +00004058 case AlphaPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00004059 {
4060 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
dirk34e1a212015-03-22 16:45:12 +00004061 "AlphaPrimitive %.20g,%.20g %s",(double) x,(double) y,
cristyf2faecf2010-05-28 19:19:36 +00004062 methods[primitive_info->method]);
cristy3ed852e2009-09-05 21:47:34 +00004063 return;
4064 }
4065 case ColorPrimitive:
4066 {
4067 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristye8c25f92010-06-03 00:53:06 +00004068 "ColorPrimitive %.20g,%.20g %s",(double) x,(double) y,
cristyf2faecf2010-05-28 19:19:36 +00004069 methods[primitive_info->method]);
cristy3ed852e2009-09-05 21:47:34 +00004070 return;
4071 }
dirk34e1a212015-03-22 16:45:12 +00004072 case ImagePrimitive:
cristy3ed852e2009-09-05 21:47:34 +00004073 {
4074 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
dirk34e1a212015-03-22 16:45:12 +00004075 "ImagePrimitive %.20g,%.20g",(double) x,(double) y);
4076 return;
4077 }
4078 case PointPrimitive:
4079 {
4080 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4081 "PointPrimitive %.20g,%.20g %s",(double) x,(double) y,
cristyf2faecf2010-05-28 19:19:36 +00004082 methods[primitive_info->method]);
cristy3ed852e2009-09-05 21:47:34 +00004083 return;
4084 }
4085 case TextPrimitive:
4086 {
4087 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristye8c25f92010-06-03 00:53:06 +00004088 "TextPrimitive %.20g,%.20g",(double) x,(double) y);
cristy3ed852e2009-09-05 21:47:34 +00004089 return;
4090 }
cristy3ed852e2009-09-05 21:47:34 +00004091 default:
4092 break;
4093 }
4094 coordinates=0;
4095 p=primitive_info[0].point;
4096 q.x=(-1.0);
4097 q.y=(-1.0);
4098 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++)
4099 {
4100 point=primitive_info[i].point;
4101 if (coordinates <= 0)
4102 {
cristybb503372010-05-27 20:51:26 +00004103 coordinates=(ssize_t) primitive_info[i].coordinates;
cristy3ed852e2009-09-05 21:47:34 +00004104 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristye8c25f92010-06-03 00:53:06 +00004105 " begin open (%.20g)",(double) coordinates);
cristy3ed852e2009-09-05 21:47:34 +00004106 p=point;
4107 }
4108 point=primitive_info[i].point;
cristy53aed702012-07-08 00:21:25 +00004109 if ((fabs(q.x-point.x) >= MagickEpsilon) ||
4110 (fabs(q.y-point.y) >= MagickEpsilon))
cristy8cd5b312010-01-07 01:10:24 +00004111 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristye8c25f92010-06-03 00:53:06 +00004112 " %.20g: %.18g,%.18g",(double) coordinates,point.x,point.y);
cristy3ed852e2009-09-05 21:47:34 +00004113 else
4114 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristy14388de2011-05-15 14:57:16 +00004115 " %.20g: %g %g (duplicate)",(double) coordinates,point.x,point.y);
cristy3ed852e2009-09-05 21:47:34 +00004116 q=point;
4117 coordinates--;
4118 if (coordinates > 0)
4119 continue;
cristy53aed702012-07-08 00:21:25 +00004120 if ((fabs(p.x-point.x) >= MagickEpsilon) ||
4121 (fabs(p.y-point.y) >= MagickEpsilon))
cristye8c25f92010-06-03 00:53:06 +00004122 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end last (%.20g)",
4123 (double) coordinates);
cristy3ed852e2009-09-05 21:47:34 +00004124 else
cristye8c25f92010-06-03 00:53:06 +00004125 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end open (%.20g)",
4126 (double) coordinates);
cristy3ed852e2009-09-05 21:47:34 +00004127 }
4128}
4129
4130MagickExport MagickBooleanType DrawPrimitive(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00004131 const DrawInfo *draw_info,const PrimitiveInfo *primitive_info,
4132 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004133{
cristyc4c8d132010-01-07 01:58:38 +00004134 CacheView
4135 *image_view;
4136
cristy3ed852e2009-09-05 21:47:34 +00004137 MagickStatusType
4138 status;
4139
cristybb503372010-05-27 20:51:26 +00004140 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004141 i,
4142 x;
4143
cristy826a5472010-08-31 23:21:38 +00004144 ssize_t
4145 y;
4146
cristy3ed852e2009-09-05 21:47:34 +00004147 if (image->debug != MagickFalse)
4148 {
4149 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4150 " begin draw-primitive");
4151 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristy14388de2011-05-15 14:57:16 +00004152 " affine: %g %g %g %g %g %g",draw_info->affine.sx,
cristy3ed852e2009-09-05 21:47:34 +00004153 draw_info->affine.rx,draw_info->affine.ry,draw_info->affine.sy,
4154 draw_info->affine.tx,draw_info->affine.ty);
4155 }
cristya6400b12013-03-15 12:20:18 +00004156 if ((IsGrayColorspace(image->colorspace) != MagickFalse) &&
cristy4dab3802013-03-15 22:08:15 +00004157 ((IsPixelInfoGray(&draw_info->fill) == MagickFalse) ||
4158 (IsPixelInfoGray(&draw_info->stroke) == MagickFalse)))
cristy0c81d062013-04-21 15:22:02 +00004159 (void) SetImageColorspace(image,sRGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +00004160 status=MagickTrue;
cristybb503372010-05-27 20:51:26 +00004161 x=(ssize_t) ceil(primitive_info->point.x-0.5);
4162 y=(ssize_t) ceil(primitive_info->point.y-0.5);
cristy46ff2672012-12-14 15:32:26 +00004163 image_view=AcquireAuthenticCacheView(image,exception);
cristy3ed852e2009-09-05 21:47:34 +00004164 switch (primitive_info->primitive)
4165 {
dirk34e1a212015-03-22 16:45:12 +00004166 case AlphaPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00004167 {
cristy17f11b02014-12-20 19:37:04 +00004168 if (image->alpha_trait == UndefinedPixelTrait)
cristy63240882011-08-05 19:05:27 +00004169 (void) SetImageAlphaChannel(image,OpaqueAlphaChannel,exception);
cristy3ed852e2009-09-05 21:47:34 +00004170 switch (primitive_info->method)
4171 {
4172 case PointMethod:
4173 default:
4174 {
cristy101ab702011-10-13 13:06:32 +00004175 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004176 pixel;
4177
cristy4c08aed2011-07-01 19:47:50 +00004178 register Quantum
cristy3ed852e2009-09-05 21:47:34 +00004179 *q;
4180
4181 q=GetCacheViewAuthenticPixels(image_view,x,y,1,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00004182 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004183 break;
cristy2ed42f62011-10-02 19:49:57 +00004184 (void) GetFillColor(draw_info,x,y,&pixel,exception);
cristyda1f9c12011-10-02 21:39:49 +00004185 SetPixelAlpha(image,ClampToQuantum(pixel.alpha),q);
cristy3ed852e2009-09-05 21:47:34 +00004186 (void) SyncCacheViewAuthenticPixels(image_view,exception);
4187 break;
4188 }
4189 case ReplaceMethod:
4190 {
4191 MagickBooleanType
4192 sync;
4193
cristy101ab702011-10-13 13:06:32 +00004194 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004195 pixel,
4196 target;
4197
cristyf05d4942012-03-17 16:26:09 +00004198 (void) GetOneCacheViewVirtualPixelInfo(image_view,x,y,&target,
cristy2ed42f62011-10-02 19:49:57 +00004199 exception);
cristyf2a82ee2014-05-26 17:49:54 +00004200 GetPixelInfo(image,&pixel);
cristybb503372010-05-27 20:51:26 +00004201 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00004202 {
cristy4c08aed2011-07-01 19:47:50 +00004203 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00004204 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004205
cristy826a5472010-08-31 23:21:38 +00004206 register ssize_t
4207 x;
4208
cristy3ed852e2009-09-05 21:47:34 +00004209 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
4210 exception);
cristy4c08aed2011-07-01 19:47:50 +00004211 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004212 break;
cristybb503372010-05-27 20:51:26 +00004213 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00004214 {
cristy101ab702011-10-13 13:06:32 +00004215 GetPixelInfoPixel(image,q,&pixel);
4216 if (IsFuzzyEquivalencePixelInfo(&pixel,&target) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00004217 {
cristyed231572011-07-14 02:18:59 +00004218 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004219 continue;
4220 }
cristy2ed42f62011-10-02 19:49:57 +00004221 (void) GetFillColor(draw_info,x,y,&pixel,exception);
cristyda1f9c12011-10-02 21:39:49 +00004222 SetPixelAlpha(image,ClampToQuantum(pixel.alpha),q);
cristyed231572011-07-14 02:18:59 +00004223 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004224 }
4225 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4226 if (sync == MagickFalse)
4227 break;
4228 }
4229 break;
4230 }
4231 case FloodfillMethod:
4232 case FillToBorderMethod:
4233 {
cristybd5a96c2011-08-21 00:04:26 +00004234 ChannelType
4235 channel_mask;
4236
cristy4c08aed2011-07-01 19:47:50 +00004237 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004238 target;
4239
cristy3aa93752011-12-18 15:54:24 +00004240 (void) GetOneVirtualPixelInfo(image,TileVirtualPixelMethod,x,y,
cristy52010022011-10-21 18:07:37 +00004241 &target,exception);
cristy3ed852e2009-09-05 21:47:34 +00004242 if (primitive_info->method == FillToBorderMethod)
4243 {
cristya19f1d72012-08-07 18:24:38 +00004244 target.red=(double) draw_info->border_color.red;
4245 target.green=(double) draw_info->border_color.green;
4246 target.blue=(double) draw_info->border_color.blue;
cristy3ed852e2009-09-05 21:47:34 +00004247 }
cristycf1296e2012-08-26 23:40:49 +00004248 channel_mask=SetImageChannelMask(image,AlphaChannel);
cristy8a77f142013-08-14 12:44:38 +00004249 status&=FloodfillPaintImage(image,draw_info,&target,x,y,
cristy3ed852e2009-09-05 21:47:34 +00004250 primitive_info->method == FloodfillMethod ? MagickFalse :
cristy189e84c2011-08-27 18:08:53 +00004251 MagickTrue,exception);
cristycf1296e2012-08-26 23:40:49 +00004252 (void) SetImageChannelMask(image,channel_mask);
cristy3ed852e2009-09-05 21:47:34 +00004253 break;
4254 }
4255 case ResetMethod:
4256 {
4257 MagickBooleanType
4258 sync;
4259
cristy101ab702011-10-13 13:06:32 +00004260 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004261 pixel;
4262
cristybb503372010-05-27 20:51:26 +00004263 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00004264 {
cristy4c08aed2011-07-01 19:47:50 +00004265 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00004266 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004267
cristy826a5472010-08-31 23:21:38 +00004268 register ssize_t
4269 x;
4270
cristy3ed852e2009-09-05 21:47:34 +00004271 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
4272 exception);
cristy4c08aed2011-07-01 19:47:50 +00004273 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004274 break;
cristybb503372010-05-27 20:51:26 +00004275 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00004276 {
cristy2ed42f62011-10-02 19:49:57 +00004277 (void) GetFillColor(draw_info,x,y,&pixel,exception);
cristyda1f9c12011-10-02 21:39:49 +00004278 SetPixelAlpha(image,ClampToQuantum(pixel.alpha),q);
cristyed231572011-07-14 02:18:59 +00004279 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004280 }
4281 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4282 if (sync == MagickFalse)
4283 break;
4284 }
4285 break;
4286 }
4287 }
4288 break;
4289 }
dirk34e1a212015-03-22 16:45:12 +00004290 case ColorPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00004291 {
dirk34e1a212015-03-22 16:45:12 +00004292 switch (primitive_info->method)
4293 {
4294 case PointMethod:
4295 default:
4296 {
4297 PixelInfo
4298 pixel;
cristy3ed852e2009-09-05 21:47:34 +00004299
dirk34e1a212015-03-22 16:45:12 +00004300 register Quantum
4301 *q;
cristy3ed852e2009-09-05 21:47:34 +00004302
dirk34e1a212015-03-22 16:45:12 +00004303 q=GetCacheViewAuthenticPixels(image_view,x,y,1,1,exception);
4304 if (q == (Quantum *) NULL)
4305 break;
4306 GetPixelInfo(image,&pixel);
4307 (void) GetFillColor(draw_info,x,y,&pixel,exception);
4308 SetPixelViaPixelInfo(image,&pixel,q);
4309 (void) SyncCacheViewAuthenticPixels(image_view,exception);
4310 break;
4311 }
4312 case ReplaceMethod:
4313 {
4314 MagickBooleanType
4315 sync;
4316
4317 PixelInfo
4318 pixel,
4319 target;
4320
4321 (void) GetOneCacheViewVirtualPixelInfo(image_view,x,y,&target,
4322 exception);
4323 for (y=0; y < (ssize_t) image->rows; y++)
4324 {
4325 register Quantum
4326 *restrict q;
4327
4328 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
4329 exception);
4330 if (q == (Quantum *) NULL)
4331 break;
4332 for (x=0; x < (ssize_t) image->columns; x++)
4333 {
4334 GetPixelInfoPixel(image,q,&pixel);
4335 if (IsFuzzyEquivalencePixelInfo(&pixel,&target) == MagickFalse)
4336 {
4337 q+=GetPixelChannels(image);
4338 continue;
4339 }
4340 (void) GetFillColor(draw_info,x,y,&pixel,exception);
4341 SetPixelViaPixelInfo(image,&pixel,q);
4342 q+=GetPixelChannels(image);
4343 }
4344 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4345 if (sync == MagickFalse)
4346 break;
4347 }
4348 break;
4349 }
4350 case FloodfillMethod:
4351 case FillToBorderMethod:
4352 {
4353 PixelInfo
4354 target;
4355
4356 (void) GetOneVirtualPixelInfo(image,TileVirtualPixelMethod,x,y,
4357 &target,exception);
4358 if (primitive_info->method == FillToBorderMethod)
4359 {
4360 target.red=(double) draw_info->border_color.red;
4361 target.green=(double) draw_info->border_color.green;
4362 target.blue=(double) draw_info->border_color.blue;
4363 }
4364 status&=FloodfillPaintImage(image,draw_info,&target,x,y,
4365 primitive_info->method == FloodfillMethod ? MagickFalse :
4366 MagickTrue,exception);
4367 break;
4368 }
4369 case ResetMethod:
4370 {
4371 MagickBooleanType
4372 sync;
4373
4374 PixelInfo
4375 pixel;
4376
4377 GetPixelInfo(image,&pixel);
4378 for (y=0; y < (ssize_t) image->rows; y++)
4379 {
4380 register Quantum
4381 *restrict q;
4382
4383 register ssize_t
4384 x;
4385
4386 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
4387 exception);
4388 if (q == (Quantum *) NULL)
4389 break;
4390 for (x=0; x < (ssize_t) image->columns; x++)
4391 {
4392 (void) GetFillColor(draw_info,x,y,&pixel,exception);
4393 SetPixelViaPixelInfo(image,&pixel,q);
4394 q+=GetPixelChannels(image);
4395 }
4396 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4397 if (sync == MagickFalse)
4398 break;
4399 }
4400 break;
4401 }
4402 }
cristy3ed852e2009-09-05 21:47:34 +00004403 break;
4404 }
4405 case ImagePrimitive:
4406 {
4407 AffineMatrix
4408 affine;
4409
4410 char
4411 composite_geometry[MaxTextExtent];
4412
4413 Image
4414 *composite_image;
4415
4416 ImageInfo
4417 *clone_info;
4418
cristy826a5472010-08-31 23:21:38 +00004419 RectangleInfo
4420 geometry;
4421
cristybb503372010-05-27 20:51:26 +00004422 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004423 x1,
4424 y1;
4425
cristy3ed852e2009-09-05 21:47:34 +00004426 if (primitive_info->text == (char *) NULL)
4427 break;
4428 clone_info=AcquireImageInfo();
4429 if (LocaleNCompare(primitive_info->text,"data:",5) == 0)
4430 composite_image=ReadInlineImage(clone_info,primitive_info->text,
cristy947cb4c2011-10-20 18:41:46 +00004431 exception);
cristy3ed852e2009-09-05 21:47:34 +00004432 else
4433 {
4434 (void) CopyMagickString(clone_info->filename,primitive_info->text,
4435 MaxTextExtent);
cristy947cb4c2011-10-20 18:41:46 +00004436 composite_image=ReadImage(clone_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00004437 }
4438 clone_info=DestroyImageInfo(clone_info);
4439 if (composite_image == (Image *) NULL)
4440 break;
4441 (void) SetImageProgressMonitor(composite_image,(MagickProgressMonitor)
4442 NULL,(void *) NULL);
cristybb503372010-05-27 20:51:26 +00004443 x1=(ssize_t) ceil(primitive_info[1].point.x-0.5);
4444 y1=(ssize_t) ceil(primitive_info[1].point.y-0.5);
4445 if (((x1 != 0L) && (x1 != (ssize_t) composite_image->columns)) ||
4446 ((y1 != 0L) && (y1 != (ssize_t) composite_image->rows)))
cristy3ed852e2009-09-05 21:47:34 +00004447 {
4448 char
4449 geometry[MaxTextExtent];
4450
4451 /*
4452 Resize image.
4453 */
cristyb51dff52011-05-19 16:55:47 +00004454 (void) FormatLocaleString(geometry,MaxTextExtent,"%gx%g!",
cristy3ed852e2009-09-05 21:47:34 +00004455 primitive_info[1].point.x,primitive_info[1].point.y);
4456 composite_image->filter=image->filter;
cristye941a752011-10-15 01:52:48 +00004457 (void) TransformImage(&composite_image,(char *) NULL,geometry,
4458 exception);
cristy3ed852e2009-09-05 21:47:34 +00004459 }
cristy17f11b02014-12-20 19:37:04 +00004460 if (composite_image->alpha_trait == UndefinedPixelTrait)
cristy63240882011-08-05 19:05:27 +00004461 (void) SetImageAlphaChannel(composite_image,OpaqueAlphaChannel,
4462 exception);
cristy4c08aed2011-07-01 19:47:50 +00004463 if (draw_info->alpha != OpaqueAlpha)
cristye941a752011-10-15 01:52:48 +00004464 (void) SetImageAlpha(composite_image,draw_info->alpha,exception);
cristy3ed852e2009-09-05 21:47:34 +00004465 SetGeometry(image,&geometry);
4466 image->gravity=draw_info->gravity;
4467 geometry.x=x;
4468 geometry.y=y;
cristyb51dff52011-05-19 16:55:47 +00004469 (void) FormatLocaleString(composite_geometry,MaxTextExtent,
cristy6d8abba2010-06-03 01:10:47 +00004470 "%.20gx%.20g%+.20g%+.20g",(double) composite_image->columns,(double)
cristye8c25f92010-06-03 00:53:06 +00004471 composite_image->rows,(double) geometry.x,(double) geometry.y);
cristy947cb4c2011-10-20 18:41:46 +00004472 (void) ParseGravityGeometry(image,composite_geometry,&geometry,exception);
cristy3ed852e2009-09-05 21:47:34 +00004473 affine=draw_info->affine;
4474 affine.tx=(double) geometry.x;
4475 affine.ty=(double) geometry.y;
4476 composite_image->interpolate=image->interpolate;
cristyd5f3fc32011-04-26 14:44:36 +00004477 if (draw_info->compose == OverCompositeOp)
cristy947cb4c2011-10-20 18:41:46 +00004478 (void) DrawAffineImage(image,composite_image,&affine,exception);
cristyd5f3fc32011-04-26 14:44:36 +00004479 else
cristyfeb3e962012-03-29 17:25:55 +00004480 (void) CompositeImage(image,composite_image,draw_info->compose,
cristy39172402012-03-30 13:04:39 +00004481 MagickTrue,geometry.x,geometry.y,exception);
cristy3ed852e2009-09-05 21:47:34 +00004482 composite_image=DestroyImage(composite_image);
4483 break;
4484 }
dirk34e1a212015-03-22 16:45:12 +00004485 case PointPrimitive:
4486 {
4487 PixelInfo
4488 fill_color;
4489
4490 register Quantum
4491 *q;
4492
4493 if ((y < 0) || (y >= (ssize_t) image->rows))
4494 break;
4495 if ((x < 0) || (x >= (ssize_t) image->columns))
4496 break;
4497 q=GetCacheViewAuthenticPixels(image_view,x,y,1,1,exception);
4498 if (q == (Quantum *) NULL)
4499 break;
4500 (void) GetFillColor(draw_info,x,y,&fill_color,exception);
4501 CompositePixelOver(image,&fill_color,(double) fill_color.alpha,q,
4502 (double) GetPixelAlpha(image,q),q);
4503 (void) SyncCacheViewAuthenticPixels(image_view,exception);
4504 break;
4505 }
4506 case TextPrimitive:
4507 {
4508 char
4509 geometry[MaxTextExtent];
4510
4511 DrawInfo
4512 *clone_info;
4513
4514 if (primitive_info->text == (char *) NULL)
4515 break;
4516 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
4517 (void) CloneString(&clone_info->text,primitive_info->text);
4518 (void) FormatLocaleString(geometry,MaxTextExtent,"%+f%+f",
4519 primitive_info->point.x,primitive_info->point.y);
4520 (void) CloneString(&clone_info->geometry,geometry);
4521 status&=AnnotateImage(image,clone_info,exception);
4522 clone_info=DestroyDrawInfo(clone_info);
4523 break;
4524 }
cristy3ed852e2009-09-05 21:47:34 +00004525 default:
4526 {
cristya19f1d72012-08-07 18:24:38 +00004527 double
cristy3ed852e2009-09-05 21:47:34 +00004528 mid,
4529 scale;
4530
4531 DrawInfo
4532 *clone_info;
4533
4534 if (IsEventLogging() != MagickFalse)
4535 LogPrimitiveInfo(primitive_info);
4536 scale=ExpandAffine(&draw_info->affine);
4537 if ((draw_info->dash_pattern != (double *) NULL) &&
4538 (draw_info->dash_pattern[0] != 0.0) &&
cristy53aed702012-07-08 00:21:25 +00004539 ((scale*draw_info->stroke_width) >= MagickEpsilon) &&
cristy4c08aed2011-07-01 19:47:50 +00004540 (draw_info->stroke.alpha != (Quantum) TransparentAlpha))
cristy3ed852e2009-09-05 21:47:34 +00004541 {
4542 /*
4543 Draw dash polygon.
4544 */
4545 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
4546 clone_info->stroke_width=0.0;
cristy4c08aed2011-07-01 19:47:50 +00004547 clone_info->stroke.alpha=(Quantum) TransparentAlpha;
cristy8a77f142013-08-14 12:44:38 +00004548 status&=DrawPolygonPrimitive(image,clone_info,primitive_info,
cristy947cb4c2011-10-20 18:41:46 +00004549 exception);
cristy3ed852e2009-09-05 21:47:34 +00004550 clone_info=DestroyDrawInfo(clone_info);
cristy947cb4c2011-10-20 18:41:46 +00004551 (void) DrawDashPolygon(draw_info,primitive_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00004552 break;
4553 }
4554 mid=ExpandAffine(&draw_info->affine)*draw_info->stroke_width/2.0;
4555 if ((mid > 1.0) &&
cristy4c08aed2011-07-01 19:47:50 +00004556 (draw_info->stroke.alpha != (Quantum) TransparentAlpha))
cristy3ed852e2009-09-05 21:47:34 +00004557 {
4558 MagickBooleanType
4559 closed_path;
4560
4561 /*
4562 Draw strokes while respecting line cap/join attributes.
4563 */
4564 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++) ;
4565 closed_path=
4566 (primitive_info[i-1].point.x == primitive_info[0].point.x) &&
4567 (primitive_info[i-1].point.y == primitive_info[0].point.y) ?
4568 MagickTrue : MagickFalse;
cristybb503372010-05-27 20:51:26 +00004569 i=(ssize_t) primitive_info[0].coordinates;
cristy3ed852e2009-09-05 21:47:34 +00004570 if ((((draw_info->linecap == RoundCap) ||
4571 (closed_path != MagickFalse)) &&
4572 (draw_info->linejoin == RoundJoin)) ||
4573 (primitive_info[i].primitive != UndefinedPrimitive))
4574 {
cristy947cb4c2011-10-20 18:41:46 +00004575 (void) DrawPolygonPrimitive(image,draw_info,primitive_info,
4576 exception);
cristy3ed852e2009-09-05 21:47:34 +00004577 break;
4578 }
4579 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
4580 clone_info->stroke_width=0.0;
cristy4c08aed2011-07-01 19:47:50 +00004581 clone_info->stroke.alpha=(Quantum) TransparentAlpha;
cristy8a77f142013-08-14 12:44:38 +00004582 status&=DrawPolygonPrimitive(image,clone_info,primitive_info,
cristy947cb4c2011-10-20 18:41:46 +00004583 exception);
cristy3ed852e2009-09-05 21:47:34 +00004584 clone_info=DestroyDrawInfo(clone_info);
cristy8a77f142013-08-14 12:44:38 +00004585 status&=DrawStrokePolygon(image,draw_info,primitive_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00004586 break;
4587 }
cristy8a77f142013-08-14 12:44:38 +00004588 status&=DrawPolygonPrimitive(image,draw_info,primitive_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00004589 break;
4590 }
4591 }
4592 image_view=DestroyCacheView(image_view);
4593 if (image->debug != MagickFalse)
4594 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end draw-primitive");
4595 return(status != 0 ? MagickTrue : MagickFalse);
4596}
4597
4598/*
4599%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4600% %
4601% %
4602% %
4603+ D r a w S t r o k e P o l y g o n %
4604% %
4605% %
4606% %
4607%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4608%
4609% DrawStrokePolygon() draws a stroked polygon (line, rectangle, ellipse) on
4610% the image while respecting the line cap and join attributes.
4611%
4612% The format of the DrawStrokePolygon method is:
4613%
4614% MagickBooleanType DrawStrokePolygon(Image *image,
4615% const DrawInfo *draw_info,const PrimitiveInfo *primitive_info)
4616%
4617% A description of each parameter follows:
4618%
4619% o image: the image.
4620%
4621% o draw_info: the draw info.
4622%
4623% o primitive_info: Specifies a pointer to a PrimitiveInfo structure.
4624%
4625%
4626*/
4627
4628static void DrawRoundLinecap(Image *image,const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00004629 const PrimitiveInfo *primitive_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004630{
4631 PrimitiveInfo
4632 linecap[5];
4633
cristybb503372010-05-27 20:51:26 +00004634 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004635 i;
4636
4637 for (i=0; i < 4; i++)
4638 linecap[i]=(*primitive_info);
4639 linecap[0].coordinates=4;
cristy53aed702012-07-08 00:21:25 +00004640 linecap[1].point.x+=(double) (10.0*MagickEpsilon);
4641 linecap[2].point.x+=(double) (10.0*MagickEpsilon);
4642 linecap[2].point.y+=(double) (10.0*MagickEpsilon);
4643 linecap[3].point.y+=(double) (10.0*MagickEpsilon);
cristy3ed852e2009-09-05 21:47:34 +00004644 linecap[4].primitive=UndefinedPrimitive;
cristy947cb4c2011-10-20 18:41:46 +00004645 (void) DrawPolygonPrimitive(image,draw_info,linecap,exception);
cristy3ed852e2009-09-05 21:47:34 +00004646}
4647
4648static MagickBooleanType DrawStrokePolygon(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00004649 const DrawInfo *draw_info,const PrimitiveInfo *primitive_info,
4650 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004651{
4652 DrawInfo
4653 *clone_info;
4654
4655 MagickBooleanType
cristy8a77f142013-08-14 12:44:38 +00004656 closed_path;
4657
4658 MagickStatusType
cristy3ed852e2009-09-05 21:47:34 +00004659 status;
4660
4661 PrimitiveInfo
4662 *stroke_polygon;
4663
4664 register const PrimitiveInfo
4665 *p,
4666 *q;
4667
4668 /*
4669 Draw stroked polygon.
4670 */
4671 if (image->debug != MagickFalse)
4672 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4673 " begin draw-stroke-polygon");
4674 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
4675 clone_info->fill=draw_info->stroke;
cristy2d2d5622012-01-19 19:11:29 +00004676 if (clone_info->fill_pattern != (Image *) NULL)
4677 clone_info->fill_pattern=DestroyImage(clone_info->fill_pattern);
cristy2195b752012-01-19 16:04:04 +00004678 if (clone_info->stroke_pattern != (Image *) NULL)
cristy2d2d5622012-01-19 19:11:29 +00004679 clone_info->fill_pattern=CloneImage(clone_info->stroke_pattern,0,0,
4680 MagickTrue,exception);
cristy4c08aed2011-07-01 19:47:50 +00004681 clone_info->stroke.alpha=(Quantum) TransparentAlpha;
cristy3ed852e2009-09-05 21:47:34 +00004682 clone_info->stroke_width=0.0;
4683 clone_info->fill_rule=NonZeroRule;
4684 status=MagickTrue;
4685 for (p=primitive_info; p->primitive != UndefinedPrimitive; p+=p->coordinates)
4686 {
4687 stroke_polygon=TraceStrokePolygon(draw_info,p);
cristy8a77f142013-08-14 12:44:38 +00004688 status&=DrawPolygonPrimitive(image,clone_info,stroke_polygon,exception);
4689 if (status == 0)
4690 break;
cristy3ed852e2009-09-05 21:47:34 +00004691 stroke_polygon=(PrimitiveInfo *) RelinquishMagickMemory(stroke_polygon);
4692 q=p+p->coordinates-1;
4693 closed_path=(q->point.x == p->point.x) && (q->point.y == p->point.y) ?
4694 MagickTrue : MagickFalse;
4695 if ((draw_info->linecap == RoundCap) && (closed_path == MagickFalse))
4696 {
cristy947cb4c2011-10-20 18:41:46 +00004697 DrawRoundLinecap(image,draw_info,p,exception);
4698 DrawRoundLinecap(image,draw_info,q,exception);
cristy3ed852e2009-09-05 21:47:34 +00004699 }
4700 }
4701 clone_info=DestroyDrawInfo(clone_info);
4702 if (image->debug != MagickFalse)
4703 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4704 " end draw-stroke-polygon");
cristy8a77f142013-08-14 12:44:38 +00004705 return(status != 0 ? MagickTrue : MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +00004706}
4707
4708/*
4709%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4710% %
4711% %
4712% %
4713% G e t A f f i n e M a t r i x %
4714% %
4715% %
4716% %
4717%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4718%
4719% GetAffineMatrix() returns an AffineMatrix initialized to the identity
4720% matrix.
4721%
4722% The format of the GetAffineMatrix method is:
4723%
4724% void GetAffineMatrix(AffineMatrix *affine_matrix)
4725%
4726% A description of each parameter follows:
4727%
4728% o affine_matrix: the affine matrix.
4729%
4730*/
4731MagickExport void GetAffineMatrix(AffineMatrix *affine_matrix)
4732{
4733 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
4734 assert(affine_matrix != (AffineMatrix *) NULL);
4735 (void) ResetMagickMemory(affine_matrix,0,sizeof(*affine_matrix));
4736 affine_matrix->sx=1.0;
4737 affine_matrix->sy=1.0;
4738}
4739
4740/*
4741%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4742% %
4743% %
4744% %
4745+ G e t D r a w I n f o %
4746% %
4747% %
4748% %
4749%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4750%
anthony9c88e8f2011-09-29 11:31:53 +00004751% GetDrawInfo() initializes draw_info to default values from image_info.
cristy3ed852e2009-09-05 21:47:34 +00004752%
4753% The format of the GetDrawInfo method is:
4754%
4755% void GetDrawInfo(const ImageInfo *image_info,DrawInfo *draw_info)
4756%
4757% A description of each parameter follows:
4758%
4759% o image_info: the image info..
4760%
4761% o draw_info: the draw info.
4762%
4763*/
4764MagickExport void GetDrawInfo(const ImageInfo *image_info,DrawInfo *draw_info)
4765{
4766 const char
4767 *option;
4768
4769 ExceptionInfo
4770 *exception;
4771
cristy3ed852e2009-09-05 21:47:34 +00004772 /*
4773 Initialize draw attributes.
4774 */
4775 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
4776 assert(draw_info != (DrawInfo *) NULL);
4777 (void) ResetMagickMemory(draw_info,0,sizeof(*draw_info));
cristy3ed852e2009-09-05 21:47:34 +00004778 GetAffineMatrix(&draw_info->affine);
4779 exception=AcquireExceptionInfo();
cristyfad60c92012-01-19 18:32:39 +00004780 (void) QueryColorCompliance("#000F",AllCompliance,&draw_info->fill,
cristy9950d572011-10-01 18:22:35 +00004781 exception);
cristy86c364d2014-08-27 23:37:32 +00004782 (void) QueryColorCompliance("#0000",AllCompliance,&draw_info->stroke,
cristy9950d572011-10-01 18:22:35 +00004783 exception);
cristy3ed852e2009-09-05 21:47:34 +00004784 draw_info->stroke_width=1.0;
cristy4c08aed2011-07-01 19:47:50 +00004785 draw_info->alpha=OpaqueAlpha;
cristy3ed852e2009-09-05 21:47:34 +00004786 draw_info->fill_rule=EvenOddRule;
4787 draw_info->linecap=ButtCap;
4788 draw_info->linejoin=MiterJoin;
4789 draw_info->miterlimit=10;
4790 draw_info->decorate=NoDecoration;
cristy3ed852e2009-09-05 21:47:34 +00004791 draw_info->pointsize=12.0;
cristy4c08aed2011-07-01 19:47:50 +00004792 draw_info->undercolor.alpha=(Quantum) TransparentAlpha;
cristy3ed852e2009-09-05 21:47:34 +00004793 draw_info->compose=OverCompositeOp;
cristy3ed852e2009-09-05 21:47:34 +00004794 draw_info->render=MagickTrue;
4795 draw_info->debug=IsEventLogging();
cristy0245b5d2011-10-05 12:03:49 +00004796 if (image_info != (ImageInfo *) NULL)
4797 {
4798 draw_info->stroke_antialias=image_info->antialias;
4799 if (image_info->font != (char *) NULL)
4800 draw_info->font=AcquireString(image_info->font);
4801 if (image_info->density != (char *) NULL)
4802 draw_info->density=AcquireString(image_info->density);
4803 draw_info->text_antialias=image_info->antialias;
4804 if (image_info->pointsize != 0.0)
4805 draw_info->pointsize=image_info->pointsize;
4806 draw_info->border_color=image_info->border_color;
4807 if (image_info->server_name != (char *) NULL)
4808 draw_info->server_name=AcquireString(image_info->server_name);
4809 option=GetImageOption(image_info,"encoding");
4810 if (option != (const char *) NULL)
4811 (void) CloneString(&draw_info->encoding,option);
4812 option=GetImageOption(image_info,"kerning");
4813 if (option != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00004814 draw_info->kerning=StringToDouble(option,(char **) NULL);
cristy0245b5d2011-10-05 12:03:49 +00004815 option=GetImageOption(image_info,"interline-spacing");
4816 if (option != (const char *) NULL)
cristy9b34e302011-11-05 02:15:45 +00004817 draw_info->interline_spacing=StringToDouble(option,(char **) NULL);
cristy0245b5d2011-10-05 12:03:49 +00004818 option=GetImageOption(image_info,"interword-spacing");
4819 if (option != (const char *) NULL)
cristy9b34e302011-11-05 02:15:45 +00004820 draw_info->interword_spacing=StringToDouble(option,(char **) NULL);
cristy0245b5d2011-10-05 12:03:49 +00004821 option=GetImageOption(image_info,"direction");
4822 if (option != (const char *) NULL)
4823 draw_info->direction=(DirectionType) ParseCommandOption(
4824 MagickDirectionOptions,MagickFalse,option);
anthony42f6c202011-10-23 10:28:55 +00004825 else
4826 draw_info->direction=UndefinedDirection;
cristy0245b5d2011-10-05 12:03:49 +00004827 option=GetImageOption(image_info,"fill");
4828 if (option != (const char *) NULL)
4829 (void) QueryColorCompliance(option,AllCompliance,&draw_info->fill,
4830 exception);
4831 option=GetImageOption(image_info,"stroke");
4832 if (option != (const char *) NULL)
4833 (void) QueryColorCompliance(option,AllCompliance,&draw_info->stroke,
4834 exception);
4835 option=GetImageOption(image_info,"strokewidth");
4836 if (option != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00004837 draw_info->stroke_width=StringToDouble(option,(char **) NULL);
cristy0245b5d2011-10-05 12:03:49 +00004838 option=GetImageOption(image_info,"undercolor");
4839 if (option != (const char *) NULL)
4840 (void) QueryColorCompliance(option,AllCompliance,&draw_info->undercolor,
4841 exception);
4842 option=GetImageOption(image_info,"gravity");
4843 if (option != (const char *) NULL)
4844 draw_info->gravity=(GravityType) ParseCommandOption(
4845 MagickGravityOptions,MagickFalse,option);
4846 }
cristy3ed852e2009-09-05 21:47:34 +00004847 exception=DestroyExceptionInfo(exception);
4848 draw_info->signature=MagickSignature;
cristy3ed852e2009-09-05 21:47:34 +00004849}
4850
4851/*
4852%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4853% %
4854% %
4855% %
4856+ P e r m u t a t e %
4857% %
4858% %
4859% %
4860%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4861%
4862% Permutate() returns the permuation of the (n,k).
4863%
4864% The format of the Permutate method is:
4865%
cristybb503372010-05-27 20:51:26 +00004866% void Permutate(ssize_t n,ssize_t k)
cristy3ed852e2009-09-05 21:47:34 +00004867%
4868% A description of each parameter follows:
4869%
4870% o n:
4871%
4872% o k:
4873%
4874%
4875*/
cristya19f1d72012-08-07 18:24:38 +00004876static inline double Permutate(const ssize_t n,const ssize_t k)
cristy3ed852e2009-09-05 21:47:34 +00004877{
cristya19f1d72012-08-07 18:24:38 +00004878 double
cristy3ed852e2009-09-05 21:47:34 +00004879 r;
4880
cristybb503372010-05-27 20:51:26 +00004881 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004882 i;
4883
4884 r=1.0;
4885 for (i=k+1; i <= n; i++)
4886 r*=i;
4887 for (i=1; i <= (n-k); i++)
4888 r/=i;
4889 return(r);
4890}
4891
4892/*
4893%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4894% %
4895% %
4896% %
4897+ T r a c e P r i m i t i v e %
4898% %
4899% %
4900% %
4901%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4902%
4903% TracePrimitive is a collection of methods for generating graphic
4904% primitives such as arcs, ellipses, paths, etc.
4905%
4906*/
4907
4908static void TraceArc(PrimitiveInfo *primitive_info,const PointInfo start,
4909 const PointInfo end,const PointInfo degrees)
4910{
4911 PointInfo
4912 center,
4913 radii;
4914
4915 center.x=0.5*(end.x+start.x);
4916 center.y=0.5*(end.y+start.y);
4917 radii.x=fabs(center.x-start.x);
4918 radii.y=fabs(center.y-start.y);
4919 TraceEllipse(primitive_info,center,radii,degrees);
4920}
4921
4922static void TraceArcPath(PrimitiveInfo *primitive_info,const PointInfo start,
cristya19f1d72012-08-07 18:24:38 +00004923 const PointInfo end,const PointInfo arc,const double angle,
cristy3ed852e2009-09-05 21:47:34 +00004924 const MagickBooleanType large_arc,const MagickBooleanType sweep)
4925{
cristya19f1d72012-08-07 18:24:38 +00004926 double
cristy3ed852e2009-09-05 21:47:34 +00004927 alpha,
4928 beta,
4929 delta,
4930 factor,
4931 gamma,
4932 theta;
4933
4934 PointInfo
4935 center,
4936 points[3],
4937 radii;
4938
cristya19f1d72012-08-07 18:24:38 +00004939 register double
cristy3ed852e2009-09-05 21:47:34 +00004940 cosine,
4941 sine;
4942
4943 register PrimitiveInfo
4944 *p;
4945
cristybb503372010-05-27 20:51:26 +00004946 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004947 i;
4948
cristybb503372010-05-27 20:51:26 +00004949 size_t
cristy3ed852e2009-09-05 21:47:34 +00004950 arc_segments;
4951
4952 if ((start.x == end.x) && (start.y == end.y))
4953 {
4954 TracePoint(primitive_info,end);
4955 return;
4956 }
4957 radii.x=fabs(arc.x);
4958 radii.y=fabs(arc.y);
4959 if ((radii.x == 0.0) || (radii.y == 0.0))
4960 {
4961 TraceLine(primitive_info,start,end);
4962 return;
4963 }
4964 cosine=cos(DegreesToRadians(fmod((double) angle,360.0)));
4965 sine=sin(DegreesToRadians(fmod((double) angle,360.0)));
4966 center.x=(double) (cosine*(end.x-start.x)/2+sine*(end.y-start.y)/2);
4967 center.y=(double) (cosine*(end.y-start.y)/2-sine*(end.x-start.x)/2);
4968 delta=(center.x*center.x)/(radii.x*radii.x)+(center.y*center.y)/
4969 (radii.y*radii.y);
cristy53aed702012-07-08 00:21:25 +00004970 if (delta < MagickEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00004971 {
4972 TraceLine(primitive_info,start,end);
4973 return;
4974 }
4975 if (delta > 1.0)
4976 {
4977 radii.x*=sqrt((double) delta);
4978 radii.y*=sqrt((double) delta);
4979 }
4980 points[0].x=(double) (cosine*start.x/radii.x+sine*start.y/radii.x);
4981 points[0].y=(double) (cosine*start.y/radii.y-sine*start.x/radii.y);
4982 points[1].x=(double) (cosine*end.x/radii.x+sine*end.y/radii.x);
4983 points[1].y=(double) (cosine*end.y/radii.y-sine*end.x/radii.y);
4984 alpha=points[1].x-points[0].x;
4985 beta=points[1].y-points[0].y;
cristy3e3ec3a2012-11-03 23:11:06 +00004986 factor=PerceptibleReciprocal(alpha*alpha+beta*beta)-0.25;
cristy3ed852e2009-09-05 21:47:34 +00004987 if (factor <= 0.0)
4988 factor=0.0;
4989 else
4990 {
4991 factor=sqrt((double) factor);
4992 if (sweep == large_arc)
4993 factor=(-factor);
4994 }
4995 center.x=(double) ((points[0].x+points[1].x)/2-factor*beta);
4996 center.y=(double) ((points[0].y+points[1].y)/2+factor*alpha);
4997 alpha=atan2(points[0].y-center.y,points[0].x-center.x);
4998 theta=atan2(points[1].y-center.y,points[1].x-center.x)-alpha;
4999 if ((theta < 0.0) && (sweep != MagickFalse))
cristya19f1d72012-08-07 18:24:38 +00005000 theta+=(double) (2.0*MagickPI);
cristy3ed852e2009-09-05 21:47:34 +00005001 else
5002 if ((theta > 0.0) && (sweep == MagickFalse))
cristya19f1d72012-08-07 18:24:38 +00005003 theta-=(double) (2.0*MagickPI);
cristybb503372010-05-27 20:51:26 +00005004 arc_segments=(size_t) ceil(fabs((double) (theta/(0.5*MagickPI+
cristy53aed702012-07-08 00:21:25 +00005005 MagickEpsilon))));
cristy3ed852e2009-09-05 21:47:34 +00005006 p=primitive_info;
cristybb503372010-05-27 20:51:26 +00005007 for (i=0; i < (ssize_t) arc_segments; i++)
cristy3ed852e2009-09-05 21:47:34 +00005008 {
5009 beta=0.5*((alpha+(i+1)*theta/arc_segments)-(alpha+i*theta/arc_segments));
5010 gamma=(8.0/3.0)*sin(fmod((double) (0.5*beta),DegreesToRadians(360.0)))*
5011 sin(fmod((double) (0.5*beta),DegreesToRadians(360.0)))/
5012 sin(fmod((double) beta,DegreesToRadians(360.0)));
5013 points[0].x=(double) (center.x+cos(fmod((double) (alpha+(double) i*theta/
5014 arc_segments),DegreesToRadians(360.0)))-gamma*sin(fmod((double) (alpha+
5015 (double) i*theta/arc_segments),DegreesToRadians(360.0))));
5016 points[0].y=(double) (center.y+sin(fmod((double) (alpha+(double) i*theta/
5017 arc_segments),DegreesToRadians(360.0)))+gamma*cos(fmod((double) (alpha+
5018 (double) i*theta/arc_segments),DegreesToRadians(360.0))));
5019 points[2].x=(double) (center.x+cos(fmod((double) (alpha+(double) (i+1)*
5020 theta/arc_segments),DegreesToRadians(360.0))));
5021 points[2].y=(double) (center.y+sin(fmod((double) (alpha+(double) (i+1)*
5022 theta/arc_segments),DegreesToRadians(360.0))));
5023 points[1].x=(double) (points[2].x+gamma*sin(fmod((double) (alpha+(double)
5024 (i+1)*theta/arc_segments),DegreesToRadians(360.0))));
5025 points[1].y=(double) (points[2].y-gamma*cos(fmod((double) (alpha+(double)
5026 (i+1)*theta/arc_segments),DegreesToRadians(360.0))));
5027 p->point.x=(p == primitive_info) ? start.x : (p-1)->point.x;
5028 p->point.y=(p == primitive_info) ? start.y : (p-1)->point.y;
5029 (p+1)->point.x=(double) (cosine*radii.x*points[0].x-sine*radii.y*
5030 points[0].y);
5031 (p+1)->point.y=(double) (sine*radii.x*points[0].x+cosine*radii.y*
5032 points[0].y);
5033 (p+2)->point.x=(double) (cosine*radii.x*points[1].x-sine*radii.y*
5034 points[1].y);
5035 (p+2)->point.y=(double) (sine*radii.x*points[1].x+cosine*radii.y*
5036 points[1].y);
5037 (p+3)->point.x=(double) (cosine*radii.x*points[2].x-sine*radii.y*
5038 points[2].y);
5039 (p+3)->point.y=(double) (sine*radii.x*points[2].x+cosine*radii.y*
5040 points[2].y);
cristybb503372010-05-27 20:51:26 +00005041 if (i == (ssize_t) (arc_segments-1))
cristy3ed852e2009-09-05 21:47:34 +00005042 (p+3)->point=end;
5043 TraceBezier(p,4);
5044 p+=p->coordinates;
5045 }
cristybb503372010-05-27 20:51:26 +00005046 primitive_info->coordinates=(size_t) (p-primitive_info);
5047 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005048 {
5049 p->primitive=primitive_info->primitive;
5050 p--;
5051 }
5052}
5053
5054static void TraceBezier(PrimitiveInfo *primitive_info,
cristybb503372010-05-27 20:51:26 +00005055 const size_t number_coordinates)
cristy3ed852e2009-09-05 21:47:34 +00005056{
cristya19f1d72012-08-07 18:24:38 +00005057 double
cristy3ed852e2009-09-05 21:47:34 +00005058 alpha,
5059 *coefficients,
5060 weight;
5061
5062 PointInfo
5063 end,
5064 point,
5065 *points;
5066
cristy826a5472010-08-31 23:21:38 +00005067 register PrimitiveInfo
5068 *p;
5069
cristybb503372010-05-27 20:51:26 +00005070 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005071 i,
5072 j;
5073
cristybb503372010-05-27 20:51:26 +00005074 size_t
cristy3ed852e2009-09-05 21:47:34 +00005075 control_points,
5076 quantum;
5077
5078 /*
5079 Allocate coeficients.
5080 */
5081 quantum=number_coordinates;
cristybb503372010-05-27 20:51:26 +00005082 for (i=0; i < (ssize_t) number_coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005083 {
cristybb503372010-05-27 20:51:26 +00005084 for (j=i+1; j < (ssize_t) number_coordinates; j++)
cristy3ed852e2009-09-05 21:47:34 +00005085 {
5086 alpha=fabs(primitive_info[j].point.x-primitive_info[i].point.x);
cristya19f1d72012-08-07 18:24:38 +00005087 if (alpha > (double) quantum)
cristybb503372010-05-27 20:51:26 +00005088 quantum=(size_t) alpha;
cristy3ed852e2009-09-05 21:47:34 +00005089 alpha=fabs(primitive_info[j].point.y-primitive_info[i].point.y);
cristya19f1d72012-08-07 18:24:38 +00005090 if (alpha > (double) quantum)
cristybb503372010-05-27 20:51:26 +00005091 quantum=(size_t) alpha;
cristy3ed852e2009-09-05 21:47:34 +00005092 }
5093 }
cristybb503372010-05-27 20:51:26 +00005094 quantum=(size_t) MagickMin((double) quantum/number_coordinates,
cristy3ed852e2009-09-05 21:47:34 +00005095 (double) BezierQuantum);
5096 control_points=quantum*number_coordinates;
cristya19f1d72012-08-07 18:24:38 +00005097 coefficients=(double *) AcquireQuantumMemory((size_t)
cristy3ed852e2009-09-05 21:47:34 +00005098 number_coordinates,sizeof(*coefficients));
5099 points=(PointInfo *) AcquireQuantumMemory((size_t) control_points,
5100 sizeof(*points));
cristya19f1d72012-08-07 18:24:38 +00005101 if ((coefficients == (double *) NULL) ||
cristy3ed852e2009-09-05 21:47:34 +00005102 (points == (PointInfo *) NULL))
5103 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
5104 /*
5105 Compute bezier points.
5106 */
5107 end=primitive_info[number_coordinates-1].point;
cristybb503372010-05-27 20:51:26 +00005108 for (i=0; i < (ssize_t) number_coordinates; i++)
5109 coefficients[i]=Permutate((ssize_t) number_coordinates-1,i);
cristy3ed852e2009-09-05 21:47:34 +00005110 weight=0.0;
cristybb503372010-05-27 20:51:26 +00005111 for (i=0; i < (ssize_t) control_points; i++)
cristy3ed852e2009-09-05 21:47:34 +00005112 {
5113 p=primitive_info;
5114 point.x=0.0;
5115 point.y=0.0;
5116 alpha=pow((double) (1.0-weight),(double) number_coordinates-1.0);
cristybb503372010-05-27 20:51:26 +00005117 for (j=0; j < (ssize_t) number_coordinates; j++)
cristy3ed852e2009-09-05 21:47:34 +00005118 {
5119 point.x+=alpha*coefficients[j]*p->point.x;
5120 point.y+=alpha*coefficients[j]*p->point.y;
5121 alpha*=weight/(1.0-weight);
5122 p++;
5123 }
5124 points[i]=point;
5125 weight+=1.0/control_points;
5126 }
5127 /*
5128 Bezier curves are just short segmented polys.
5129 */
5130 p=primitive_info;
cristybb503372010-05-27 20:51:26 +00005131 for (i=0; i < (ssize_t) control_points; i++)
cristy3ed852e2009-09-05 21:47:34 +00005132 {
5133 TracePoint(p,points[i]);
5134 p+=p->coordinates;
5135 }
5136 TracePoint(p,end);
5137 p+=p->coordinates;
cristybb503372010-05-27 20:51:26 +00005138 primitive_info->coordinates=(size_t) (p-primitive_info);
5139 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005140 {
5141 p->primitive=primitive_info->primitive;
5142 p--;
5143 }
5144 points=(PointInfo *) RelinquishMagickMemory(points);
cristya19f1d72012-08-07 18:24:38 +00005145 coefficients=(double *) RelinquishMagickMemory(coefficients);
cristy3ed852e2009-09-05 21:47:34 +00005146}
5147
5148static void TraceCircle(PrimitiveInfo *primitive_info,const PointInfo start,
5149 const PointInfo end)
5150{
cristya19f1d72012-08-07 18:24:38 +00005151 double
cristy3ed852e2009-09-05 21:47:34 +00005152 alpha,
5153 beta,
5154 radius;
5155
5156 PointInfo
5157 offset,
5158 degrees;
5159
5160 alpha=end.x-start.x;
5161 beta=end.y-start.y;
5162 radius=hypot((double) alpha,(double) beta);
5163 offset.x=(double) radius;
5164 offset.y=(double) radius;
5165 degrees.x=0.0;
5166 degrees.y=360.0;
5167 TraceEllipse(primitive_info,start,offset,degrees);
5168}
5169
5170static void TraceEllipse(PrimitiveInfo *primitive_info,const PointInfo start,
5171 const PointInfo stop,const PointInfo degrees)
5172{
cristya19f1d72012-08-07 18:24:38 +00005173 double
cristy3ed852e2009-09-05 21:47:34 +00005174 delta,
5175 step,
5176 y;
5177
5178 PointInfo
5179 angle,
5180 point;
5181
5182 register PrimitiveInfo
5183 *p;
5184
cristybb503372010-05-27 20:51:26 +00005185 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005186 i;
5187
5188 /*
5189 Ellipses are just short segmented polys.
5190 */
5191 if ((stop.x == 0.0) && (stop.y == 0.0))
5192 {
5193 TracePoint(primitive_info,start);
5194 return;
5195 }
5196 delta=2.0/MagickMax(stop.x,stop.y);
cristya19f1d72012-08-07 18:24:38 +00005197 step=(double) (MagickPI/8.0);
5198 if ((delta >= 0.0) && (delta < (double) (MagickPI/8.0)))
5199 step=(double) (MagickPI/(4*(MagickPI/delta/2+0.5)));
cristy3ed852e2009-09-05 21:47:34 +00005200 angle.x=DegreesToRadians(degrees.x);
5201 y=degrees.y;
5202 while (y < degrees.x)
5203 y+=360.0;
cristya855f3d2012-12-01 13:02:13 +00005204 angle.y=(double) DegreesToRadians(y);
cristy3ed852e2009-09-05 21:47:34 +00005205 for (p=primitive_info; angle.x < angle.y; angle.x+=step)
5206 {
5207 point.x=cos(fmod(angle.x,DegreesToRadians(360.0)))*stop.x+start.x;
5208 point.y=sin(fmod(angle.x,DegreesToRadians(360.0)))*stop.y+start.y;
5209 TracePoint(p,point);
5210 p+=p->coordinates;
5211 }
5212 point.x=cos(fmod(angle.y,DegreesToRadians(360.0)))*stop.x+start.x;
5213 point.y=sin(fmod(angle.y,DegreesToRadians(360.0)))*stop.y+start.y;
5214 TracePoint(p,point);
5215 p+=p->coordinates;
cristybb503372010-05-27 20:51:26 +00005216 primitive_info->coordinates=(size_t) (p-primitive_info);
5217 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005218 {
5219 p->primitive=primitive_info->primitive;
5220 p--;
5221 }
5222}
5223
5224static void TraceLine(PrimitiveInfo *primitive_info,const PointInfo start,
5225 const PointInfo end)
5226{
5227 TracePoint(primitive_info,start);
cristy53aed702012-07-08 00:21:25 +00005228 if ((fabs(start.x-end.x) < MagickEpsilon) &&
5229 (fabs(start.y-end.y) < MagickEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005230 {
5231 primitive_info->primitive=PointPrimitive;
5232 primitive_info->coordinates=1;
5233 return;
5234 }
5235 TracePoint(primitive_info+1,end);
5236 (primitive_info+1)->primitive=primitive_info->primitive;
5237 primitive_info->coordinates=2;
5238}
5239
cristybb503372010-05-27 20:51:26 +00005240static size_t TracePath(PrimitiveInfo *primitive_info,const char *path)
cristy3ed852e2009-09-05 21:47:34 +00005241{
5242 char
5243 token[MaxTextExtent];
5244
5245 const char
5246 *p;
5247
5248 int
5249 attribute,
5250 last_attribute;
5251
cristya19f1d72012-08-07 18:24:38 +00005252 double
cristy3ed852e2009-09-05 21:47:34 +00005253 x,
5254 y;
5255
5256 PointInfo
5257 end,
5258 points[4],
5259 point,
5260 start;
5261
5262 PrimitiveType
5263 primitive_type;
5264
5265 register PrimitiveInfo
5266 *q;
5267
cristybb503372010-05-27 20:51:26 +00005268 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005269 i;
5270
cristybb503372010-05-27 20:51:26 +00005271 size_t
cristy3ed852e2009-09-05 21:47:34 +00005272 number_coordinates,
5273 z_count;
5274
5275 attribute=0;
cristy206c26e2013-11-07 18:04:21 +00005276 end.x=0.0;
5277 end.y=0.0;
cristy3ed852e2009-09-05 21:47:34 +00005278 point.x=0.0;
5279 point.y=0.0;
5280 start.x=0.0;
5281 start.y=0.0;
5282 number_coordinates=0;
5283 z_count=0;
cristy54ebd8d2014-01-14 01:14:23 +00005284 (void) ResetMagickMemory(points,0,sizeof(*points));
cristy3ed852e2009-09-05 21:47:34 +00005285 primitive_type=primitive_info->primitive;
5286 q=primitive_info;
5287 for (p=path; *p != '\0'; )
5288 {
5289 while (isspace((int) ((unsigned char) *p)) != 0)
5290 p++;
5291 if (*p == '\0')
5292 break;
5293 last_attribute=attribute;
5294 attribute=(int) (*p++);
5295 switch (attribute)
5296 {
5297 case 'a':
5298 case 'A':
5299 {
5300 MagickBooleanType
5301 large_arc,
5302 sweep;
5303
cristya19f1d72012-08-07 18:24:38 +00005304 double
cristy3ed852e2009-09-05 21:47:34 +00005305 angle;
5306
5307 PointInfo
5308 arc;
5309
5310 /*
5311 Compute arc points.
5312 */
5313 do
5314 {
5315 GetMagickToken(p,&p,token);
5316 if (*token == ',')
5317 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005318 arc.x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005319 GetMagickToken(p,&p,token);
5320 if (*token == ',')
5321 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005322 arc.y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005323 GetMagickToken(p,&p,token);
5324 if (*token == ',')
5325 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005326 angle=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005327 GetMagickToken(p,&p,token);
5328 if (*token == ',')
5329 GetMagickToken(p,&p,token);
cristyf2f27272009-12-17 14:48:46 +00005330 large_arc=StringToLong(token) != 0 ? MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00005331 GetMagickToken(p,&p,token);
5332 if (*token == ',')
5333 GetMagickToken(p,&p,token);
cristyf2f27272009-12-17 14:48:46 +00005334 sweep=StringToLong(token) != 0 ? MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00005335 GetMagickToken(p,&p,token);
5336 if (*token == ',')
5337 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005338 x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005339 GetMagickToken(p,&p,token);
5340 if (*token == ',')
5341 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005342 y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005343 end.x=(double) (attribute == (int) 'A' ? x : point.x+x);
5344 end.y=(double) (attribute == (int) 'A' ? y : point.y+y);
5345 TraceArcPath(q,point,end,arc,angle,large_arc,sweep);
5346 q+=q->coordinates;
5347 point=end;
cristy671fcfc2011-12-13 13:28:31 +00005348 while (isspace((int) ((unsigned char) *p)) != 0)
5349 p++;
5350 if (*p == ',')
5351 p++;
cristy3ed852e2009-09-05 21:47:34 +00005352 } while (IsPoint(p) != MagickFalse);
5353 break;
5354 }
5355 case 'c':
5356 case 'C':
5357 {
5358 /*
5359 Compute bezier points.
5360 */
5361 do
5362 {
5363 points[0]=point;
5364 for (i=1; i < 4; i++)
5365 {
5366 GetMagickToken(p,&p,token);
5367 if (*token == ',')
5368 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005369 x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005370 GetMagickToken(p,&p,token);
5371 if (*token == ',')
5372 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005373 y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005374 end.x=(double) (attribute == (int) 'C' ? x : point.x+x);
5375 end.y=(double) (attribute == (int) 'C' ? y : point.y+y);
5376 points[i]=end;
5377 }
5378 for (i=0; i < 4; i++)
5379 (q+i)->point=points[i];
5380 TraceBezier(q,4);
5381 q+=q->coordinates;
5382 point=end;
5383 } while (IsPoint(p) != MagickFalse);
5384 break;
5385 }
5386 case 'H':
5387 case 'h':
5388 {
5389 do
5390 {
5391 GetMagickToken(p,&p,token);
5392 if (*token == ',')
5393 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005394 x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005395 point.x=(double) (attribute == (int) 'H' ? x: point.x+x);
5396 TracePoint(q,point);
5397 q+=q->coordinates;
5398 } while (IsPoint(p) != MagickFalse);
5399 break;
5400 }
5401 case 'l':
5402 case 'L':
5403 {
5404 do
5405 {
5406 GetMagickToken(p,&p,token);
5407 if (*token == ',')
5408 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005409 x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005410 GetMagickToken(p,&p,token);
5411 if (*token == ',')
5412 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005413 y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005414 point.x=(double) (attribute == (int) 'L' ? x : point.x+x);
5415 point.y=(double) (attribute == (int) 'L' ? y : point.y+y);
5416 TracePoint(q,point);
5417 q+=q->coordinates;
5418 } while (IsPoint(p) != MagickFalse);
5419 break;
5420 }
5421 case 'M':
5422 case 'm':
5423 {
5424 if (q != primitive_info)
5425 {
cristybb503372010-05-27 20:51:26 +00005426 primitive_info->coordinates=(size_t) (q-primitive_info);
cristy3ed852e2009-09-05 21:47:34 +00005427 number_coordinates+=primitive_info->coordinates;
5428 primitive_info=q;
5429 }
5430 i=0;
5431 do
5432 {
5433 GetMagickToken(p,&p,token);
5434 if (*token == ',')
5435 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005436 x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005437 GetMagickToken(p,&p,token);
5438 if (*token == ',')
5439 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005440 y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005441 point.x=(double) (attribute == (int) 'M' ? x : point.x+x);
5442 point.y=(double) (attribute == (int) 'M' ? y : point.y+y);
5443 if (i == 0)
5444 start=point;
5445 i++;
5446 TracePoint(q,point);
5447 q+=q->coordinates;
cristy826a5472010-08-31 23:21:38 +00005448 if ((i != 0) && (attribute == (int) 'M'))
cristy3ed852e2009-09-05 21:47:34 +00005449 {
5450 TracePoint(q,point);
5451 q+=q->coordinates;
5452 }
5453 } while (IsPoint(p) != MagickFalse);
5454 break;
5455 }
5456 case 'q':
5457 case 'Q':
5458 {
5459 /*
5460 Compute bezier points.
5461 */
5462 do
5463 {
5464 points[0]=point;
5465 for (i=1; i < 3; i++)
5466 {
5467 GetMagickToken(p,&p,token);
5468 if (*token == ',')
5469 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005470 x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005471 GetMagickToken(p,&p,token);
5472 if (*token == ',')
5473 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005474 y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005475 if (*p == ',')
5476 p++;
5477 end.x=(double) (attribute == (int) 'Q' ? x : point.x+x);
5478 end.y=(double) (attribute == (int) 'Q' ? y : point.y+y);
5479 points[i]=end;
5480 }
5481 for (i=0; i < 3; i++)
5482 (q+i)->point=points[i];
5483 TraceBezier(q,3);
5484 q+=q->coordinates;
5485 point=end;
5486 } while (IsPoint(p) != MagickFalse);
5487 break;
5488 }
5489 case 's':
5490 case 'S':
5491 {
5492 /*
5493 Compute bezier points.
5494 */
5495 do
5496 {
5497 points[0]=points[3];
5498 points[1].x=2.0*points[3].x-points[2].x;
5499 points[1].y=2.0*points[3].y-points[2].y;
5500 for (i=2; i < 4; i++)
5501 {
5502 GetMagickToken(p,&p,token);
5503 if (*token == ',')
5504 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005505 x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005506 GetMagickToken(p,&p,token);
5507 if (*token == ',')
5508 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005509 y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005510 if (*p == ',')
5511 p++;
5512 end.x=(double) (attribute == (int) 'S' ? x : point.x+x);
5513 end.y=(double) (attribute == (int) 'S' ? y : point.y+y);
5514 points[i]=end;
5515 }
5516 if (strchr("CcSs",last_attribute) == (char *) NULL)
5517 {
cristy889e1872014-12-13 20:45:28 +00005518 points[0]=point;
5519 points[1]=point;
cristy3ed852e2009-09-05 21:47:34 +00005520 }
5521 for (i=0; i < 4; i++)
5522 (q+i)->point=points[i];
5523 TraceBezier(q,4);
5524 q+=q->coordinates;
5525 point=end;
5526 } while (IsPoint(p) != MagickFalse);
5527 break;
5528 }
5529 case 't':
5530 case 'T':
5531 {
5532 /*
5533 Compute bezier points.
5534 */
5535 do
5536 {
5537 points[0]=points[2];
5538 points[1].x=2.0*points[2].x-points[1].x;
5539 points[1].y=2.0*points[2].y-points[1].y;
5540 for (i=2; i < 3; i++)
5541 {
5542 GetMagickToken(p,&p,token);
5543 if (*token == ',')
5544 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005545 x=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005546 GetMagickToken(p,&p,token);
5547 if (*token == ',')
5548 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005549 y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005550 end.x=(double) (attribute == (int) 'T' ? x : point.x+x);
5551 end.y=(double) (attribute == (int) 'T' ? y : point.y+y);
5552 points[i]=end;
5553 }
5554 if (strchr("QqTt",last_attribute) == (char *) NULL)
5555 {
cristy9d8e3fe2014-12-13 20:45:52 +00005556 points[0]=point;
5557 points[1]=point;
cristy3ed852e2009-09-05 21:47:34 +00005558 }
5559 for (i=0; i < 3; i++)
5560 (q+i)->point=points[i];
5561 TraceBezier(q,3);
5562 q+=q->coordinates;
5563 point=end;
5564 } while (IsPoint(p) != MagickFalse);
5565 break;
5566 }
5567 case 'v':
5568 case 'V':
5569 {
5570 do
5571 {
5572 GetMagickToken(p,&p,token);
5573 if (*token == ',')
5574 GetMagickToken(p,&p,token);
cristydbdd0e32011-11-04 23:29:40 +00005575 y=StringToDouble(token,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00005576 point.y=(double) (attribute == (int) 'V' ? y : point.y+y);
5577 TracePoint(q,point);
5578 q+=q->coordinates;
5579 } while (IsPoint(p) != MagickFalse);
5580 break;
5581 }
5582 case 'z':
5583 case 'Z':
5584 {
5585 point=start;
5586 TracePoint(q,point);
5587 q+=q->coordinates;
cristybb503372010-05-27 20:51:26 +00005588 primitive_info->coordinates=(size_t) (q-primitive_info);
cristy3ed852e2009-09-05 21:47:34 +00005589 number_coordinates+=primitive_info->coordinates;
5590 primitive_info=q;
5591 z_count++;
5592 break;
5593 }
5594 default:
5595 {
5596 if (isalpha((int) ((unsigned char) attribute)) != 0)
cristy1e604812011-05-19 18:07:50 +00005597 (void) FormatLocaleFile(stderr,"attribute not recognized: %c\n",
5598 attribute);
cristy3ed852e2009-09-05 21:47:34 +00005599 break;
5600 }
5601 }
5602 }
cristybb503372010-05-27 20:51:26 +00005603 primitive_info->coordinates=(size_t) (q-primitive_info);
cristy3ed852e2009-09-05 21:47:34 +00005604 number_coordinates+=primitive_info->coordinates;
cristybb503372010-05-27 20:51:26 +00005605 for (i=0; i < (ssize_t) number_coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005606 {
5607 q--;
5608 q->primitive=primitive_type;
5609 if (z_count > 1)
5610 q->method=FillToBorderMethod;
5611 }
5612 q=primitive_info;
5613 return(number_coordinates);
5614}
5615
5616static void TraceRectangle(PrimitiveInfo *primitive_info,const PointInfo start,
5617 const PointInfo end)
5618{
5619 PointInfo
5620 point;
5621
5622 register PrimitiveInfo
5623 *p;
5624
cristybb503372010-05-27 20:51:26 +00005625 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005626 i;
5627
5628 p=primitive_info;
5629 TracePoint(p,start);
5630 p+=p->coordinates;
5631 point.x=start.x;
5632 point.y=end.y;
5633 TracePoint(p,point);
5634 p+=p->coordinates;
5635 TracePoint(p,end);
5636 p+=p->coordinates;
5637 point.x=end.x;
5638 point.y=start.y;
5639 TracePoint(p,point);
5640 p+=p->coordinates;
5641 TracePoint(p,start);
5642 p+=p->coordinates;
cristybb503372010-05-27 20:51:26 +00005643 primitive_info->coordinates=(size_t) (p-primitive_info);
5644 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005645 {
5646 p->primitive=primitive_info->primitive;
5647 p--;
5648 }
5649}
5650
5651static void TraceRoundRectangle(PrimitiveInfo *primitive_info,
5652 const PointInfo start,const PointInfo end,PointInfo arc)
5653{
5654 PointInfo
5655 degrees,
5656 offset,
5657 point;
5658
5659 register PrimitiveInfo
5660 *p;
5661
cristybb503372010-05-27 20:51:26 +00005662 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005663 i;
5664
5665 p=primitive_info;
5666 offset.x=fabs(end.x-start.x);
5667 offset.y=fabs(end.y-start.y);
5668 if (arc.x > (0.5*offset.x))
5669 arc.x=0.5*offset.x;
5670 if (arc.y > (0.5*offset.y))
5671 arc.y=0.5*offset.y;
5672 point.x=start.x+offset.x-arc.x;
5673 point.y=start.y+arc.y;
5674 degrees.x=270.0;
5675 degrees.y=360.0;
5676 TraceEllipse(p,point,arc,degrees);
5677 p+=p->coordinates;
5678 point.x=start.x+offset.x-arc.x;
5679 point.y=start.y+offset.y-arc.y;
5680 degrees.x=0.0;
5681 degrees.y=90.0;
5682 TraceEllipse(p,point,arc,degrees);
5683 p+=p->coordinates;
5684 point.x=start.x+arc.x;
5685 point.y=start.y+offset.y-arc.y;
5686 degrees.x=90.0;
5687 degrees.y=180.0;
5688 TraceEllipse(p,point,arc,degrees);
5689 p+=p->coordinates;
5690 point.x=start.x+arc.x;
5691 point.y=start.y+arc.y;
5692 degrees.x=180.0;
5693 degrees.y=270.0;
5694 TraceEllipse(p,point,arc,degrees);
5695 p+=p->coordinates;
5696 TracePoint(p,primitive_info->point);
5697 p+=p->coordinates;
cristybb503372010-05-27 20:51:26 +00005698 primitive_info->coordinates=(size_t) (p-primitive_info);
5699 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005700 {
5701 p->primitive=primitive_info->primitive;
5702 p--;
5703 }
5704}
5705
5706static void TraceSquareLinecap(PrimitiveInfo *primitive_info,
cristya19f1d72012-08-07 18:24:38 +00005707 const size_t number_vertices,const double offset)
cristy3ed852e2009-09-05 21:47:34 +00005708{
cristya19f1d72012-08-07 18:24:38 +00005709 double
cristy3ed852e2009-09-05 21:47:34 +00005710 distance;
5711
cristya19f1d72012-08-07 18:24:38 +00005712 register double
cristy3ed852e2009-09-05 21:47:34 +00005713 dx,
5714 dy;
5715
cristybb503372010-05-27 20:51:26 +00005716 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005717 i;
5718
cristy826a5472010-08-31 23:21:38 +00005719 ssize_t
5720 j;
5721
cristy3ed852e2009-09-05 21:47:34 +00005722 dx=0.0;
5723 dy=0.0;
cristybb503372010-05-27 20:51:26 +00005724 for (i=1; i < (ssize_t) number_vertices; i++)
cristy3ed852e2009-09-05 21:47:34 +00005725 {
5726 dx=primitive_info[0].point.x-primitive_info[i].point.x;
5727 dy=primitive_info[0].point.y-primitive_info[i].point.y;
cristy53aed702012-07-08 00:21:25 +00005728 if ((fabs((double) dx) >= MagickEpsilon) ||
5729 (fabs((double) dy) >= MagickEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005730 break;
5731 }
cristybb503372010-05-27 20:51:26 +00005732 if (i == (ssize_t) number_vertices)
5733 i=(ssize_t) number_vertices-1L;
cristy3ed852e2009-09-05 21:47:34 +00005734 distance=hypot((double) dx,(double) dy);
5735 primitive_info[0].point.x=(double) (primitive_info[i].point.x+
5736 dx*(distance+offset)/distance);
5737 primitive_info[0].point.y=(double) (primitive_info[i].point.y+
5738 dy*(distance+offset)/distance);
cristybb503372010-05-27 20:51:26 +00005739 for (j=(ssize_t) number_vertices-2; j >= 0; j--)
cristy3ed852e2009-09-05 21:47:34 +00005740 {
5741 dx=primitive_info[number_vertices-1].point.x-primitive_info[j].point.x;
5742 dy=primitive_info[number_vertices-1].point.y-primitive_info[j].point.y;
cristy53aed702012-07-08 00:21:25 +00005743 if ((fabs((double) dx) >= MagickEpsilon) ||
5744 (fabs((double) dy) >= MagickEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005745 break;
5746 }
5747 distance=hypot((double) dx,(double) dy);
5748 primitive_info[number_vertices-1].point.x=(double) (primitive_info[j].point.x+
5749 dx*(distance+offset)/distance);
5750 primitive_info[number_vertices-1].point.y=(double) (primitive_info[j].point.y+
5751 dy*(distance+offset)/distance);
5752}
5753
cristya19f1d72012-08-07 18:24:38 +00005754static inline double DrawEpsilonReciprocal(const double x)
cristy53aed702012-07-08 00:21:25 +00005755{
cristya19f1d72012-08-07 18:24:38 +00005756#define DrawEpsilon ((double) 1.0e-10)
cristy53aed702012-07-08 00:21:25 +00005757
cristya19f1d72012-08-07 18:24:38 +00005758 double sign = x < (double) 0.0 ? (double) -1.0 :
5759 (double) 1.0;
5760 return((sign*x) >= DrawEpsilon ? (double) 1.0/x : sign*(
5761 (double) 1.0/DrawEpsilon));
cristy53aed702012-07-08 00:21:25 +00005762}
5763
cristy3ed852e2009-09-05 21:47:34 +00005764static PrimitiveInfo *TraceStrokePolygon(const DrawInfo *draw_info,
5765 const PrimitiveInfo *primitive_info)
5766{
5767 typedef struct _LineSegment
5768 {
5769 double
5770 p,
5771 q;
5772 } LineSegment;
5773
5774 LineSegment
5775 dx,
5776 dy,
5777 inverse_slope,
5778 slope,
5779 theta;
5780
cristy3ed852e2009-09-05 21:47:34 +00005781 MagickBooleanType
5782 closed_path;
5783
cristya19f1d72012-08-07 18:24:38 +00005784 double
cristy3ed852e2009-09-05 21:47:34 +00005785 delta_theta,
5786 dot_product,
5787 mid,
5788 miterlimit;
5789
5790 PointInfo
5791 box_p[5],
5792 box_q[5],
5793 center,
5794 offset,
5795 *path_p,
5796 *path_q;
5797
5798 PrimitiveInfo
5799 *polygon_primitive,
5800 *stroke_polygon;
5801
cristybb503372010-05-27 20:51:26 +00005802 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005803 i;
5804
cristybb503372010-05-27 20:51:26 +00005805 size_t
cristy3ed852e2009-09-05 21:47:34 +00005806 arc_segments,
5807 max_strokes,
5808 number_vertices;
5809
cristy826a5472010-08-31 23:21:38 +00005810 ssize_t
5811 j,
5812 n,
5813 p,
5814 q;
5815
cristy3ed852e2009-09-05 21:47:34 +00005816 /*
5817 Allocate paths.
5818 */
5819 number_vertices=primitive_info->coordinates;
5820 max_strokes=2*number_vertices+6*BezierQuantum+360;
5821 path_p=(PointInfo *) AcquireQuantumMemory((size_t) max_strokes,
5822 sizeof(*path_p));
5823 path_q=(PointInfo *) AcquireQuantumMemory((size_t) max_strokes,
5824 sizeof(*path_q));
5825 polygon_primitive=(PrimitiveInfo *) AcquireQuantumMemory((size_t)
5826 number_vertices+2UL,sizeof(*polygon_primitive));
5827 if ((path_p == (PointInfo *) NULL) || (path_q == (PointInfo *) NULL) ||
5828 (polygon_primitive == (PrimitiveInfo *) NULL))
5829 return((PrimitiveInfo *) NULL);
5830 (void) CopyMagickMemory(polygon_primitive,primitive_info,(size_t)
5831 number_vertices*sizeof(*polygon_primitive));
5832 closed_path=
5833 (primitive_info[number_vertices-1].point.x == primitive_info[0].point.x) &&
5834 (primitive_info[number_vertices-1].point.y == primitive_info[0].point.y) ?
5835 MagickTrue : MagickFalse;
5836 if ((draw_info->linejoin == RoundJoin) ||
5837 ((draw_info->linejoin == MiterJoin) && (closed_path != MagickFalse)))
5838 {
5839 polygon_primitive[number_vertices]=primitive_info[1];
5840 number_vertices++;
5841 }
5842 polygon_primitive[number_vertices].primitive=UndefinedPrimitive;
5843 /*
5844 Compute the slope for the first line segment, p.
5845 */
5846 dx.p=0.0;
5847 dy.p=0.0;
cristybb503372010-05-27 20:51:26 +00005848 for (n=1; n < (ssize_t) number_vertices; n++)
cristy3ed852e2009-09-05 21:47:34 +00005849 {
5850 dx.p=polygon_primitive[n].point.x-polygon_primitive[0].point.x;
5851 dy.p=polygon_primitive[n].point.y-polygon_primitive[0].point.y;
cristy53aed702012-07-08 00:21:25 +00005852 if ((fabs(dx.p) >= MagickEpsilon) || (fabs(dy.p) >= MagickEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005853 break;
5854 }
cristybb503372010-05-27 20:51:26 +00005855 if (n == (ssize_t) number_vertices)
5856 n=(ssize_t) number_vertices-1L;
cristy66fce5b2012-06-29 15:58:17 +00005857 slope.p=DrawEpsilonReciprocal(dx.p)*dy.p;
5858 inverse_slope.p=(-1.0*DrawEpsilonReciprocal(slope.p));
cristy3ed852e2009-09-05 21:47:34 +00005859 mid=ExpandAffine(&draw_info->affine)*draw_info->stroke_width/2.0;
cristya19f1d72012-08-07 18:24:38 +00005860 miterlimit=(double) (draw_info->miterlimit*draw_info->miterlimit*
cristy3ed852e2009-09-05 21:47:34 +00005861 mid*mid);
5862 if ((draw_info->linecap == SquareCap) && (closed_path == MagickFalse))
5863 TraceSquareLinecap(polygon_primitive,number_vertices,mid);
5864 offset.x=sqrt((double) (mid*mid/(inverse_slope.p*inverse_slope.p+1.0)));
5865 offset.y=(double) (offset.x*inverse_slope.p);
5866 if ((dy.p*offset.x-dx.p*offset.y) > 0.0)
5867 {
5868 box_p[0].x=polygon_primitive[0].point.x-offset.x;
5869 box_p[0].y=polygon_primitive[0].point.y-offset.x*inverse_slope.p;
5870 box_p[1].x=polygon_primitive[n].point.x-offset.x;
5871 box_p[1].y=polygon_primitive[n].point.y-offset.x*inverse_slope.p;
5872 box_q[0].x=polygon_primitive[0].point.x+offset.x;
5873 box_q[0].y=polygon_primitive[0].point.y+offset.x*inverse_slope.p;
5874 box_q[1].x=polygon_primitive[n].point.x+offset.x;
5875 box_q[1].y=polygon_primitive[n].point.y+offset.x*inverse_slope.p;
5876 }
5877 else
5878 {
5879 box_p[0].x=polygon_primitive[0].point.x+offset.x;
5880 box_p[0].y=polygon_primitive[0].point.y+offset.y;
5881 box_p[1].x=polygon_primitive[n].point.x+offset.x;
5882 box_p[1].y=polygon_primitive[n].point.y+offset.y;
5883 box_q[0].x=polygon_primitive[0].point.x-offset.x;
5884 box_q[0].y=polygon_primitive[0].point.y-offset.y;
5885 box_q[1].x=polygon_primitive[n].point.x-offset.x;
5886 box_q[1].y=polygon_primitive[n].point.y-offset.y;
5887 }
5888 /*
5889 Create strokes for the line join attribute: bevel, miter, round.
5890 */
5891 p=0;
5892 q=0;
5893 path_q[p++]=box_q[0];
5894 path_p[q++]=box_p[0];
cristybb503372010-05-27 20:51:26 +00005895 for (i=(ssize_t) n+1; i < (ssize_t) number_vertices; i++)
cristy3ed852e2009-09-05 21:47:34 +00005896 {
5897 /*
5898 Compute the slope for this line segment, q.
5899 */
5900 dx.q=polygon_primitive[i].point.x-polygon_primitive[n].point.x;
5901 dy.q=polygon_primitive[i].point.y-polygon_primitive[n].point.y;
5902 dot_product=dx.q*dx.q+dy.q*dy.q;
5903 if (dot_product < 0.25)
5904 continue;
cristy66fce5b2012-06-29 15:58:17 +00005905 slope.q=DrawEpsilonReciprocal(dx.q)*dy.q;
5906 inverse_slope.q=(-1.0*DrawEpsilonReciprocal(slope.q));
cristy3ed852e2009-09-05 21:47:34 +00005907 offset.x=sqrt((double) (mid*mid/(inverse_slope.q*inverse_slope.q+1.0)));
5908 offset.y=(double) (offset.x*inverse_slope.q);
5909 dot_product=dy.q*offset.x-dx.q*offset.y;
5910 if (dot_product > 0.0)
5911 {
5912 box_p[2].x=polygon_primitive[n].point.x-offset.x;
5913 box_p[2].y=polygon_primitive[n].point.y-offset.y;
5914 box_p[3].x=polygon_primitive[i].point.x-offset.x;
5915 box_p[3].y=polygon_primitive[i].point.y-offset.y;
5916 box_q[2].x=polygon_primitive[n].point.x+offset.x;
5917 box_q[2].y=polygon_primitive[n].point.y+offset.y;
5918 box_q[3].x=polygon_primitive[i].point.x+offset.x;
5919 box_q[3].y=polygon_primitive[i].point.y+offset.y;
5920 }
5921 else
5922 {
5923 box_p[2].x=polygon_primitive[n].point.x+offset.x;
5924 box_p[2].y=polygon_primitive[n].point.y+offset.y;
5925 box_p[3].x=polygon_primitive[i].point.x+offset.x;
5926 box_p[3].y=polygon_primitive[i].point.y+offset.y;
5927 box_q[2].x=polygon_primitive[n].point.x-offset.x;
5928 box_q[2].y=polygon_primitive[n].point.y-offset.y;
5929 box_q[3].x=polygon_primitive[i].point.x-offset.x;
5930 box_q[3].y=polygon_primitive[i].point.y-offset.y;
5931 }
cristy53aed702012-07-08 00:21:25 +00005932 if (fabs((double) (slope.p-slope.q)) < MagickEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00005933 {
5934 box_p[4]=box_p[1];
5935 box_q[4]=box_q[1];
5936 }
5937 else
5938 {
5939 box_p[4].x=(double) ((slope.p*box_p[0].x-box_p[0].y-slope.q*box_p[3].x+
5940 box_p[3].y)/(slope.p-slope.q));
5941 box_p[4].y=(double) (slope.p*(box_p[4].x-box_p[0].x)+box_p[0].y);
5942 box_q[4].x=(double) ((slope.p*box_q[0].x-box_q[0].y-slope.q*box_q[3].x+
5943 box_q[3].y)/(slope.p-slope.q));
5944 box_q[4].y=(double) (slope.p*(box_q[4].x-box_q[0].x)+box_q[0].y);
5945 }
cristybb503372010-05-27 20:51:26 +00005946 if (q >= (ssize_t) (max_strokes-6*BezierQuantum-360))
cristy3ed852e2009-09-05 21:47:34 +00005947 {
5948 max_strokes+=6*BezierQuantum+360;
5949 path_p=(PointInfo *) ResizeQuantumMemory(path_p,(size_t) max_strokes,
5950 sizeof(*path_p));
5951 path_q=(PointInfo *) ResizeQuantumMemory(path_q,(size_t) max_strokes,
5952 sizeof(*path_q));
5953 if ((path_p == (PointInfo *) NULL) || (path_q == (PointInfo *) NULL))
5954 {
5955 polygon_primitive=(PrimitiveInfo *)
5956 RelinquishMagickMemory(polygon_primitive);
5957 return((PrimitiveInfo *) NULL);
5958 }
5959 }
5960 dot_product=dx.q*dy.p-dx.p*dy.q;
5961 if (dot_product <= 0.0)
5962 switch (draw_info->linejoin)
5963 {
5964 case BevelJoin:
5965 {
5966 path_q[q++]=box_q[1];
5967 path_q[q++]=box_q[2];
5968 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
5969 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
5970 if (dot_product <= miterlimit)
5971 path_p[p++]=box_p[4];
5972 else
5973 {
5974 path_p[p++]=box_p[1];
5975 path_p[p++]=box_p[2];
5976 }
5977 break;
5978 }
5979 case MiterJoin:
5980 {
5981 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
5982 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
5983 if (dot_product <= miterlimit)
5984 {
5985 path_q[q++]=box_q[4];
5986 path_p[p++]=box_p[4];
5987 }
5988 else
5989 {
5990 path_q[q++]=box_q[1];
5991 path_q[q++]=box_q[2];
5992 path_p[p++]=box_p[1];
5993 path_p[p++]=box_p[2];
5994 }
5995 break;
5996 }
5997 case RoundJoin:
5998 {
5999 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6000 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6001 if (dot_product <= miterlimit)
6002 path_p[p++]=box_p[4];
6003 else
6004 {
6005 path_p[p++]=box_p[1];
6006 path_p[p++]=box_p[2];
6007 }
6008 center=polygon_primitive[n].point;
6009 theta.p=atan2(box_q[1].y-center.y,box_q[1].x-center.x);
6010 theta.q=atan2(box_q[2].y-center.y,box_q[2].x-center.x);
6011 if (theta.q < theta.p)
cristya19f1d72012-08-07 18:24:38 +00006012 theta.q+=(double) (2.0*MagickPI);
cristybb503372010-05-27 20:51:26 +00006013 arc_segments=(size_t) ceil((double) ((theta.q-theta.p)/
cristy3ed852e2009-09-05 21:47:34 +00006014 (2.0*sqrt((double) (1.0/mid)))));
6015 path_q[q].x=box_q[1].x;
6016 path_q[q].y=box_q[1].y;
6017 q++;
cristybb503372010-05-27 20:51:26 +00006018 for (j=1; j < (ssize_t) arc_segments; j++)
cristy3ed852e2009-09-05 21:47:34 +00006019 {
cristya19f1d72012-08-07 18:24:38 +00006020 delta_theta=(double) (j*(theta.q-theta.p)/arc_segments);
cristy3ed852e2009-09-05 21:47:34 +00006021 path_q[q].x=(double) (center.x+mid*cos(fmod((double)
6022 (theta.p+delta_theta),DegreesToRadians(360.0))));
6023 path_q[q].y=(double) (center.y+mid*sin(fmod((double)
6024 (theta.p+delta_theta),DegreesToRadians(360.0))));
6025 q++;
6026 }
6027 path_q[q++]=box_q[2];
6028 break;
6029 }
6030 default:
6031 break;
6032 }
6033 else
6034 switch (draw_info->linejoin)
6035 {
6036 case BevelJoin:
6037 {
6038 path_p[p++]=box_p[1];
6039 path_p[p++]=box_p[2];
6040 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6041 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6042 if (dot_product <= miterlimit)
6043 path_q[q++]=box_q[4];
6044 else
6045 {
6046 path_q[q++]=box_q[1];
6047 path_q[q++]=box_q[2];
6048 }
6049 break;
6050 }
6051 case MiterJoin:
6052 {
6053 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6054 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6055 if (dot_product <= miterlimit)
6056 {
6057 path_q[q++]=box_q[4];
6058 path_p[p++]=box_p[4];
6059 }
6060 else
6061 {
6062 path_q[q++]=box_q[1];
6063 path_q[q++]=box_q[2];
6064 path_p[p++]=box_p[1];
6065 path_p[p++]=box_p[2];
6066 }
6067 break;
6068 }
6069 case RoundJoin:
6070 {
6071 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6072 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6073 if (dot_product <= miterlimit)
6074 path_q[q++]=box_q[4];
6075 else
6076 {
6077 path_q[q++]=box_q[1];
6078 path_q[q++]=box_q[2];
6079 }
6080 center=polygon_primitive[n].point;
6081 theta.p=atan2(box_p[1].y-center.y,box_p[1].x-center.x);
6082 theta.q=atan2(box_p[2].y-center.y,box_p[2].x-center.x);
6083 if (theta.p < theta.q)
cristya19f1d72012-08-07 18:24:38 +00006084 theta.p+=(double) (2.0*MagickPI);
cristybb503372010-05-27 20:51:26 +00006085 arc_segments=(size_t) ceil((double) ((theta.p-theta.q)/
cristy3ed852e2009-09-05 21:47:34 +00006086 (2.0*sqrt((double) (1.0/mid)))));
6087 path_p[p++]=box_p[1];
cristybb503372010-05-27 20:51:26 +00006088 for (j=1; j < (ssize_t) arc_segments; j++)
cristy3ed852e2009-09-05 21:47:34 +00006089 {
cristya19f1d72012-08-07 18:24:38 +00006090 delta_theta=(double) (j*(theta.q-theta.p)/arc_segments);
cristy3ed852e2009-09-05 21:47:34 +00006091 path_p[p].x=(double) (center.x+mid*cos(fmod((double)
6092 (theta.p+delta_theta),DegreesToRadians(360.0))));
6093 path_p[p].y=(double) (center.y+mid*sin(fmod((double)
6094 (theta.p+delta_theta),DegreesToRadians(360.0))));
6095 p++;
6096 }
6097 path_p[p++]=box_p[2];
6098 break;
6099 }
6100 default:
6101 break;
6102 }
6103 slope.p=slope.q;
6104 inverse_slope.p=inverse_slope.q;
6105 box_p[0]=box_p[2];
6106 box_p[1]=box_p[3];
6107 box_q[0]=box_q[2];
6108 box_q[1]=box_q[3];
6109 dx.p=dx.q;
6110 dy.p=dy.q;
6111 n=i;
6112 }
6113 path_p[p++]=box_p[1];
6114 path_q[q++]=box_q[1];
6115 /*
6116 Trace stroked polygon.
6117 */
6118 stroke_polygon=(PrimitiveInfo *) AcquireQuantumMemory((size_t)
6119 (p+q+2UL*closed_path+2UL),sizeof(*stroke_polygon));
6120 if (stroke_polygon != (PrimitiveInfo *) NULL)
6121 {
cristybb503372010-05-27 20:51:26 +00006122 for (i=0; i < (ssize_t) p; i++)
cristy3ed852e2009-09-05 21:47:34 +00006123 {
6124 stroke_polygon[i]=polygon_primitive[0];
6125 stroke_polygon[i].point=path_p[i];
6126 }
6127 if (closed_path != MagickFalse)
6128 {
6129 stroke_polygon[i]=polygon_primitive[0];
6130 stroke_polygon[i].point=stroke_polygon[0].point;
6131 i++;
6132 }
cristybb503372010-05-27 20:51:26 +00006133 for ( ; i < (ssize_t) (p+q+closed_path); i++)
cristy3ed852e2009-09-05 21:47:34 +00006134 {
6135 stroke_polygon[i]=polygon_primitive[0];
6136 stroke_polygon[i].point=path_q[p+q+closed_path-(i+1)];
6137 }
6138 if (closed_path != MagickFalse)
6139 {
6140 stroke_polygon[i]=polygon_primitive[0];
6141 stroke_polygon[i].point=stroke_polygon[p+closed_path].point;
6142 i++;
6143 }
6144 stroke_polygon[i]=polygon_primitive[0];
6145 stroke_polygon[i].point=stroke_polygon[0].point;
6146 i++;
6147 stroke_polygon[i].primitive=UndefinedPrimitive;
cristybb503372010-05-27 20:51:26 +00006148 stroke_polygon[0].coordinates=(size_t) (p+q+2*closed_path+1);
cristy3ed852e2009-09-05 21:47:34 +00006149 }
6150 path_p=(PointInfo *) RelinquishMagickMemory(path_p);
6151 path_q=(PointInfo *) RelinquishMagickMemory(path_q);
6152 polygon_primitive=(PrimitiveInfo *) RelinquishMagickMemory(polygon_primitive);
6153 return(stroke_polygon);
6154}