blob: f12760db522c71c5cd5b271d6ccabf47f4c41085 [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% %
Cristy7ce65e72015-12-12 18:03:16 -050021% Copyright 1999-2016 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"
Cristyba4ad2d2016-06-07 09:15:26 -040053#include "MagickCore/cache-private.h"
cristy4c08aed2011-07-01 19:47:50 +000054#include "MagickCore/cache-view.h"
cristy6a2180c2013-05-27 10:28:36 +000055#include "MagickCore/channel.h"
cristy4c08aed2011-07-01 19:47:50 +000056#include "MagickCore/color.h"
cristy9b7a4fc2012-04-08 22:26:56 +000057#include "MagickCore/colorspace-private.h"
cristy4c08aed2011-07-01 19:47:50 +000058#include "MagickCore/composite.h"
59#include "MagickCore/composite-private.h"
60#include "MagickCore/constitute.h"
61#include "MagickCore/draw.h"
62#include "MagickCore/draw-private.h"
63#include "MagickCore/enhance.h"
64#include "MagickCore/exception.h"
65#include "MagickCore/exception-private.h"
66#include "MagickCore/gem.h"
67#include "MagickCore/geometry.h"
68#include "MagickCore/image-private.h"
69#include "MagickCore/list.h"
70#include "MagickCore/log.h"
71#include "MagickCore/monitor.h"
72#include "MagickCore/monitor-private.h"
73#include "MagickCore/option.h"
74#include "MagickCore/paint.h"
75#include "MagickCore/pixel-accessor.h"
cristy35f15302012-06-07 14:59:02 +000076#include "MagickCore/pixel-private.h"
cristy4c08aed2011-07-01 19:47:50 +000077#include "MagickCore/property.h"
78#include "MagickCore/resample.h"
79#include "MagickCore/resample-private.h"
cristyac245f82012-05-05 17:13:57 +000080#include "MagickCore/resource_.h"
cristy4c08aed2011-07-01 19:47:50 +000081#include "MagickCore/string_.h"
82#include "MagickCore/string-private.h"
83#include "MagickCore/thread-private.h"
84#include "MagickCore/token.h"
dirk06f59012016-03-13 20:51:16 +010085#include "MagickCore/transform-private.h"
cristy4c08aed2011-07-01 19:47:50 +000086#include "MagickCore/utility.h"
cristy3ed852e2009-09-05 21:47:34 +000087
88/*
89 Define declarations.
90*/
91#define BezierQuantum 200
Cristycebc5682016-06-24 15:24:30 -040092#define DrawEpsilon (1.0e-10)
Cristyade0d8e2016-06-10 08:40:09 -040093
cristy3ed852e2009-09-05 21:47:34 +000094
95/*
96 Typedef declarations.
97*/
98typedef struct _EdgeInfo
99{
100 SegmentInfo
101 bounds;
102
cristya19f1d72012-08-07 18:24:38 +0000103 double
cristy3ed852e2009-09-05 21:47:34 +0000104 scanline;
105
106 PointInfo
107 *points;
108
cristybb503372010-05-27 20:51:26 +0000109 size_t
cristy3ed852e2009-09-05 21:47:34 +0000110 number_points;
111
cristybb503372010-05-27 20:51:26 +0000112 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000113 direction;
114
115 MagickBooleanType
116 ghostline;
117
cristybb503372010-05-27 20:51:26 +0000118 size_t
cristy3ed852e2009-09-05 21:47:34 +0000119 highwater;
120} EdgeInfo;
121
122typedef struct _ElementInfo
123{
cristya19f1d72012-08-07 18:24:38 +0000124 double
cristy3ed852e2009-09-05 21:47:34 +0000125 cx,
126 cy,
127 major,
128 minor,
129 angle;
130} ElementInfo;
131
132typedef struct _PolygonInfo
133{
134 EdgeInfo
135 *edges;
136
cristybb503372010-05-27 20:51:26 +0000137 size_t
cristy3ed852e2009-09-05 21:47:34 +0000138 number_edges;
139} PolygonInfo;
140
141typedef enum
142{
143 MoveToCode,
144 OpenCode,
145 GhostlineCode,
146 LineToCode,
147 EndCode
148} PathInfoCode;
149
150typedef struct _PathInfo
151{
152 PointInfo
153 point;
154
155 PathInfoCode
156 code;
157} PathInfo;
158
159/*
160 Forward declarations.
161*/
162static MagickBooleanType
cristy947cb4c2011-10-20 18:41:46 +0000163 DrawStrokePolygon(Image *,const DrawInfo *,const PrimitiveInfo *,
164 ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +0000165
166static PrimitiveInfo
167 *TraceStrokePolygon(const DrawInfo *,const PrimitiveInfo *);
168
cristybb503372010-05-27 20:51:26 +0000169static size_t
cristy3ed852e2009-09-05 21:47:34 +0000170 TracePath(PrimitiveInfo *,const char *);
171
172static void
173 TraceArc(PrimitiveInfo *,const PointInfo,const PointInfo,const PointInfo),
174 TraceArcPath(PrimitiveInfo *,const PointInfo,const PointInfo,const PointInfo,
cristya19f1d72012-08-07 18:24:38 +0000175 const double,const MagickBooleanType,const MagickBooleanType),
cristybb503372010-05-27 20:51:26 +0000176 TraceBezier(PrimitiveInfo *,const size_t),
cristy3ed852e2009-09-05 21:47:34 +0000177 TraceCircle(PrimitiveInfo *,const PointInfo,const PointInfo),
cristye6bc7772014-11-23 03:37:33 +0000178 TraceEllipse(PrimitiveInfo *,const PointInfo,const PointInfo,
179 const PointInfo),
cristy3ed852e2009-09-05 21:47:34 +0000180 TraceLine(PrimitiveInfo *,const PointInfo,const PointInfo),
181 TraceRectangle(PrimitiveInfo *,const PointInfo,const PointInfo),
182 TraceRoundRectangle(PrimitiveInfo *,const PointInfo,const PointInfo,
183 PointInfo),
cristya19f1d72012-08-07 18:24:38 +0000184 TraceSquareLinecap(PrimitiveInfo *,const size_t,const double);
cristy3ed852e2009-09-05 21:47:34 +0000185
186/*
187%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
188% %
189% %
190% %
191% A c q u i r e D r a w I n f o %
192% %
193% %
194% %
195%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
196%
197% AcquireDrawInfo() returns a DrawInfo structure properly initialized.
198%
199% The format of the AcquireDrawInfo method is:
200%
201% DrawInfo *AcquireDrawInfo(void)
202%
203*/
204MagickExport DrawInfo *AcquireDrawInfo(void)
205{
206 DrawInfo
207 *draw_info;
208
cristy73bd4a52010-10-05 11:24:23 +0000209 draw_info=(DrawInfo *) AcquireMagickMemory(sizeof(*draw_info));
cristy3ed852e2009-09-05 21:47:34 +0000210 if (draw_info == (DrawInfo *) NULL)
211 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
212 GetDrawInfo((ImageInfo *) NULL,draw_info);
213 return(draw_info);
214}
215
216/*
217%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
218% %
219% %
220% %
221% C l o n e D r a w I n f o %
222% %
223% %
224% %
225%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
226%
anthony36fe1752011-09-29 11:28:37 +0000227% CloneDrawInfo() makes a copy of the given draw_info structure. If NULL
cristy430522c2012-09-03 00:07:16 +0000228% is specified, a new DrawInfo structure is created initialized to default
229% values.
cristy3ed852e2009-09-05 21:47:34 +0000230%
231% The format of the CloneDrawInfo method is:
232%
233% DrawInfo *CloneDrawInfo(const ImageInfo *image_info,
234% const DrawInfo *draw_info)
235%
236% A description of each parameter follows:
237%
238% o image_info: the image info.
239%
240% o draw_info: the draw info.
241%
242*/
243MagickExport DrawInfo *CloneDrawInfo(const ImageInfo *image_info,
244 const DrawInfo *draw_info)
245{
246 DrawInfo
247 *clone_info;
248
cristy947cb4c2011-10-20 18:41:46 +0000249 ExceptionInfo
250 *exception;
251
cristy73bd4a52010-10-05 11:24:23 +0000252 clone_info=(DrawInfo *) AcquireMagickMemory(sizeof(*clone_info));
cristy3ed852e2009-09-05 21:47:34 +0000253 if (clone_info == (DrawInfo *) NULL)
254 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
255 GetDrawInfo(image_info,clone_info);
256 if (draw_info == (DrawInfo *) NULL)
257 return(clone_info);
cristy947cb4c2011-10-20 18:41:46 +0000258 exception=AcquireExceptionInfo();
cristyc3813762015-06-07 13:41:56 +0000259 if (clone_info->primitive != (char *) NULL)
260 (void) CloneString(&clone_info->primitive,draw_info->primitive);
261 if (draw_info->geometry != (char *) NULL)
262 (void) CloneString(&clone_info->geometry,draw_info->geometry);
cristy3ed852e2009-09-05 21:47:34 +0000263 clone_info->viewbox=draw_info->viewbox;
264 clone_info->affine=draw_info->affine;
265 clone_info->gravity=draw_info->gravity;
266 clone_info->fill=draw_info->fill;
267 clone_info->stroke=draw_info->stroke;
268 clone_info->stroke_width=draw_info->stroke_width;
269 if (draw_info->fill_pattern != (Image *) NULL)
270 clone_info->fill_pattern=CloneImage(draw_info->fill_pattern,0,0,MagickTrue,
cristy947cb4c2011-10-20 18:41:46 +0000271 exception);
cristy3ed852e2009-09-05 21:47:34 +0000272 if (draw_info->stroke_pattern != (Image *) NULL)
273 clone_info->stroke_pattern=CloneImage(draw_info->stroke_pattern,0,0,
cristy947cb4c2011-10-20 18:41:46 +0000274 MagickTrue,exception);
cristy3ed852e2009-09-05 21:47:34 +0000275 clone_info->stroke_antialias=draw_info->stroke_antialias;
276 clone_info->text_antialias=draw_info->text_antialias;
277 clone_info->fill_rule=draw_info->fill_rule;
278 clone_info->linecap=draw_info->linecap;
279 clone_info->linejoin=draw_info->linejoin;
280 clone_info->miterlimit=draw_info->miterlimit;
281 clone_info->dash_offset=draw_info->dash_offset;
282 clone_info->decorate=draw_info->decorate;
283 clone_info->compose=draw_info->compose;
cristyc3813762015-06-07 13:41:56 +0000284 if (draw_info->text != (char *) NULL)
285 (void) CloneString(&clone_info->text,draw_info->text);
286 if (draw_info->font != (char *) NULL)
287 (void) CloneString(&clone_info->font,draw_info->font);
288 if (draw_info->metrics != (char *) NULL)
289 (void) CloneString(&clone_info->metrics,draw_info->metrics);
290 if (draw_info->family != (char *) NULL)
291 (void) CloneString(&clone_info->family,draw_info->family);
cristy3ed852e2009-09-05 21:47:34 +0000292 clone_info->style=draw_info->style;
293 clone_info->stretch=draw_info->stretch;
294 clone_info->weight=draw_info->weight;
cristyc3813762015-06-07 13:41:56 +0000295 if (draw_info->encoding != (char *) NULL)
296 (void) CloneString(&clone_info->encoding,draw_info->encoding);
cristy3ed852e2009-09-05 21:47:34 +0000297 clone_info->pointsize=draw_info->pointsize;
298 clone_info->kerning=draw_info->kerning;
cristyb32b90a2009-09-07 21:45:48 +0000299 clone_info->interline_spacing=draw_info->interline_spacing;
cristy3ed852e2009-09-05 21:47:34 +0000300 clone_info->interword_spacing=draw_info->interword_spacing;
cristyc9b12952010-03-28 01:12:28 +0000301 clone_info->direction=draw_info->direction;
cristyc3813762015-06-07 13:41:56 +0000302 if (draw_info->density != (char *) NULL)
303 (void) CloneString(&clone_info->density,draw_info->density);
cristy3ed852e2009-09-05 21:47:34 +0000304 clone_info->align=draw_info->align;
305 clone_info->undercolor=draw_info->undercolor;
306 clone_info->border_color=draw_info->border_color;
cristyc3813762015-06-07 13:41:56 +0000307 if (draw_info->server_name != (char *) NULL)
308 (void) CloneString(&clone_info->server_name,draw_info->server_name);
cristy3ed852e2009-09-05 21:47:34 +0000309 if (draw_info->dash_pattern != (double *) NULL)
310 {
cristybb503372010-05-27 20:51:26 +0000311 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000312 x;
313
Cristy911b5862016-06-24 17:45:06 -0400314 for (x=0; fabs(draw_info->dash_pattern[x]) >= DrawEpsilon; x++) ;
cristy3ed852e2009-09-05 21:47:34 +0000315 clone_info->dash_pattern=(double *) AcquireQuantumMemory((size_t) x+1UL,
316 sizeof(*clone_info->dash_pattern));
317 if (clone_info->dash_pattern == (double *) NULL)
318 ThrowFatalException(ResourceLimitFatalError,
319 "UnableToAllocateDashPattern");
320 (void) CopyMagickMemory(clone_info->dash_pattern,draw_info->dash_pattern,
321 (size_t) (x+1)*sizeof(*clone_info->dash_pattern));
322 }
323 clone_info->gradient=draw_info->gradient;
324 if (draw_info->gradient.stops != (StopInfo *) NULL)
325 {
cristybb503372010-05-27 20:51:26 +0000326 size_t
cristy3ed852e2009-09-05 21:47:34 +0000327 number_stops;
328
329 number_stops=clone_info->gradient.number_stops;
330 clone_info->gradient.stops=(StopInfo *) AcquireQuantumMemory((size_t)
331 number_stops,sizeof(*clone_info->gradient.stops));
332 if (clone_info->gradient.stops == (StopInfo *) NULL)
333 ThrowFatalException(ResourceLimitFatalError,
334 "UnableToAllocateDashPattern");
335 (void) CopyMagickMemory(clone_info->gradient.stops,
336 draw_info->gradient.stops,(size_t) number_stops*
337 sizeof(*clone_info->gradient.stops));
338 }
cristyc3813762015-06-07 13:41:56 +0000339 if (draw_info->clip_mask != (char *) NULL)
340 (void) CloneString(&clone_info->clip_mask,draw_info->clip_mask);
cristy3ed852e2009-09-05 21:47:34 +0000341 clone_info->bounds=draw_info->bounds;
342 clone_info->clip_units=draw_info->clip_units;
343 clone_info->render=draw_info->render;
Cristy48bcfe02016-07-13 18:05:02 -0400344 clone_info->fill_alpha=draw_info->fill_alpha;
345 clone_info->stroke_alpha=draw_info->stroke_alpha;
cristy3ed852e2009-09-05 21:47:34 +0000346 clone_info->element_reference=draw_info->element_reference;
347 clone_info->debug=IsEventLogging();
cristy947cb4c2011-10-20 18:41:46 +0000348 exception=DestroyExceptionInfo(exception);
cristy3ed852e2009-09-05 21:47:34 +0000349 return(clone_info);
350}
351
352/*
353%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
354% %
355% %
356% %
357+ C o n v e r t P a t h T o P o l y g o n %
358% %
359% %
360% %
361%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
362%
363% ConvertPathToPolygon() converts a path to the more efficient sorted
364% rendering form.
365%
366% The format of the ConvertPathToPolygon method is:
367%
368% PolygonInfo *ConvertPathToPolygon(const DrawInfo *draw_info,
369% const PathInfo *path_info)
370%
371% A description of each parameter follows:
372%
373% o Method ConvertPathToPolygon returns the path in a more efficient sorted
374% rendering form of type PolygonInfo.
375%
376% o draw_info: Specifies a pointer to an DrawInfo structure.
377%
378% o path_info: Specifies a pointer to an PathInfo structure.
379%
380%
381*/
382
383#if defined(__cplusplus) || defined(c_plusplus)
384extern "C" {
385#endif
386
387static int CompareEdges(const void *x,const void *y)
388{
389 register const EdgeInfo
390 *p,
391 *q;
392
393 /*
394 Compare two edges.
395 */
396 p=(const EdgeInfo *) x;
397 q=(const EdgeInfo *) y;
Cristy911b5862016-06-24 17:45:06 -0400398 if ((p->points[0].y-DrawEpsilon) > q->points[0].y)
cristy3ed852e2009-09-05 21:47:34 +0000399 return(1);
Cristy911b5862016-06-24 17:45:06 -0400400 if ((p->points[0].y+DrawEpsilon) < q->points[0].y)
cristy3ed852e2009-09-05 21:47:34 +0000401 return(-1);
Cristy911b5862016-06-24 17:45:06 -0400402 if ((p->points[0].x-DrawEpsilon) > q->points[0].x)
cristy3ed852e2009-09-05 21:47:34 +0000403 return(1);
Cristy911b5862016-06-24 17:45:06 -0400404 if ((p->points[0].x+DrawEpsilon) < q->points[0].x)
cristy3ed852e2009-09-05 21:47:34 +0000405 return(-1);
406 if (((p->points[1].x-p->points[0].x)*(q->points[1].y-q->points[0].y)-
407 (p->points[1].y-p->points[0].y)*(q->points[1].x-q->points[0].x)) > 0.0)
408 return(1);
409 return(-1);
410}
411
412#if defined(__cplusplus) || defined(c_plusplus)
413}
414#endif
415
416static void LogPolygonInfo(const PolygonInfo *polygon_info)
417{
418 register EdgeInfo
419 *p;
420
cristybb503372010-05-27 20:51:26 +0000421 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000422 i,
423 j;
424
425 (void) LogMagickEvent(DrawEvent,GetMagickModule()," begin active-edge");
426 p=polygon_info->edges;
cristybb503372010-05-27 20:51:26 +0000427 for (i=0; i < (ssize_t) polygon_info->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +0000428 {
cristye8c25f92010-06-03 00:53:06 +0000429 (void) LogMagickEvent(DrawEvent,GetMagickModule()," edge %.20g:",
430 (double) i);
cristy3ed852e2009-09-05 21:47:34 +0000431 (void) LogMagickEvent(DrawEvent,GetMagickModule()," direction: %s",
432 p->direction != MagickFalse ? "down" : "up");
433 (void) LogMagickEvent(DrawEvent,GetMagickModule()," ghostline: %s",
434 p->ghostline != MagickFalse ? "transparent" : "opaque");
435 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
Cristy4280d542016-06-11 12:48:49 -0400436 " bounds: %g,%g - %g,%g",p->bounds.x1,p->bounds.y1,
cristy8cd5b312010-01-07 01:10:24 +0000437 p->bounds.x2,p->bounds.y2);
cristybb503372010-05-27 20:51:26 +0000438 for (j=0; j < (ssize_t) p->number_points; j++)
Cristy4280d542016-06-11 12:48:49 -0400439 (void) LogMagickEvent(DrawEvent,GetMagickModule()," %g,%g",
cristy3ed852e2009-09-05 21:47:34 +0000440 p->points[j].x,p->points[j].y);
441 p++;
442 }
443 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end active-edge");
444}
445
cristybb503372010-05-27 20:51:26 +0000446static void ReversePoints(PointInfo *points,const size_t number_points)
cristy3ed852e2009-09-05 21:47:34 +0000447{
448 PointInfo
449 point;
450
cristybb503372010-05-27 20:51:26 +0000451 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000452 i;
453
cristybb503372010-05-27 20:51:26 +0000454 for (i=0; i < (ssize_t) (number_points >> 1); i++)
cristy3ed852e2009-09-05 21:47:34 +0000455 {
456 point=points[i];
457 points[i]=points[number_points-(i+1)];
458 points[number_points-(i+1)]=point;
459 }
460}
461
dirkd2a7a2d2016-03-17 23:07:42 +0100462static PolygonInfo *ConvertPathToPolygon(const PathInfo *path_info)
cristy3ed852e2009-09-05 21:47:34 +0000463{
cristycee97112010-05-28 00:44:52 +0000464 long
cristy3ed852e2009-09-05 21:47:34 +0000465 direction,
466 next_direction;
467
468 PointInfo
469 point,
470 *points;
471
472 PolygonInfo
473 *polygon_info;
474
475 SegmentInfo
476 bounds;
477
cristybb503372010-05-27 20:51:26 +0000478 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000479 i,
480 n;
481
482 MagickBooleanType
483 ghostline;
484
cristybb503372010-05-27 20:51:26 +0000485 size_t
cristy3ed852e2009-09-05 21:47:34 +0000486 edge,
487 number_edges,
488 number_points;
489
490 /*
491 Convert a path to the more efficient sorted rendering form.
492 */
cristy73bd4a52010-10-05 11:24:23 +0000493 polygon_info=(PolygonInfo *) AcquireMagickMemory(sizeof(*polygon_info));
cristy3ed852e2009-09-05 21:47:34 +0000494 if (polygon_info == (PolygonInfo *) NULL)
495 return((PolygonInfo *) NULL);
496 number_edges=16;
Cristy49201ac2016-05-18 07:17:34 -0400497 polygon_info->edges=(EdgeInfo *) AcquireQuantumMemory(number_edges,
cristy3ed852e2009-09-05 21:47:34 +0000498 sizeof(*polygon_info->edges));
499 if (polygon_info->edges == (EdgeInfo *) NULL)
500 return((PolygonInfo *) NULL);
Cristy49201ac2016-05-18 07:17:34 -0400501 (void) ResetMagickMemory(polygon_info->edges,0,number_edges*
502 sizeof(*polygon_info->edges));
cristy3ed852e2009-09-05 21:47:34 +0000503 direction=0;
504 edge=0;
505 ghostline=MagickFalse;
506 n=0;
507 number_points=0;
508 points=(PointInfo *) NULL;
509 (void) ResetMagickMemory(&point,0,sizeof(point));
510 (void) ResetMagickMemory(&bounds,0,sizeof(bounds));
511 for (i=0; path_info[i].code != EndCode; i++)
512 {
513 if ((path_info[i].code == MoveToCode) || (path_info[i].code == OpenCode) ||
514 (path_info[i].code == GhostlineCode))
515 {
516 /*
517 Move to.
518 */
519 if ((points != (PointInfo *) NULL) && (n >= 2))
520 {
521 if (edge == number_edges)
522 {
523 number_edges<<=1;
524 polygon_info->edges=(EdgeInfo *) ResizeQuantumMemory(
525 polygon_info->edges,(size_t) number_edges,
526 sizeof(*polygon_info->edges));
527 if (polygon_info->edges == (EdgeInfo *) NULL)
528 return((PolygonInfo *) NULL);
529 }
cristybb503372010-05-27 20:51:26 +0000530 polygon_info->edges[edge].number_points=(size_t) n;
cristy3ed852e2009-09-05 21:47:34 +0000531 polygon_info->edges[edge].scanline=(-1.0);
532 polygon_info->edges[edge].highwater=0;
533 polygon_info->edges[edge].ghostline=ghostline;
cristybb503372010-05-27 20:51:26 +0000534 polygon_info->edges[edge].direction=(ssize_t) (direction > 0);
cristy3ed852e2009-09-05 21:47:34 +0000535 if (direction < 0)
cristybb503372010-05-27 20:51:26 +0000536 ReversePoints(points,(size_t) n);
cristy3ed852e2009-09-05 21:47:34 +0000537 polygon_info->edges[edge].points=points;
538 polygon_info->edges[edge].bounds=bounds;
539 polygon_info->edges[edge].bounds.y1=points[0].y;
540 polygon_info->edges[edge].bounds.y2=points[n-1].y;
541 points=(PointInfo *) NULL;
542 ghostline=MagickFalse;
543 edge++;
544 }
545 if (points == (PointInfo *) NULL)
546 {
547 number_points=16;
548 points=(PointInfo *) AcquireQuantumMemory((size_t) number_points,
549 sizeof(*points));
550 if (points == (PointInfo *) NULL)
551 return((PolygonInfo *) NULL);
552 }
553 ghostline=path_info[i].code == GhostlineCode ? MagickTrue : MagickFalse;
554 point=path_info[i].point;
555 points[0]=point;
556 bounds.x1=point.x;
557 bounds.x2=point.x;
558 direction=0;
559 n=1;
560 continue;
561 }
562 /*
563 Line to.
564 */
565 next_direction=((path_info[i].point.y > point.y) ||
Cristy911b5862016-06-24 17:45:06 -0400566 ((fabs(path_info[i].point.y-point.y) < DrawEpsilon) &&
cristy3ed852e2009-09-05 21:47:34 +0000567 (path_info[i].point.x > point.x))) ? 1 : -1;
cristy15cace92014-01-14 16:37:23 +0000568 if ((points != (PointInfo *) NULL) && (direction != 0) &&
569 (direction != next_direction))
cristy3ed852e2009-09-05 21:47:34 +0000570 {
571 /*
572 New edge.
573 */
574 point=points[n-1];
575 if (edge == number_edges)
576 {
577 number_edges<<=1;
578 polygon_info->edges=(EdgeInfo *) ResizeQuantumMemory(
579 polygon_info->edges,(size_t) number_edges,
580 sizeof(*polygon_info->edges));
581 if (polygon_info->edges == (EdgeInfo *) NULL)
582 return((PolygonInfo *) NULL);
583 }
cristybb503372010-05-27 20:51:26 +0000584 polygon_info->edges[edge].number_points=(size_t) n;
cristy3ed852e2009-09-05 21:47:34 +0000585 polygon_info->edges[edge].scanline=(-1.0);
586 polygon_info->edges[edge].highwater=0;
587 polygon_info->edges[edge].ghostline=ghostline;
cristybb503372010-05-27 20:51:26 +0000588 polygon_info->edges[edge].direction=(ssize_t) (direction > 0);
cristy3ed852e2009-09-05 21:47:34 +0000589 if (direction < 0)
cristybb503372010-05-27 20:51:26 +0000590 ReversePoints(points,(size_t) n);
cristy3ed852e2009-09-05 21:47:34 +0000591 polygon_info->edges[edge].points=points;
592 polygon_info->edges[edge].bounds=bounds;
593 polygon_info->edges[edge].bounds.y1=points[0].y;
594 polygon_info->edges[edge].bounds.y2=points[n-1].y;
595 number_points=16;
596 points=(PointInfo *) AcquireQuantumMemory((size_t) number_points,
597 sizeof(*points));
598 if (points == (PointInfo *) NULL)
599 return((PolygonInfo *) NULL);
600 n=1;
601 ghostline=MagickFalse;
602 points[0]=point;
603 bounds.x1=point.x;
604 bounds.x2=point.x;
605 edge++;
606 }
607 direction=next_direction;
608 if (points == (PointInfo *) NULL)
609 continue;
cristybb503372010-05-27 20:51:26 +0000610 if (n == (ssize_t) number_points)
cristy3ed852e2009-09-05 21:47:34 +0000611 {
612 number_points<<=1;
613 points=(PointInfo *) ResizeQuantumMemory(points,(size_t) number_points,
614 sizeof(*points));
615 if (points == (PointInfo *) NULL)
616 return((PolygonInfo *) NULL);
617 }
618 point=path_info[i].point;
619 points[n]=point;
620 if (point.x < bounds.x1)
621 bounds.x1=point.x;
622 if (point.x > bounds.x2)
623 bounds.x2=point.x;
624 n++;
625 }
626 if (points != (PointInfo *) NULL)
627 {
628 if (n < 2)
629 points=(PointInfo *) RelinquishMagickMemory(points);
630 else
631 {
632 if (edge == number_edges)
633 {
634 number_edges<<=1;
635 polygon_info->edges=(EdgeInfo *) ResizeQuantumMemory(
636 polygon_info->edges,(size_t) number_edges,
637 sizeof(*polygon_info->edges));
638 if (polygon_info->edges == (EdgeInfo *) NULL)
639 return((PolygonInfo *) NULL);
640 }
cristybb503372010-05-27 20:51:26 +0000641 polygon_info->edges[edge].number_points=(size_t) n;
cristy3ed852e2009-09-05 21:47:34 +0000642 polygon_info->edges[edge].scanline=(-1.0);
643 polygon_info->edges[edge].highwater=0;
644 polygon_info->edges[edge].ghostline=ghostline;
cristybb503372010-05-27 20:51:26 +0000645 polygon_info->edges[edge].direction=(ssize_t) (direction > 0);
cristy3ed852e2009-09-05 21:47:34 +0000646 if (direction < 0)
cristybb503372010-05-27 20:51:26 +0000647 ReversePoints(points,(size_t) n);
cristy3ed852e2009-09-05 21:47:34 +0000648 polygon_info->edges[edge].points=points;
649 polygon_info->edges[edge].bounds=bounds;
650 polygon_info->edges[edge].bounds.y1=points[0].y;
651 polygon_info->edges[edge].bounds.y2=points[n-1].y;
652 ghostline=MagickFalse;
653 edge++;
654 }
655 }
656 polygon_info->number_edges=edge;
657 qsort(polygon_info->edges,(size_t) polygon_info->number_edges,
658 sizeof(*polygon_info->edges),CompareEdges);
659 if (IsEventLogging() != MagickFalse)
660 LogPolygonInfo(polygon_info);
661 return(polygon_info);
662}
663
664/*
665%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
666% %
667% %
668% %
669+ C o n v e r t P r i m i t i v e T o P a t h %
670% %
671% %
672% %
673%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
674%
675% ConvertPrimitiveToPath() converts a PrimitiveInfo structure into a vector
676% path structure.
677%
678% The format of the ConvertPrimitiveToPath method is:
679%
680% PathInfo *ConvertPrimitiveToPath(const DrawInfo *draw_info,
681% const PrimitiveInfo *primitive_info)
682%
683% A description of each parameter follows:
684%
685% o Method ConvertPrimitiveToPath returns a vector path structure of type
686% PathInfo.
687%
688% o draw_info: a structure of type DrawInfo.
689%
690% o primitive_info: Specifies a pointer to an PrimitiveInfo structure.
691%
692%
693*/
694
695static void LogPathInfo(const PathInfo *path_info)
696{
697 register const PathInfo
698 *p;
699
700 (void) LogMagickEvent(DrawEvent,GetMagickModule()," begin vector-path");
701 for (p=path_info; p->code != EndCode; p++)
702 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
Cristy4280d542016-06-11 12:48:49 -0400703 " %g,%g %s",p->point.x,p->point.y,p->code == GhostlineCode ?
cristy3ed852e2009-09-05 21:47:34 +0000704 "moveto ghostline" : p->code == OpenCode ? "moveto open" :
705 p->code == MoveToCode ? "moveto" : p->code == LineToCode ? "lineto" :
706 "?");
707 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end vector-path");
708}
709
dirkd2a7a2d2016-03-17 23:07:42 +0100710static PathInfo *ConvertPrimitiveToPath(const PrimitiveInfo *primitive_info)
cristy3ed852e2009-09-05 21:47:34 +0000711{
cristy3ed852e2009-09-05 21:47:34 +0000712 PathInfo
713 *path_info;
714
715 PathInfoCode
716 code;
717
718 PointInfo
719 p,
720 q;
721
cristybb503372010-05-27 20:51:26 +0000722 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000723 i,
724 n;
725
cristy826a5472010-08-31 23:21:38 +0000726 ssize_t
727 coordinates,
728 start;
729
cristy3ed852e2009-09-05 21:47:34 +0000730 /*
731 Converts a PrimitiveInfo structure into a vector path structure.
732 */
733 switch (primitive_info->primitive)
734 {
dirk34e1a212015-03-22 16:45:12 +0000735 case AlphaPrimitive:
cristy3ed852e2009-09-05 21:47:34 +0000736 case ColorPrimitive:
cristy3ed852e2009-09-05 21:47:34 +0000737 case ImagePrimitive:
dirk34e1a212015-03-22 16:45:12 +0000738 case PointPrimitive:
739 case TextPrimitive:
cristy3ed852e2009-09-05 21:47:34 +0000740 return((PathInfo *) NULL);
741 default:
742 break;
743 }
744 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++) ;
745 path_info=(PathInfo *) AcquireQuantumMemory((size_t) (2UL*i+3UL),
746 sizeof(*path_info));
747 if (path_info == (PathInfo *) NULL)
748 return((PathInfo *) NULL);
749 coordinates=0;
750 n=0;
751 p.x=(-1.0);
752 p.y=(-1.0);
753 q.x=(-1.0);
754 q.y=(-1.0);
755 start=0;
756 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++)
757 {
758 code=LineToCode;
759 if (coordinates <= 0)
760 {
cristybb503372010-05-27 20:51:26 +0000761 coordinates=(ssize_t) primitive_info[i].coordinates;
cristy3ed852e2009-09-05 21:47:34 +0000762 p=primitive_info[i].point;
763 start=n;
764 code=MoveToCode;
765 }
766 coordinates--;
767 /*
768 Eliminate duplicate points.
769 */
Cristy911b5862016-06-24 17:45:06 -0400770 if ((i == 0) || (fabs(q.x-primitive_info[i].point.x) >= DrawEpsilon) ||
771 (fabs(q.y-primitive_info[i].point.y) >= DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +0000772 {
773 path_info[n].code=code;
774 path_info[n].point=primitive_info[i].point;
775 q=primitive_info[i].point;
776 n++;
777 }
778 if (coordinates > 0)
779 continue;
Cristy911b5862016-06-24 17:45:06 -0400780 if ((fabs(p.x-primitive_info[i].point.x) < DrawEpsilon) &&
781 (fabs(p.y-primitive_info[i].point.y) < DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +0000782 continue;
783 /*
784 Mark the p point as open if it does not match the q.
785 */
786 path_info[start].code=OpenCode;
787 path_info[n].code=GhostlineCode;
788 path_info[n].point=primitive_info[i].point;
789 n++;
790 path_info[n].code=LineToCode;
791 path_info[n].point=p;
792 n++;
793 }
794 path_info[n].code=EndCode;
795 path_info[n].point.x=0.0;
796 path_info[n].point.y=0.0;
797 if (IsEventLogging() != MagickFalse)
798 LogPathInfo(path_info);
799 return(path_info);
800}
801
802/*
803%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
804% %
805% %
806% %
807% D e s t r o y D r a w I n f o %
808% %
809% %
810% %
811%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
812%
813% DestroyDrawInfo() deallocates memory associated with an DrawInfo
814% structure.
815%
816% The format of the DestroyDrawInfo method is:
817%
818% DrawInfo *DestroyDrawInfo(DrawInfo *draw_info)
819%
820% A description of each parameter follows:
821%
822% o draw_info: the draw info.
823%
824*/
825MagickExport DrawInfo *DestroyDrawInfo(DrawInfo *draw_info)
826{
827 if (draw_info->debug != MagickFalse)
828 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
829 assert(draw_info != (DrawInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000830 assert(draw_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000831 if (draw_info->primitive != (char *) NULL)
832 draw_info->primitive=DestroyString(draw_info->primitive);
833 if (draw_info->text != (char *) NULL)
834 draw_info->text=DestroyString(draw_info->text);
835 if (draw_info->geometry != (char *) NULL)
836 draw_info->geometry=DestroyString(draw_info->geometry);
cristy3ed852e2009-09-05 21:47:34 +0000837 if (draw_info->fill_pattern != (Image *) NULL)
838 draw_info->fill_pattern=DestroyImage(draw_info->fill_pattern);
839 if (draw_info->stroke_pattern != (Image *) NULL)
840 draw_info->stroke_pattern=DestroyImage(draw_info->stroke_pattern);
841 if (draw_info->font != (char *) NULL)
842 draw_info->font=DestroyString(draw_info->font);
843 if (draw_info->metrics != (char *) NULL)
844 draw_info->metrics=DestroyString(draw_info->metrics);
845 if (draw_info->family != (char *) NULL)
846 draw_info->family=DestroyString(draw_info->family);
847 if (draw_info->encoding != (char *) NULL)
848 draw_info->encoding=DestroyString(draw_info->encoding);
849 if (draw_info->density != (char *) NULL)
850 draw_info->density=DestroyString(draw_info->density);
851 if (draw_info->server_name != (char *) NULL)
852 draw_info->server_name=(char *)
853 RelinquishMagickMemory(draw_info->server_name);
854 if (draw_info->dash_pattern != (double *) NULL)
855 draw_info->dash_pattern=(double *) RelinquishMagickMemory(
856 draw_info->dash_pattern);
857 if (draw_info->gradient.stops != (StopInfo *) NULL)
858 draw_info->gradient.stops=(StopInfo *) RelinquishMagickMemory(
859 draw_info->gradient.stops);
860 if (draw_info->clip_mask != (char *) NULL)
861 draw_info->clip_mask=DestroyString(draw_info->clip_mask);
cristye1c94d92015-06-28 12:16:33 +0000862 draw_info->signature=(~MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000863 draw_info=(DrawInfo *) RelinquishMagickMemory(draw_info);
864 return(draw_info);
865}
866
867/*
868%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
869% %
870% %
871% %
872+ D e s t r o y E d g e %
873% %
874% %
875% %
876%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
877%
878% DestroyEdge() destroys the specified polygon edge.
879%
880% The format of the DestroyEdge method is:
881%
cristybb503372010-05-27 20:51:26 +0000882% ssize_t DestroyEdge(PolygonInfo *polygon_info,const int edge)
cristy3ed852e2009-09-05 21:47:34 +0000883%
884% A description of each parameter follows:
885%
886% o polygon_info: Specifies a pointer to an PolygonInfo structure.
887%
888% o edge: the polygon edge number to destroy.
889%
890*/
cristybb503372010-05-27 20:51:26 +0000891static size_t DestroyEdge(PolygonInfo *polygon_info,
892 const size_t edge)
cristy3ed852e2009-09-05 21:47:34 +0000893{
894 assert(edge < polygon_info->number_edges);
895 polygon_info->edges[edge].points=(PointInfo *) RelinquishMagickMemory(
896 polygon_info->edges[edge].points);
897 polygon_info->number_edges--;
898 if (edge < polygon_info->number_edges)
899 (void) CopyMagickMemory(polygon_info->edges+edge,polygon_info->edges+edge+1,
900 (size_t) (polygon_info->number_edges-edge)*sizeof(*polygon_info->edges));
901 return(polygon_info->number_edges);
902}
903
904/*
905%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
906% %
907% %
908% %
909+ D e s t r o y P o l y g o n I n f o %
910% %
911% %
912% %
913%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
914%
915% DestroyPolygonInfo() destroys the PolygonInfo data structure.
916%
917% The format of the DestroyPolygonInfo method is:
918%
919% PolygonInfo *DestroyPolygonInfo(PolygonInfo *polygon_info)
920%
921% A description of each parameter follows:
922%
923% o polygon_info: Specifies a pointer to an PolygonInfo structure.
924%
925*/
926static PolygonInfo *DestroyPolygonInfo(PolygonInfo *polygon_info)
927{
cristybb503372010-05-27 20:51:26 +0000928 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000929 i;
930
cristybb503372010-05-27 20:51:26 +0000931 for (i=0; i < (ssize_t) polygon_info->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +0000932 polygon_info->edges[i].points=(PointInfo *)
933 RelinquishMagickMemory(polygon_info->edges[i].points);
934 polygon_info->edges=(EdgeInfo *) RelinquishMagickMemory(polygon_info->edges);
935 return((PolygonInfo *) RelinquishMagickMemory(polygon_info));
936}
937
938/*
939%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
940% %
941% %
942% %
943% D r a w A f f i n e I m a g e %
944% %
945% %
946% %
947%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
948%
949% DrawAffineImage() composites the source over the destination image as
950% dictated by the affine transform.
951%
952% The format of the DrawAffineImage method is:
953%
954% MagickBooleanType DrawAffineImage(Image *image,const Image *source,
cristy947cb4c2011-10-20 18:41:46 +0000955% const AffineMatrix *affine,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000956%
957% A description of each parameter follows:
958%
959% o image: the image.
960%
961% o source: the source image.
962%
963% o affine: the affine transform.
964%
cristy947cb4c2011-10-20 18:41:46 +0000965% o exception: return any errors or warnings in this structure.
966%
cristy3ed852e2009-09-05 21:47:34 +0000967*/
cristyefa9e8a2011-11-07 01:56:51 +0000968
cristy3ed852e2009-09-05 21:47:34 +0000969static SegmentInfo AffineEdge(const Image *image,const AffineMatrix *affine,
970 const double y,const SegmentInfo *edge)
971{
972 double
973 intercept,
974 z;
975
976 register double
977 x;
978
979 SegmentInfo
980 inverse_edge;
981
982 /*
983 Determine left and right edges.
984 */
985 inverse_edge.x1=edge->x1;
986 inverse_edge.y1=edge->y1;
987 inverse_edge.x2=edge->x2;
988 inverse_edge.y2=edge->y2;
989 z=affine->ry*y+affine->tx;
Cristy911b5862016-06-24 17:45:06 -0400990 if (affine->sx >= DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +0000991 {
992 intercept=(-z/affine->sx);
cristyefa9e8a2011-11-07 01:56:51 +0000993 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +0000994 if (x > inverse_edge.x1)
995 inverse_edge.x1=x;
996 intercept=(-z+(double) image->columns)/affine->sx;
cristyefa9e8a2011-11-07 01:56:51 +0000997 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +0000998 if (x < inverse_edge.x2)
999 inverse_edge.x2=x;
1000 }
1001 else
Cristy911b5862016-06-24 17:45:06 -04001002 if (affine->sx < -DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00001003 {
1004 intercept=(-z+(double) image->columns)/affine->sx;
cristyefa9e8a2011-11-07 01:56:51 +00001005 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001006 if (x > inverse_edge.x1)
1007 inverse_edge.x1=x;
1008 intercept=(-z/affine->sx);
cristyefa9e8a2011-11-07 01:56:51 +00001009 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001010 if (x < inverse_edge.x2)
1011 inverse_edge.x2=x;
1012 }
1013 else
cristybb503372010-05-27 20:51:26 +00001014 if ((z < 0.0) || ((size_t) floor(z+0.5) >= image->columns))
cristy3ed852e2009-09-05 21:47:34 +00001015 {
1016 inverse_edge.x2=edge->x1;
1017 return(inverse_edge);
1018 }
1019 /*
1020 Determine top and bottom edges.
1021 */
1022 z=affine->sy*y+affine->ty;
Cristy911b5862016-06-24 17:45:06 -04001023 if (affine->rx >= DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00001024 {
1025 intercept=(-z/affine->rx);
cristyefa9e8a2011-11-07 01:56:51 +00001026 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001027 if (x > inverse_edge.x1)
1028 inverse_edge.x1=x;
1029 intercept=(-z+(double) image->rows)/affine->rx;
cristyefa9e8a2011-11-07 01:56:51 +00001030 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001031 if (x < inverse_edge.x2)
1032 inverse_edge.x2=x;
1033 }
1034 else
Cristy911b5862016-06-24 17:45:06 -04001035 if (affine->rx < -DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00001036 {
1037 intercept=(-z+(double) image->rows)/affine->rx;
cristyefa9e8a2011-11-07 01:56:51 +00001038 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001039 if (x > inverse_edge.x1)
1040 inverse_edge.x1=x;
1041 intercept=(-z/affine->rx);
cristyefa9e8a2011-11-07 01:56:51 +00001042 x=intercept;
cristy3ed852e2009-09-05 21:47:34 +00001043 if (x < inverse_edge.x2)
1044 inverse_edge.x2=x;
1045 }
1046 else
cristybb503372010-05-27 20:51:26 +00001047 if ((z < 0.0) || ((size_t) floor(z+0.5) >= image->rows))
cristy3ed852e2009-09-05 21:47:34 +00001048 {
1049 inverse_edge.x2=edge->x2;
1050 return(inverse_edge);
1051 }
1052 return(inverse_edge);
1053}
1054
1055static AffineMatrix InverseAffineMatrix(const AffineMatrix *affine)
1056{
1057 AffineMatrix
1058 inverse_affine;
1059
1060 double
1061 determinant;
1062
cristy3e3ec3a2012-11-03 23:11:06 +00001063 determinant=PerceptibleReciprocal(affine->sx*affine->sy-affine->rx*
cristy35f15302012-06-07 14:59:02 +00001064 affine->ry);
cristy3ed852e2009-09-05 21:47:34 +00001065 inverse_affine.sx=determinant*affine->sy;
1066 inverse_affine.rx=determinant*(-affine->rx);
1067 inverse_affine.ry=determinant*(-affine->ry);
1068 inverse_affine.sy=determinant*affine->sx;
1069 inverse_affine.tx=(-affine->tx)*inverse_affine.sx-affine->ty*
1070 inverse_affine.ry;
1071 inverse_affine.ty=(-affine->tx)*inverse_affine.rx-affine->ty*
1072 inverse_affine.sy;
1073 return(inverse_affine);
1074}
1075
cristy3ed852e2009-09-05 21:47:34 +00001076MagickExport MagickBooleanType DrawAffineImage(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00001077 const Image *source,const AffineMatrix *affine,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001078{
1079 AffineMatrix
1080 inverse_affine;
1081
cristyfa112112010-01-04 17:48:07 +00001082 CacheView
1083 *image_view,
1084 *source_view;
1085
cristy3ed852e2009-09-05 21:47:34 +00001086 MagickBooleanType
1087 status;
1088
cristy4c08aed2011-07-01 19:47:50 +00001089 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001090 zero;
1091
1092 PointInfo
1093 extent[4],
1094 min,
dirkc93932a2015-10-01 16:56:10 +02001095 max;
cristy3ed852e2009-09-05 21:47:34 +00001096
cristybb503372010-05-27 20:51:26 +00001097 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001098 i;
1099
cristy3ed852e2009-09-05 21:47:34 +00001100 SegmentInfo
1101 edge;
1102
cristy826a5472010-08-31 23:21:38 +00001103 ssize_t
cristy564a5692012-01-20 23:56:26 +00001104 start,
1105 stop,
cristy826a5472010-08-31 23:21:38 +00001106 y;
1107
cristy3ed852e2009-09-05 21:47:34 +00001108 /*
1109 Determine bounding box.
1110 */
1111 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001112 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00001113 if (image->debug != MagickFalse)
1114 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1115 assert(source != (const Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001116 assert(source->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00001117 assert(affine != (AffineMatrix *) NULL);
1118 extent[0].x=0.0;
1119 extent[0].y=0.0;
1120 extent[1].x=(double) source->columns-1.0;
1121 extent[1].y=0.0;
1122 extent[2].x=(double) source->columns-1.0;
1123 extent[2].y=(double) source->rows-1.0;
1124 extent[3].x=0.0;
1125 extent[3].y=(double) source->rows-1.0;
1126 for (i=0; i < 4; i++)
1127 {
dirkc93932a2015-10-01 16:56:10 +02001128 PointInfo
1129 point;
1130
cristy3ed852e2009-09-05 21:47:34 +00001131 point=extent[i];
1132 extent[i].x=point.x*affine->sx+point.y*affine->ry+affine->tx;
1133 extent[i].y=point.x*affine->rx+point.y*affine->sy+affine->ty;
1134 }
1135 min=extent[0];
1136 max=extent[0];
1137 for (i=1; i < 4; i++)
1138 {
1139 if (min.x > extent[i].x)
1140 min.x=extent[i].x;
1141 if (min.y > extent[i].y)
1142 min.y=extent[i].y;
1143 if (max.x < extent[i].x)
1144 max.x=extent[i].x;
1145 if (max.y < extent[i].y)
1146 max.y=extent[i].y;
1147 }
1148 /*
1149 Affine transform image.
1150 */
cristy574cc262011-08-05 01:23:58 +00001151 if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001152 return(MagickFalse);
1153 status=MagickTrue;
1154 edge.x1=MagickMax(min.x,0.0);
1155 edge.y1=MagickMax(min.y,0.0);
1156 edge.x2=MagickMin(max.x,(double) image->columns-1.0);
1157 edge.y2=MagickMin(max.y,(double) image->rows-1.0);
1158 inverse_affine=InverseAffineMatrix(affine);
cristy4c08aed2011-07-01 19:47:50 +00001159 GetPixelInfo(image,&zero);
cristy564a5692012-01-20 23:56:26 +00001160 start=(ssize_t) ceil(edge.y1-0.5);
cristy8071c472012-09-24 12:41:06 +00001161 stop=(ssize_t) floor(edge.y2+0.5);
cristy46ff2672012-12-14 15:32:26 +00001162 source_view=AcquireVirtualCacheView(source,exception);
1163 image_view=AcquireAuthenticCacheView(image,exception);
cristyb5d5f722009-11-04 03:03:49 +00001164#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy9a5a52f2012-10-09 14:40:31 +00001165 #pragma omp parallel for schedule(static,4) shared(status) \
cristycb7dfcc2013-01-06 18:34:59 +00001166 magick_threads(source,image,1,1)
cristy3ed852e2009-09-05 21:47:34 +00001167#endif
cristy564a5692012-01-20 23:56:26 +00001168 for (y=start; y <= stop; y++)
cristy3ed852e2009-09-05 21:47:34 +00001169 {
cristy4c08aed2011-07-01 19:47:50 +00001170 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001171 composite,
1172 pixel;
1173
1174 PointInfo
1175 point;
1176
cristybb503372010-05-27 20:51:26 +00001177 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001178 x;
1179
cristy4c08aed2011-07-01 19:47:50 +00001180 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01001181 *magick_restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001182
1183 SegmentInfo
1184 inverse_edge;
1185
cristy826a5472010-08-31 23:21:38 +00001186 ssize_t
1187 x_offset;
1188
cristy3ed852e2009-09-05 21:47:34 +00001189 inverse_edge=AffineEdge(source,&inverse_affine,(double) y,&edge);
1190 if (inverse_edge.x2 < inverse_edge.x1)
1191 continue;
cristy6ebe97c2010-07-03 01:17:28 +00001192 q=GetCacheViewAuthenticPixels(image_view,(ssize_t) ceil(inverse_edge.x1-
cristy592aefd2013-02-03 15:41:39 +00001193 0.5),y,(size_t) (floor(inverse_edge.x2+0.5)-ceil(inverse_edge.x1-0.5)+1),
1194 1,exception);
cristy4c08aed2011-07-01 19:47:50 +00001195 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001196 continue;
cristy3ed852e2009-09-05 21:47:34 +00001197 pixel=zero;
1198 composite=zero;
1199 x_offset=0;
cristy8071c472012-09-24 12:41:06 +00001200 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 +00001201 {
1202 point.x=(double) x*inverse_affine.sx+y*inverse_affine.ry+
1203 inverse_affine.tx;
1204 point.y=(double) x*inverse_affine.rx+y*inverse_affine.sy+
1205 inverse_affine.ty;
cristy4c08aed2011-07-01 19:47:50 +00001206 (void) InterpolatePixelInfo(source,source_view,UndefinedInterpolatePixel,
1207 point.x,point.y,&pixel,exception);
cristy803640d2011-11-17 02:11:32 +00001208 GetPixelInfoPixel(image,q,&composite);
cristy4c08aed2011-07-01 19:47:50 +00001209 CompositePixelInfoOver(&pixel,pixel.alpha,&composite,composite.alpha,
1210 &composite);
cristy11a06d32015-01-04 12:03:27 +00001211 SetPixelViaPixelInfo(image,&composite,q);
cristy3ed852e2009-09-05 21:47:34 +00001212 x_offset++;
cristyed231572011-07-14 02:18:59 +00001213 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001214 }
1215 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
1216 status=MagickFalse;
1217 }
cristy3ed852e2009-09-05 21:47:34 +00001218 source_view=DestroyCacheView(source_view);
1219 image_view=DestroyCacheView(image_view);
1220 return(status);
1221}
1222
1223/*
1224%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1225% %
1226% %
1227% %
1228+ D r a w B o u n d i n g R e c t a n g l e s %
1229% %
1230% %
1231% %
1232%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1233%
1234% DrawBoundingRectangles() draws the bounding rectangles on the image. This
1235% is only useful for developers debugging the rendering algorithm.
1236%
1237% The format of the DrawBoundingRectangles method is:
1238%
1239% void DrawBoundingRectangles(Image *image,const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00001240% PolygonInfo *polygon_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001241%
1242% A description of each parameter follows:
1243%
1244% o image: the image.
1245%
1246% o draw_info: the draw info.
1247%
1248% o polygon_info: Specifies a pointer to a PolygonInfo structure.
1249%
cristy947cb4c2011-10-20 18:41:46 +00001250% o exception: return any errors or warnings in this structure.
1251%
cristy3ed852e2009-09-05 21:47:34 +00001252*/
1253static void DrawBoundingRectangles(Image *image,const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00001254 const PolygonInfo *polygon_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001255{
1256 DrawInfo
1257 *clone_info;
1258
cristya19f1d72012-08-07 18:24:38 +00001259 double
cristy3ed852e2009-09-05 21:47:34 +00001260 mid;
1261
1262 PointInfo
1263 end,
1264 resolution,
1265 start;
1266
1267 PrimitiveInfo
1268 primitive_info[6];
1269
cristybb503372010-05-27 20:51:26 +00001270 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001271 i;
1272
1273 SegmentInfo
1274 bounds;
1275
cristy826a5472010-08-31 23:21:38 +00001276 ssize_t
1277 coordinates;
1278
cristy3ed852e2009-09-05 21:47:34 +00001279 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
Cristydd6065a2016-09-19 15:55:49 -04001280 (void) QueryColorCompliance("#000F",AllCompliance,&clone_info->fill,
cristy947cb4c2011-10-20 18:41:46 +00001281 exception);
cristy3ed852e2009-09-05 21:47:34 +00001282 resolution.x=DefaultResolution;
1283 resolution.y=DefaultResolution;
1284 if (clone_info->density != (char *) NULL)
1285 {
1286 GeometryInfo
1287 geometry_info;
1288
1289 MagickStatusType
1290 flags;
1291
1292 flags=ParseGeometry(clone_info->density,&geometry_info);
1293 resolution.x=geometry_info.rho;
1294 resolution.y=geometry_info.sigma;
1295 if ((flags & SigmaValue) == MagickFalse)
1296 resolution.y=resolution.x;
1297 }
1298 mid=(resolution.x/72.0)*ExpandAffine(&clone_info->affine)*
1299 clone_info->stroke_width/2.0;
1300 bounds.x1=0.0;
1301 bounds.y1=0.0;
1302 bounds.x2=0.0;
1303 bounds.y2=0.0;
1304 if (polygon_info != (PolygonInfo *) NULL)
1305 {
1306 bounds=polygon_info->edges[0].bounds;
cristybb503372010-05-27 20:51:26 +00001307 for (i=1; i < (ssize_t) polygon_info->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +00001308 {
1309 if (polygon_info->edges[i].bounds.x1 < (double) bounds.x1)
1310 bounds.x1=polygon_info->edges[i].bounds.x1;
1311 if (polygon_info->edges[i].bounds.y1 < (double) bounds.y1)
1312 bounds.y1=polygon_info->edges[i].bounds.y1;
1313 if (polygon_info->edges[i].bounds.x2 > (double) bounds.x2)
1314 bounds.x2=polygon_info->edges[i].bounds.x2;
1315 if (polygon_info->edges[i].bounds.y2 > (double) bounds.y2)
1316 bounds.y2=polygon_info->edges[i].bounds.y2;
1317 }
1318 bounds.x1-=mid;
1319 bounds.x1=bounds.x1 < 0.0 ? 0.0 : bounds.x1 >= (double)
cristy6c5494a2012-09-22 00:30:37 +00001320 image->columns ? (double) image->columns-1 : bounds.x1;
cristy3ed852e2009-09-05 21:47:34 +00001321 bounds.y1-=mid;
1322 bounds.y1=bounds.y1 < 0.0 ? 0.0 : bounds.y1 >= (double)
cristy6c5494a2012-09-22 00:30:37 +00001323 image->rows ? (double) image->rows-1 : bounds.y1;
cristy3ed852e2009-09-05 21:47:34 +00001324 bounds.x2+=mid;
1325 bounds.x2=bounds.x2 < 0.0 ? 0.0 : bounds.x2 >= (double)
cristy6c5494a2012-09-22 00:30:37 +00001326 image->columns ? (double) image->columns-1 : bounds.x2;
cristy3ed852e2009-09-05 21:47:34 +00001327 bounds.y2+=mid;
1328 bounds.y2=bounds.y2 < 0.0 ? 0.0 : bounds.y2 >= (double)
cristy6c5494a2012-09-22 00:30:37 +00001329 image->rows ? (double) image->rows-1 : bounds.y2;
cristybb503372010-05-27 20:51:26 +00001330 for (i=0; i < (ssize_t) polygon_info->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +00001331 {
1332 if (polygon_info->edges[i].direction != 0)
cristy9950d572011-10-01 18:22:35 +00001333 (void) QueryColorCompliance("red",AllCompliance,&clone_info->stroke,
cristy947cb4c2011-10-20 18:41:46 +00001334 exception);
cristy3ed852e2009-09-05 21:47:34 +00001335 else
cristy9950d572011-10-01 18:22:35 +00001336 (void) QueryColorCompliance("green",AllCompliance,&clone_info->stroke,
cristy947cb4c2011-10-20 18:41:46 +00001337 exception);
cristy3ed852e2009-09-05 21:47:34 +00001338 start.x=(double) (polygon_info->edges[i].bounds.x1-mid);
1339 start.y=(double) (polygon_info->edges[i].bounds.y1-mid);
1340 end.x=(double) (polygon_info->edges[i].bounds.x2+mid);
1341 end.y=(double) (polygon_info->edges[i].bounds.y2+mid);
1342 primitive_info[0].primitive=RectanglePrimitive;
1343 TraceRectangle(primitive_info,start,end);
1344 primitive_info[0].method=ReplaceMethod;
cristybb503372010-05-27 20:51:26 +00001345 coordinates=(ssize_t) primitive_info[0].coordinates;
cristy3ed852e2009-09-05 21:47:34 +00001346 primitive_info[coordinates].primitive=UndefinedPrimitive;
cristy947cb4c2011-10-20 18:41:46 +00001347 (void) DrawPrimitive(image,clone_info,primitive_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00001348 }
1349 }
cristy9950d572011-10-01 18:22:35 +00001350 (void) QueryColorCompliance("blue",AllCompliance,&clone_info->stroke,
cristy947cb4c2011-10-20 18:41:46 +00001351 exception);
cristy3ed852e2009-09-05 21:47:34 +00001352 start.x=(double) (bounds.x1-mid);
1353 start.y=(double) (bounds.y1-mid);
1354 end.x=(double) (bounds.x2+mid);
1355 end.y=(double) (bounds.y2+mid);
1356 primitive_info[0].primitive=RectanglePrimitive;
1357 TraceRectangle(primitive_info,start,end);
1358 primitive_info[0].method=ReplaceMethod;
cristybb503372010-05-27 20:51:26 +00001359 coordinates=(ssize_t) primitive_info[0].coordinates;
cristy3ed852e2009-09-05 21:47:34 +00001360 primitive_info[coordinates].primitive=UndefinedPrimitive;
cristy947cb4c2011-10-20 18:41:46 +00001361 (void) DrawPrimitive(image,clone_info,primitive_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00001362 clone_info=DestroyDrawInfo(clone_info);
1363}
1364
1365/*
1366%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1367% %
1368% %
1369% %
1370% D r a w C l i p P a t h %
1371% %
1372% %
1373% %
1374%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1375%
1376% DrawClipPath() draws the clip path on the image mask.
1377%
1378% The format of the DrawClipPath method is:
1379%
1380% MagickBooleanType DrawClipPath(Image *image,const DrawInfo *draw_info,
cristy018f07f2011-09-04 21:15:19 +00001381% const char *name,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001382%
1383% A description of each parameter follows:
1384%
1385% o image: the image.
1386%
1387% o draw_info: the draw info.
1388%
1389% o name: the name of the clip path.
1390%
cristy018f07f2011-09-04 21:15:19 +00001391% o exception: return any errors or warnings in this structure.
1392%
cristy3ed852e2009-09-05 21:47:34 +00001393*/
1394MagickExport MagickBooleanType DrawClipPath(Image *image,
cristy018f07f2011-09-04 21:15:19 +00001395 const DrawInfo *draw_info,const char *name,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001396{
1397 char
cristy151b66d2015-04-15 10:50:31 +00001398 filename[MagickPathExtent];
cristy10a6c612012-01-29 21:41:05 +00001399
1400 Image
1401 *clip_mask;
cristy3ed852e2009-09-05 21:47:34 +00001402
1403 const char
1404 *value;
1405
1406 DrawInfo
1407 *clone_info;
1408
1409 MagickStatusType
1410 status;
1411
1412 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001413 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00001414 if (image->debug != MagickFalse)
1415 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1416 assert(draw_info != (const DrawInfo *) NULL);
cristy151b66d2015-04-15 10:50:31 +00001417 (void) FormatLocaleString(filename,MagickPathExtent,"%s",name);
cristy10a6c612012-01-29 21:41:05 +00001418 value=GetImageArtifact(image,filename);
cristy3ed852e2009-09-05 21:47:34 +00001419 if (value == (const char *) NULL)
1420 return(MagickFalse);
cristy10a6c612012-01-29 21:41:05 +00001421 clip_mask=CloneImage(image,image->columns,image->rows,MagickTrue,exception);
1422 if (clip_mask == (Image *) NULL)
1423 return(MagickFalse);
Cristy76eb72f2016-11-27 08:21:05 -05001424 (void) QueryColorCompliance("#0000",AllCompliance,
cristy10a6c612012-01-29 21:41:05 +00001425 &clip_mask->background_color,exception);
Cristy726812f2016-05-04 19:09:35 -04001426 clip_mask->background_color.alpha=(MagickRealType) TransparentAlpha;
cristy10a6c612012-01-29 21:41:05 +00001427 (void) SetImageBackgroundColor(clip_mask,exception);
cristy3ed852e2009-09-05 21:47:34 +00001428 if (image->debug != MagickFalse)
1429 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"\nbegin clip-path %s",
1430 draw_info->clip_mask);
1431 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
1432 (void) CloneString(&clone_info->primitive,value);
Cristy76eb72f2016-11-27 08:21:05 -05001433 (void) QueryColorCompliance("#ffffff",AllCompliance,&clone_info->fill,
cristyea1a8aa2011-10-20 13:24:06 +00001434 exception);
Cristy76eb72f2016-11-27 08:21:05 -05001435 clone_info->clip_mask=(char *) NULL;
1436 status=NegateImage(clip_mask,MagickFalse,exception);
cristyacd0d4c2015-07-25 16:12:33 +00001437 (void) SetImageMask(image,ReadPixelMask,clip_mask,exception);
cristy10a6c612012-01-29 21:41:05 +00001438 clip_mask=DestroyImage(clip_mask);
Cristy76eb72f2016-11-27 08:21:05 -05001439 status&=DrawImage(image,clone_info,exception);
cristy8e508182012-09-22 00:21:17 +00001440 clone_info=DestroyDrawInfo(clone_info);
cristy3ed852e2009-09-05 21:47:34 +00001441 if (image->debug != MagickFalse)
1442 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"end clip-path");
1443 return(status != 0 ? MagickTrue : MagickFalse);
1444}
1445
1446/*
1447%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1448% %
1449% %
1450% %
1451+ D r a w D a s h P o l y g o n %
1452% %
1453% %
1454% %
1455%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1456%
1457% DrawDashPolygon() draws a dashed polygon (line, rectangle, ellipse) on the
1458% image while respecting the dash offset and dash pattern attributes.
1459%
1460% The format of the DrawDashPolygon method is:
1461%
1462% MagickBooleanType DrawDashPolygon(const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00001463% const PrimitiveInfo *primitive_info,Image *image,
1464% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001465%
1466% A description of each parameter follows:
1467%
1468% o draw_info: the draw info.
1469%
1470% o primitive_info: Specifies a pointer to a PrimitiveInfo structure.
1471%
1472% o image: the image.
1473%
cristy947cb4c2011-10-20 18:41:46 +00001474% o exception: return any errors or warnings in this structure.
cristy3ed852e2009-09-05 21:47:34 +00001475%
1476*/
1477static MagickBooleanType DrawDashPolygon(const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00001478 const PrimitiveInfo *primitive_info,Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001479{
1480 DrawInfo
1481 *clone_info;
1482
cristya19f1d72012-08-07 18:24:38 +00001483 double
cristy3ed852e2009-09-05 21:47:34 +00001484 length,
1485 maximum_length,
1486 offset,
1487 scale,
1488 total_length;
1489
1490 MagickStatusType
1491 status;
1492
1493 PrimitiveInfo
1494 *dash_polygon;
1495
cristybb503372010-05-27 20:51:26 +00001496 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001497 i;
1498
cristya19f1d72012-08-07 18:24:38 +00001499 register double
cristy3ed852e2009-09-05 21:47:34 +00001500 dx,
1501 dy;
1502
cristybb503372010-05-27 20:51:26 +00001503 size_t
cristy3ed852e2009-09-05 21:47:34 +00001504 number_vertices;
1505
cristy826a5472010-08-31 23:21:38 +00001506 ssize_t
1507 j,
1508 n;
1509
cristy3ed852e2009-09-05 21:47:34 +00001510 assert(draw_info != (const DrawInfo *) NULL);
1511 if (image->debug != MagickFalse)
1512 (void) LogMagickEvent(DrawEvent,GetMagickModule()," begin draw-dash");
cristy3ed852e2009-09-05 21:47:34 +00001513 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++) ;
cristybb503372010-05-27 20:51:26 +00001514 number_vertices=(size_t) i;
cristy3ed852e2009-09-05 21:47:34 +00001515 dash_polygon=(PrimitiveInfo *) AcquireQuantumMemory((size_t)
1516 (2UL*number_vertices+1UL),sizeof(*dash_polygon));
1517 if (dash_polygon == (PrimitiveInfo *) NULL)
1518 return(MagickFalse);
Cristy9cdadd92016-05-03 18:17:01 -04001519 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
1520 clone_info->miterlimit=0;
cristy3ed852e2009-09-05 21:47:34 +00001521 dash_polygon[0]=primitive_info[0];
1522 scale=ExpandAffine(&draw_info->affine);
1523 length=scale*(draw_info->dash_pattern[0]-0.5);
Cristy911b5862016-06-24 17:45:06 -04001524 offset=fabs(draw_info->dash_offset) >= DrawEpsilon ?
Cristyfc7b06d2016-06-24 10:17:46 -04001525 scale*draw_info->dash_offset : 0.0;
cristy3ed852e2009-09-05 21:47:34 +00001526 j=1;
1527 for (n=0; offset > 0.0; j=0)
1528 {
1529 if (draw_info->dash_pattern[n] <= 0.0)
1530 break;
1531 length=scale*(draw_info->dash_pattern[n]+(n == 0 ? -0.5 : 0.5));
1532 if (offset > length)
1533 {
1534 offset-=length;
1535 n++;
cristy4d0ca342014-05-01 00:42:09 +00001536 length=scale*(draw_info->dash_pattern[n]+0.5);
cristy3ed852e2009-09-05 21:47:34 +00001537 continue;
1538 }
1539 if (offset < length)
1540 {
1541 length-=offset;
1542 offset=0.0;
1543 break;
1544 }
1545 offset=0.0;
1546 n++;
1547 }
1548 status=MagickTrue;
1549 maximum_length=0.0;
1550 total_length=0.0;
Cristy726812f2016-05-04 19:09:35 -04001551 for (i=1; (i < (ssize_t) number_vertices) && (length >= 0.0); i++)
cristy3ed852e2009-09-05 21:47:34 +00001552 {
1553 dx=primitive_info[i].point.x-primitive_info[i-1].point.x;
1554 dy=primitive_info[i].point.y-primitive_info[i-1].point.y;
1555 maximum_length=hypot((double) dx,dy);
Cristy911b5862016-06-24 17:45:06 -04001556 if (fabs(length) < DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00001557 {
1558 n++;
Cristy911b5862016-06-24 17:45:06 -04001559 if (fabs(draw_info->dash_pattern[n]) < DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00001560 n=0;
1561 length=scale*(draw_info->dash_pattern[n]+(n == 0 ? -0.5 : 0.5));
1562 }
Cristy9cdadd92016-05-03 18:17:01 -04001563 for (total_length=0.0; (length >= 0.0) && (maximum_length >= (total_length+length)); )
cristy3ed852e2009-09-05 21:47:34 +00001564 {
1565 total_length+=length;
1566 if ((n & 0x01) != 0)
1567 {
1568 dash_polygon[0]=primitive_info[0];
1569 dash_polygon[0].point.x=(double) (primitive_info[i-1].point.x+dx*
1570 total_length/maximum_length);
1571 dash_polygon[0].point.y=(double) (primitive_info[i-1].point.y+dy*
1572 total_length/maximum_length);
1573 j=1;
1574 }
1575 else
1576 {
cristybb503372010-05-27 20:51:26 +00001577 if ((j+1) > (ssize_t) (2*number_vertices))
cristy3ed852e2009-09-05 21:47:34 +00001578 break;
1579 dash_polygon[j]=primitive_info[i-1];
1580 dash_polygon[j].point.x=(double) (primitive_info[i-1].point.x+dx*
1581 total_length/maximum_length);
1582 dash_polygon[j].point.y=(double) (primitive_info[i-1].point.y+dy*
1583 total_length/maximum_length);
1584 dash_polygon[j].coordinates=1;
1585 j++;
cristybb503372010-05-27 20:51:26 +00001586 dash_polygon[0].coordinates=(size_t) j;
cristy3ed852e2009-09-05 21:47:34 +00001587 dash_polygon[j].primitive=UndefinedPrimitive;
cristy8a77f142013-08-14 12:44:38 +00001588 status&=DrawStrokePolygon(image,clone_info,dash_polygon,exception);
cristy3ed852e2009-09-05 21:47:34 +00001589 }
1590 n++;
Cristy911b5862016-06-24 17:45:06 -04001591 if (fabs(draw_info->dash_pattern[n]) < DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00001592 n=0;
1593 length=scale*(draw_info->dash_pattern[n]+(n == 0 ? -0.5 : 0.5));
1594 }
1595 length-=(maximum_length-total_length);
1596 if ((n & 0x01) != 0)
1597 continue;
1598 dash_polygon[j]=primitive_info[i];
1599 dash_polygon[j].coordinates=1;
1600 j++;
1601 }
cristycbda6112012-05-27 20:57:16 +00001602 if ((total_length <= maximum_length) && ((n & 0x01) == 0) && (j > 1))
cristy3ed852e2009-09-05 21:47:34 +00001603 {
1604 dash_polygon[j]=primitive_info[i-1];
Cristy911b5862016-06-24 17:45:06 -04001605 dash_polygon[j].point.x+=DrawEpsilon;
1606 dash_polygon[j].point.y+=DrawEpsilon;
cristy3ed852e2009-09-05 21:47:34 +00001607 dash_polygon[j].coordinates=1;
1608 j++;
cristybb503372010-05-27 20:51:26 +00001609 dash_polygon[0].coordinates=(size_t) j;
cristy3ed852e2009-09-05 21:47:34 +00001610 dash_polygon[j].primitive=UndefinedPrimitive;
cristy8a77f142013-08-14 12:44:38 +00001611 status&=DrawStrokePolygon(image,clone_info,dash_polygon,exception);
cristy3ed852e2009-09-05 21:47:34 +00001612 }
1613 dash_polygon=(PrimitiveInfo *) RelinquishMagickMemory(dash_polygon);
1614 clone_info=DestroyDrawInfo(clone_info);
1615 if (image->debug != MagickFalse)
1616 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end draw-dash");
1617 return(status != 0 ? MagickTrue : MagickFalse);
1618}
1619
1620/*
1621%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1622% %
1623% %
1624% %
1625% D r a w I m a g e %
1626% %
1627% %
1628% %
1629%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1630%
1631% DrawImage() draws a graphic primitive on your image. The primitive
1632% may be represented as a string or filename. Precede the filename with an
1633% "at" sign (@) and the contents of the file are drawn on the image. You
1634% can affect how text is drawn by setting one or more members of the draw
1635% info structure.
1636%
1637% The format of the DrawImage method is:
1638%
cristy018f07f2011-09-04 21:15:19 +00001639% MagickBooleanType DrawImage(Image *image,const DrawInfo *draw_info,
1640% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001641%
1642% A description of each parameter follows:
1643%
1644% o image: the image.
1645%
1646% o draw_info: the draw info.
1647%
cristy018f07f2011-09-04 21:15:19 +00001648% o exception: return any errors or warnings in this structure.
1649%
cristy3ed852e2009-09-05 21:47:34 +00001650*/
1651
1652static inline MagickBooleanType IsPoint(const char *point)
1653{
1654 char
1655 *p;
1656
1657 double
1658 value;
1659
cristydbdd0e32011-11-04 23:29:40 +00001660 value=StringToDouble(point,&p);
Cristy911b5862016-06-24 17:45:06 -04001661 return((fabs(value) < DrawEpsilon) && (p == point) ? MagickFalse : MagickTrue);
cristy3ed852e2009-09-05 21:47:34 +00001662}
1663
1664static inline void TracePoint(PrimitiveInfo *primitive_info,
1665 const PointInfo point)
1666{
1667 primitive_info->coordinates=1;
1668 primitive_info->point=point;
1669}
1670
cristy018f07f2011-09-04 21:15:19 +00001671MagickExport MagickBooleanType DrawImage(Image *image,const DrawInfo *draw_info,
1672 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001673{
1674#define RenderImageTag "Render/Image"
1675
1676 AffineMatrix
1677 affine,
1678 current;
1679
1680 char
cristy151b66d2015-04-15 10:50:31 +00001681 keyword[MagickPathExtent],
1682 geometry[MagickPathExtent],
Cristy3ed6c692016-05-23 19:24:23 -04001683 *next_token,
cristy151b66d2015-04-15 10:50:31 +00001684 pattern[MagickPathExtent],
cristy3ed852e2009-09-05 21:47:34 +00001685 *primitive,
1686 *token;
1687
1688 const char
1689 *q;
1690
Cristydd6065a2016-09-19 15:55:49 -04001691 double
1692 angle,
1693 factor,
1694 primitive_extent;
1695
cristy3ed852e2009-09-05 21:47:34 +00001696 DrawInfo
1697 **graphic_context;
1698
cristy3ed852e2009-09-05 21:47:34 +00001699 MagickBooleanType
cristy8a77f142013-08-14 12:44:38 +00001700 proceed;
1701
Cristy58affb92016-06-01 10:08:14 -04001702 MagickSizeType
1703 length,
1704 number_points;
1705
cristy8a77f142013-08-14 12:44:38 +00001706 MagickStatusType
cristy3ed852e2009-09-05 21:47:34 +00001707 status;
1708
cristy3ed852e2009-09-05 21:47:34 +00001709 PointInfo
1710 point;
1711
cristy3ed852e2009-09-05 21:47:34 +00001712 PrimitiveInfo
1713 *primitive_info;
1714
1715 PrimitiveType
1716 primitive_type;
1717
1718 register const char
1719 *p;
1720
cristybb503372010-05-27 20:51:26 +00001721 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001722 i,
1723 x;
1724
1725 SegmentInfo
1726 bounds;
1727
1728 size_t
dirkfc0f1242016-03-26 00:36:39 +01001729 extent,
dirkb6f578b2015-07-12 17:56:39 +00001730 number_stops;
cristy3ed852e2009-09-05 21:47:34 +00001731
cristy826a5472010-08-31 23:21:38 +00001732 ssize_t
1733 j,
1734 k,
1735 n;
1736
dirkb6f578b2015-07-12 17:56:39 +00001737 StopInfo
1738 *stops;
1739
cristy3ed852e2009-09-05 21:47:34 +00001740 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001741 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00001742 if (image->debug != MagickFalse)
1743 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1744 assert(draw_info != (DrawInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001745 assert(draw_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00001746 if (image->debug != MagickFalse)
1747 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
1748 if ((draw_info->primitive == (char *) NULL) ||
1749 (*draw_info->primitive == '\0'))
1750 return(MagickFalse);
1751 if (image->debug != MagickFalse)
1752 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"begin draw-image");
1753 if (*draw_info->primitive != '@')
1754 primitive=AcquireString(draw_info->primitive);
1755 else
cristy3a5987c2013-11-07 14:18:46 +00001756 primitive=FileToString(draw_info->primitive+1,~0UL,exception);
cristy3ed852e2009-09-05 21:47:34 +00001757 if (primitive == (char *) NULL)
1758 return(MagickFalse);
cristya19f1d72012-08-07 18:24:38 +00001759 primitive_extent=(double) strlen(primitive);
Cristyddb2a062016-10-02 11:07:10 -04001760 (void) SetImageArtifact(image,"MVG",primitive);
cristy3ed852e2009-09-05 21:47:34 +00001761 n=0;
dirkb6f578b2015-07-12 17:56:39 +00001762 number_stops=0;
1763 stops=(StopInfo *) NULL;
cristy3ed852e2009-09-05 21:47:34 +00001764 /*
1765 Allocate primitive info memory.
1766 */
Cristyca0dd942016-09-20 20:48:15 -04001767 graphic_context=(DrawInfo **) AcquireMagickMemory(sizeof(*graphic_context));
cristy3ed852e2009-09-05 21:47:34 +00001768 if (graphic_context == (DrawInfo **) NULL)
1769 {
1770 primitive=DestroyString(primitive);
1771 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
1772 image->filename);
1773 }
cristy430522c2012-09-03 00:07:16 +00001774 number_points=6553;
cristy3ed852e2009-09-05 21:47:34 +00001775 primitive_info=(PrimitiveInfo *) AcquireQuantumMemory((size_t) number_points,
1776 sizeof(*primitive_info));
1777 if (primitive_info == (PrimitiveInfo *) NULL)
1778 {
1779 primitive=DestroyString(primitive);
1780 for ( ; n >= 0; n--)
1781 graphic_context[n]=DestroyDrawInfo(graphic_context[n]);
1782 graphic_context=(DrawInfo **) RelinquishMagickMemory(graphic_context);
1783 ThrowBinaryException(ResourceLimitError,"MemoryAllocationFailed",
1784 image->filename);
1785 }
1786 graphic_context[n]=CloneDrawInfo((ImageInfo *) NULL,draw_info);
1787 graphic_context[n]->viewbox=image->page;
1788 if ((image->page.width == 0) || (image->page.height == 0))
1789 {
1790 graphic_context[n]->viewbox.width=image->columns;
1791 graphic_context[n]->viewbox.height=image->rows;
1792 }
1793 token=AcquireString(primitive);
dirkfc0f1242016-03-26 00:36:39 +01001794 extent=strlen(token)+MagickPathExtent;
cristy947cb4c2011-10-20 18:41:46 +00001795 if (SetImageStorageClass(image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001796 return(MagickFalse);
1797 status=MagickTrue;
1798 for (q=primitive; *q != '\0'; )
1799 {
1800 /*
1801 Interpret graphic primitive.
1802 */
Cristy726812f2016-05-04 19:09:35 -04001803 GetNextToken(q,&q,MagickPathExtent,keyword);
cristy3ed852e2009-09-05 21:47:34 +00001804 if (*keyword == '\0')
1805 break;
1806 if (*keyword == '#')
1807 {
1808 /*
1809 Comment.
1810 */
1811 while ((*q != '\n') && (*q != '\0'))
1812 q++;
1813 continue;
1814 }
1815 p=q-strlen(keyword)-1;
1816 primitive_type=UndefinedPrimitive;
1817 current=graphic_context[n]->affine;
1818 GetAffineMatrix(&affine);
1819 switch (*keyword)
1820 {
1821 case ';':
1822 break;
1823 case 'a':
1824 case 'A':
1825 {
1826 if (LocaleCompare("affine",keyword) == 0)
Cristy4c16bb82016-07-10 19:21:52 -04001827 {
Cristy8bedb4e2016-03-25 19:54:25 -04001828 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04001829 affine.sx=StringToDouble(token,&next_token);
1830 if (token == next_token)
1831 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04001832 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00001833 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04001834 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04001835 affine.rx=StringToDouble(token,&next_token);
1836 if (token == next_token)
1837 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04001838 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00001839 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04001840 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04001841 affine.ry=StringToDouble(token,&next_token);
1842 if (token == next_token)
1843 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04001844 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00001845 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04001846 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04001847 affine.sy=StringToDouble(token,&next_token);
1848 if (token == next_token)
1849 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04001850 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00001851 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04001852 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04001853 affine.tx=StringToDouble(token,&next_token);
1854 if (token == next_token)
1855 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04001856 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00001857 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04001858 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04001859 affine.ty=StringToDouble(token,&next_token);
1860 if (token == next_token)
1861 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00001862 break;
1863 }
dirk34e1a212015-03-22 16:45:12 +00001864 if (LocaleCompare("alpha",keyword) == 0)
1865 {
1866 primitive_type=AlphaPrimitive;
1867 break;
1868 }
cristy3ed852e2009-09-05 21:47:34 +00001869 if (LocaleCompare("arc",keyword) == 0)
1870 {
1871 primitive_type=ArcPrimitive;
1872 break;
1873 }
1874 status=MagickFalse;
1875 break;
1876 }
1877 case 'b':
1878 case 'B':
1879 {
1880 if (LocaleCompare("bezier",keyword) == 0)
1881 {
1882 primitive_type=BezierPrimitive;
1883 break;
1884 }
1885 if (LocaleCompare("border-color",keyword) == 0)
1886 {
Cristy8bedb4e2016-03-25 19:54:25 -04001887 GetNextToken(q,&q,extent,token);
cristy9950d572011-10-01 18:22:35 +00001888 (void) QueryColorCompliance(token,AllCompliance,
cristy947cb4c2011-10-20 18:41:46 +00001889 &graphic_context[n]->border_color,exception);
cristy3ed852e2009-09-05 21:47:34 +00001890 break;
1891 }
1892 status=MagickFalse;
1893 break;
1894 }
1895 case 'c':
1896 case 'C':
1897 {
1898 if (LocaleCompare("clip-path",keyword) == 0)
1899 {
1900 /*
1901 Create clip mask.
1902 */
Cristy8bedb4e2016-03-25 19:54:25 -04001903 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00001904 (void) CloneString(&graphic_context[n]->clip_mask,token);
1905 (void) DrawClipPath(image,graphic_context[n],
cristy018f07f2011-09-04 21:15:19 +00001906 graphic_context[n]->clip_mask,exception);
cristy3ed852e2009-09-05 21:47:34 +00001907 break;
1908 }
1909 if (LocaleCompare("clip-rule",keyword) == 0)
1910 {
cristybb503372010-05-27 20:51:26 +00001911 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001912 fill_rule;
1913
Cristy8bedb4e2016-03-25 19:54:25 -04001914 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00001915 fill_rule=ParseCommandOption(MagickFillRuleOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00001916 token);
1917 if (fill_rule == -1)
anthony2a021472011-10-08 11:29:29 +00001918 status=MagickFalse;
1919 else
1920 graphic_context[n]->fill_rule=(FillRule) fill_rule;
cristy3ed852e2009-09-05 21:47:34 +00001921 break;
1922 }
1923 if (LocaleCompare("clip-units",keyword) == 0)
1924 {
cristybb503372010-05-27 20:51:26 +00001925 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001926 clip_units;
1927
Cristy8bedb4e2016-03-25 19:54:25 -04001928 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00001929 clip_units=ParseCommandOption(MagickClipPathOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00001930 token);
1931 if (clip_units == -1)
1932 {
1933 status=MagickFalse;
1934 break;
1935 }
1936 graphic_context[n]->clip_units=(ClipPathUnits) clip_units;
1937 if (clip_units == ObjectBoundingBox)
1938 {
1939 GetAffineMatrix(&current);
1940 affine.sx=draw_info->bounds.x2;
1941 affine.sy=draw_info->bounds.y2;
1942 affine.tx=draw_info->bounds.x1;
1943 affine.ty=draw_info->bounds.y1;
1944 break;
1945 }
1946 break;
1947 }
1948 if (LocaleCompare("circle",keyword) == 0)
1949 {
1950 primitive_type=CirclePrimitive;
1951 break;
1952 }
1953 if (LocaleCompare("color",keyword) == 0)
1954 {
1955 primitive_type=ColorPrimitive;
1956 break;
1957 }
1958 status=MagickFalse;
1959 break;
1960 }
1961 case 'd':
1962 case 'D':
1963 {
1964 if (LocaleCompare("decorate",keyword) == 0)
1965 {
cristybb503372010-05-27 20:51:26 +00001966 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001967 decorate;
1968
Cristy8bedb4e2016-03-25 19:54:25 -04001969 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00001970 decorate=ParseCommandOption(MagickDecorateOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00001971 token);
1972 if (decorate == -1)
anthony2a021472011-10-08 11:29:29 +00001973 status=MagickFalse;
1974 else
1975 graphic_context[n]->decorate=(DecorationType) decorate;
cristy3ed852e2009-09-05 21:47:34 +00001976 break;
1977 }
dirk47778472015-07-11 10:20:41 +00001978 if (LocaleCompare("density",keyword) == 0)
1979 {
Cristy8bedb4e2016-03-25 19:54:25 -04001980 GetNextToken(q,&q,extent,token);
dirk47778472015-07-11 10:20:41 +00001981 (void) CloneString(&graphic_context[n]->density,token);
1982 break;
1983 }
dirkc084d392014-01-27 19:08:45 +00001984 if (LocaleCompare("direction",keyword) == 0)
1985 {
1986 ssize_t
1987 direction;
1988
Cristy8bedb4e2016-03-25 19:54:25 -04001989 GetNextToken(q,&q,extent,token);
dirkc084d392014-01-27 19:08:45 +00001990 direction=ParseCommandOption(MagickDirectionOptions,MagickFalse,
1991 token);
1992 if (direction == -1)
1993 status=MagickFalse;
1994 else
1995 graphic_context[n]->direction=(DirectionType) direction;
1996 break;
1997 }
cristy3ed852e2009-09-05 21:47:34 +00001998 status=MagickFalse;
1999 break;
2000 }
2001 case 'e':
2002 case 'E':
2003 {
2004 if (LocaleCompare("ellipse",keyword) == 0)
2005 {
2006 primitive_type=EllipsePrimitive;
2007 break;
2008 }
2009 if (LocaleCompare("encoding",keyword) == 0)
2010 {
Cristy8bedb4e2016-03-25 19:54:25 -04002011 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002012 (void) CloneString(&graphic_context[n]->encoding,token);
2013 break;
2014 }
2015 status=MagickFalse;
2016 break;
2017 }
2018 case 'f':
2019 case 'F':
2020 {
2021 if (LocaleCompare("fill",keyword) == 0)
2022 {
Cristy8bedb4e2016-03-25 19:54:25 -04002023 GetNextToken(q,&q,extent,token);
cristy151b66d2015-04-15 10:50:31 +00002024 (void) FormatLocaleString(pattern,MagickPathExtent,"%s",token);
cristy3ed852e2009-09-05 21:47:34 +00002025 if (GetImageArtifact(image,pattern) != (const char *) NULL)
2026 (void) DrawPatternPath(image,draw_info,token,
cristy018f07f2011-09-04 21:15:19 +00002027 &graphic_context[n]->fill_pattern,exception);
cristy3ed852e2009-09-05 21:47:34 +00002028 else
2029 {
cristy8a77f142013-08-14 12:44:38 +00002030 status&=QueryColorCompliance(token,AllCompliance,
cristy947cb4c2011-10-20 18:41:46 +00002031 &graphic_context[n]->fill,exception);
Cristy48bcfe02016-07-13 18:05:02 -04002032 if (graphic_context[n]->fill_alpha != OpaqueAlpha)
2033 graphic_context[n]->fill.alpha=graphic_context[n]->fill_alpha;
cristy3ed852e2009-09-05 21:47:34 +00002034 if (status == MagickFalse)
2035 {
2036 ImageInfo
2037 *pattern_info;
2038
2039 pattern_info=AcquireImageInfo();
2040 (void) CopyMagickString(pattern_info->filename,token,
cristy151b66d2015-04-15 10:50:31 +00002041 MagickPathExtent);
cristy947cb4c2011-10-20 18:41:46 +00002042 graphic_context[n]->fill_pattern=ReadImage(pattern_info,
2043 exception);
2044 CatchException(exception);
cristy3ed852e2009-09-05 21:47:34 +00002045 pattern_info=DestroyImageInfo(pattern_info);
2046 }
2047 }
2048 break;
2049 }
dirkc8e845f2015-04-07 19:32:12 +00002050 if (LocaleCompare("fill-opacity",keyword) == 0)
cristy3ed852e2009-09-05 21:47:34 +00002051 {
Cristy8bedb4e2016-03-25 19:54:25 -04002052 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002053 factor=strchr(token,'%') != (char *) NULL ? 0.01 : 1.0;
Cristyb5298432016-09-19 20:07:29 -04002054 graphic_context[n]->fill.alpha=QuantumRange-ClampToQuantum(
2055 (MagickRealType) QuantumRange*(1.0-factor*StringToDouble(token,
2056 &next_token)));
Cristy3ed6c692016-05-23 19:24:23 -04002057 if (token == next_token)
2058 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002059 break;
2060 }
2061 if (LocaleCompare("fill-rule",keyword) == 0)
2062 {
cristybb503372010-05-27 20:51:26 +00002063 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002064 fill_rule;
2065
Cristy8bedb4e2016-03-25 19:54:25 -04002066 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00002067 fill_rule=ParseCommandOption(MagickFillRuleOptions,MagickFalse,
cristy3ed852e2009-09-05 21:47:34 +00002068 token);
2069 if (fill_rule == -1)
anthony2a021472011-10-08 11:29:29 +00002070 status=MagickFalse;
2071 else
2072 graphic_context[n]->fill_rule=(FillRule) fill_rule;
cristy3ed852e2009-09-05 21:47:34 +00002073 break;
2074 }
2075 if (LocaleCompare("font",keyword) == 0)
2076 {
Cristy8bedb4e2016-03-25 19:54:25 -04002077 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002078 (void) CloneString(&graphic_context[n]->font,token);
2079 if (LocaleCompare("none",token) == 0)
Cristye4f41132016-07-10 08:13:20 -04002080 graphic_context[n]->font=(char *) RelinquishMagickMemory(
2081 graphic_context[n]->font);
cristy3ed852e2009-09-05 21:47:34 +00002082 break;
2083 }
2084 if (LocaleCompare("font-family",keyword) == 0)
2085 {
Cristy8bedb4e2016-03-25 19:54:25 -04002086 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002087 (void) CloneString(&graphic_context[n]->family,token);
2088 break;
2089 }
2090 if (LocaleCompare("font-size",keyword) == 0)
2091 {
Cristy8bedb4e2016-03-25 19:54:25 -04002092 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002093 graphic_context[n]->pointsize=StringToDouble(token,&next_token);
2094 if (token == next_token)
2095 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002096 break;
2097 }
2098 if (LocaleCompare("font-stretch",keyword) == 0)
2099 {
cristybb503372010-05-27 20:51:26 +00002100 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002101 stretch;
2102
Cristy8bedb4e2016-03-25 19:54:25 -04002103 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00002104 stretch=ParseCommandOption(MagickStretchOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002105 if (stretch == -1)
anthony2a021472011-10-08 11:29:29 +00002106 status=MagickFalse;
2107 else
2108 graphic_context[n]->stretch=(StretchType) stretch;
cristy3ed852e2009-09-05 21:47:34 +00002109 break;
2110 }
2111 if (LocaleCompare("font-style",keyword) == 0)
2112 {
cristybb503372010-05-27 20:51:26 +00002113 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002114 style;
2115
Cristy8bedb4e2016-03-25 19:54:25 -04002116 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00002117 style=ParseCommandOption(MagickStyleOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002118 if (style == -1)
anthony2a021472011-10-08 11:29:29 +00002119 status=MagickFalse;
2120 else
2121 graphic_context[n]->style=(StyleType) style;
cristy3ed852e2009-09-05 21:47:34 +00002122 break;
2123 }
2124 if (LocaleCompare("font-weight",keyword) == 0)
2125 {
dirk341d2ec2015-07-31 20:55:15 +00002126 ssize_t
2127 weight;
2128
Cristy8bedb4e2016-03-25 19:54:25 -04002129 GetNextToken(q,&q,extent,token);
Cristy4c038a52016-05-01 18:20:49 -04002130 weight=ParseCommandOption(MagickWeightOptions,MagickFalse,token);
dirk341d2ec2015-07-31 20:55:15 +00002131 if (weight == -1)
Cristy726812f2016-05-04 19:09:35 -04002132 weight=(ssize_t) StringToUnsignedLong(token);
dirk341d2ec2015-07-31 20:55:15 +00002133 graphic_context[n]->weight=(size_t) weight;
cristy3ed852e2009-09-05 21:47:34 +00002134 break;
2135 }
2136 status=MagickFalse;
2137 break;
2138 }
2139 case 'g':
2140 case 'G':
2141 {
2142 if (LocaleCompare("gradient-units",keyword) == 0)
2143 {
Cristy8bedb4e2016-03-25 19:54:25 -04002144 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002145 break;
2146 }
2147 if (LocaleCompare("gravity",keyword) == 0)
2148 {
cristybb503372010-05-27 20:51:26 +00002149 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002150 gravity;
2151
Cristy8bedb4e2016-03-25 19:54:25 -04002152 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00002153 gravity=ParseCommandOption(MagickGravityOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002154 if (gravity == -1)
anthony2a021472011-10-08 11:29:29 +00002155 status=MagickFalse;
2156 else
2157 graphic_context[n]->gravity=(GravityType) gravity;
cristy3ed852e2009-09-05 21:47:34 +00002158 break;
2159 }
2160 status=MagickFalse;
2161 break;
2162 }
2163 case 'i':
2164 case 'I':
2165 {
2166 if (LocaleCompare("image",keyword) == 0)
2167 {
cristybb503372010-05-27 20:51:26 +00002168 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002169 compose;
2170
2171 primitive_type=ImagePrimitive;
Cristy8bedb4e2016-03-25 19:54:25 -04002172 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00002173 compose=ParseCommandOption(MagickComposeOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002174 if (compose == -1)
anthony2a021472011-10-08 11:29:29 +00002175 status=MagickFalse;
2176 else
2177 graphic_context[n]->compose=(CompositeOperator) compose;
cristy3ed852e2009-09-05 21:47:34 +00002178 break;
2179 }
cristyb32b90a2009-09-07 21:45:48 +00002180 if (LocaleCompare("interline-spacing",keyword) == 0)
2181 {
Cristy8bedb4e2016-03-25 19:54:25 -04002182 GetNextToken(q,&q,extent,token);
cristydbdd0e32011-11-04 23:29:40 +00002183 graphic_context[n]->interline_spacing=StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002184 &next_token);
2185 if (token == next_token)
2186 status=MagickFalse;
cristyb32b90a2009-09-07 21:45:48 +00002187 break;
2188 }
cristy3ed852e2009-09-05 21:47:34 +00002189 if (LocaleCompare("interword-spacing",keyword) == 0)
2190 {
Cristy8bedb4e2016-03-25 19:54:25 -04002191 GetNextToken(q,&q,extent,token);
cristydbdd0e32011-11-04 23:29:40 +00002192 graphic_context[n]->interword_spacing=StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002193 &next_token);
2194 if (token == next_token)
2195 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002196 break;
2197 }
2198 status=MagickFalse;
2199 break;
2200 }
2201 case 'k':
2202 case 'K':
2203 {
2204 if (LocaleCompare("kerning",keyword) == 0)
2205 {
Cristy8bedb4e2016-03-25 19:54:25 -04002206 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002207 graphic_context[n]->kerning=StringToDouble(token,&next_token);
2208 if (token == next_token)
2209 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002210 break;
2211 }
2212 status=MagickFalse;
2213 break;
2214 }
2215 case 'l':
2216 case 'L':
2217 {
2218 if (LocaleCompare("line",keyword) == 0)
anthony2a021472011-10-08 11:29:29 +00002219 primitive_type=LinePrimitive;
2220 else
2221 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002222 break;
2223 }
cristy3ed852e2009-09-05 21:47:34 +00002224 case 'o':
2225 case 'O':
2226 {
2227 if (LocaleCompare("offset",keyword) == 0)
2228 {
Cristy8bedb4e2016-03-25 19:54:25 -04002229 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002230 break;
2231 }
2232 if (LocaleCompare("opacity",keyword) == 0)
2233 {
Cristy8bedb4e2016-03-25 19:54:25 -04002234 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002235 factor=strchr(token,'%') != (char *) NULL ? 0.01 : 1.0;
Cristyae2e0fb2016-07-13 18:08:36 -04002236 graphic_context[n]->fill_alpha=QuantumRange*(1.0-(QuantumScale*
2237 graphic_context[n]->fill_alpha*(1.0-factor*StringToDouble(token,
2238 &next_token))));
2239 graphic_context[n]->stroke_alpha=QuantumRange*(1.0-(QuantumScale*
2240 graphic_context[n]->stroke_alpha*(1.0-factor*StringToDouble(token,
2241 &next_token))));
Cristy3ed6c692016-05-23 19:24:23 -04002242 if (token == next_token)
2243 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002244 break;
2245 }
2246 status=MagickFalse;
2247 break;
2248 }
2249 case 'p':
2250 case 'P':
2251 {
2252 if (LocaleCompare("path",keyword) == 0)
2253 {
2254 primitive_type=PathPrimitive;
2255 break;
2256 }
2257 if (LocaleCompare("point",keyword) == 0)
2258 {
2259 primitive_type=PointPrimitive;
2260 break;
2261 }
2262 if (LocaleCompare("polyline",keyword) == 0)
2263 {
2264 primitive_type=PolylinePrimitive;
2265 break;
2266 }
2267 if (LocaleCompare("polygon",keyword) == 0)
2268 {
2269 primitive_type=PolygonPrimitive;
2270 break;
2271 }
2272 if (LocaleCompare("pop",keyword) == 0)
2273 {
Cristy8bedb4e2016-03-25 19:54:25 -04002274 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002275 if (LocaleCompare("clip-path",token) == 0)
2276 break;
2277 if (LocaleCompare("defs",token) == 0)
2278 break;
2279 if (LocaleCompare("gradient",token) == 0)
2280 break;
2281 if (LocaleCompare("graphic-context",token) == 0)
2282 {
2283 if (n <= 0)
2284 {
cristy947cb4c2011-10-20 18:41:46 +00002285 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002286 DrawError,"UnbalancedGraphicContextPushPop","`%s'",token);
Cristy91dac172016-06-01 10:14:08 -04002287 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002288 n=0;
2289 break;
2290 }
2291 if (graphic_context[n]->clip_mask != (char *) NULL)
2292 if (LocaleCompare(graphic_context[n]->clip_mask,
2293 graphic_context[n-1]->clip_mask) != 0)
cristyacd0d4c2015-07-25 16:12:33 +00002294 (void) SetImageMask(image,ReadPixelMask,(Image *) NULL,
2295 exception);
cristy3ed852e2009-09-05 21:47:34 +00002296 graphic_context[n]=DestroyDrawInfo(graphic_context[n]);
2297 n--;
2298 break;
2299 }
2300 if (LocaleCompare("pattern",token) == 0)
2301 break;
2302 status=MagickFalse;
2303 break;
2304 }
2305 if (LocaleCompare("push",keyword) == 0)
2306 {
Cristy8bedb4e2016-03-25 19:54:25 -04002307 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002308 if (LocaleCompare("clip-path",token) == 0)
2309 {
2310 char
cristy151b66d2015-04-15 10:50:31 +00002311 name[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +00002312
Cristy8bedb4e2016-03-25 19:54:25 -04002313 GetNextToken(q,&q,extent,token);
cristy151b66d2015-04-15 10:50:31 +00002314 (void) FormatLocaleString(name,MagickPathExtent,"%s",token);
cristy3ed852e2009-09-05 21:47:34 +00002315 for (p=q; *q != '\0'; )
2316 {
Cristy8bedb4e2016-03-25 19:54:25 -04002317 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002318 if (LocaleCompare(token,"pop") != 0)
2319 continue;
Cristy8bedb4e2016-03-25 19:54:25 -04002320 GetNextToken(q,(const char **) NULL,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002321 if (LocaleCompare(token,"clip-path") != 0)
2322 continue;
2323 break;
2324 }
2325 (void) CopyMagickString(token,p,(size_t) (q-p-4+1));
2326 (void) SetImageArtifact(image,name,token);
Cristy8bedb4e2016-03-25 19:54:25 -04002327 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002328 break;
2329 }
2330 if (LocaleCompare("gradient",token) == 0)
2331 {
2332 char
cristy151b66d2015-04-15 10:50:31 +00002333 key[2*MagickPathExtent],
2334 name[MagickPathExtent],
2335 type[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +00002336
cristy3ed852e2009-09-05 21:47:34 +00002337 SegmentInfo
2338 segment;
2339
Cristy8bedb4e2016-03-25 19:54:25 -04002340 GetNextToken(q,&q,extent,token);
cristy151b66d2015-04-15 10:50:31 +00002341 (void) CopyMagickString(name,token,MagickPathExtent);
Cristy8bedb4e2016-03-25 19:54:25 -04002342 GetNextToken(q,&q,extent,token);
cristy151b66d2015-04-15 10:50:31 +00002343 (void) CopyMagickString(type,token,MagickPathExtent);
Cristy8bedb4e2016-03-25 19:54:25 -04002344 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002345 segment.x1=StringToDouble(token,&next_token);
2346 if (token == next_token)
2347 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002348 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002349 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002350 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002351 segment.y1=StringToDouble(token,&next_token);
2352 if (token == next_token)
2353 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002354 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002355 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002356 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002357 segment.x2=StringToDouble(token,&next_token);
2358 if (token == next_token)
2359 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002360 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002361 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002362 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002363 segment.y2=StringToDouble(token,&next_token);
2364 if (token == next_token)
2365 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002366 if (LocaleCompare(type,"radial") == 0)
2367 {
Cristy8bedb4e2016-03-25 19:54:25 -04002368 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002369 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002370 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002371 }
2372 for (p=q; *q != '\0'; )
2373 {
Cristy8bedb4e2016-03-25 19:54:25 -04002374 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002375 if (LocaleCompare(token,"pop") != 0)
2376 continue;
Cristy8bedb4e2016-03-25 19:54:25 -04002377 GetNextToken(q,(const char **) NULL,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002378 if (LocaleCompare(token,"gradient") != 0)
2379 continue;
2380 break;
2381 }
2382 (void) CopyMagickString(token,p,(size_t) (q-p-4+1));
2383 bounds.x1=graphic_context[n]->affine.sx*segment.x1+
2384 graphic_context[n]->affine.ry*segment.y1+
2385 graphic_context[n]->affine.tx;
2386 bounds.y1=graphic_context[n]->affine.rx*segment.x1+
2387 graphic_context[n]->affine.sy*segment.y1+
2388 graphic_context[n]->affine.ty;
2389 bounds.x2=graphic_context[n]->affine.sx*segment.x2+
2390 graphic_context[n]->affine.ry*segment.y2+
2391 graphic_context[n]->affine.tx;
2392 bounds.y2=graphic_context[n]->affine.rx*segment.x2+
2393 graphic_context[n]->affine.sy*segment.y2+
2394 graphic_context[n]->affine.ty;
cristy151b66d2015-04-15 10:50:31 +00002395 (void) FormatLocaleString(key,MagickPathExtent,"%s",name);
cristy3ed852e2009-09-05 21:47:34 +00002396 (void) SetImageArtifact(image,key,token);
dirk84c7c042015-07-12 13:01:35 +00002397 (void) FormatLocaleString(key,MagickPathExtent,"%s-type",name);
2398 (void) SetImageArtifact(image,key,type);
Cristy726812f2016-05-04 19:09:35 -04002399 (void) FormatLocaleString(key,MagickPathExtent,"%s-geometry",
2400 name);
cristy151b66d2015-04-15 10:50:31 +00002401 (void) FormatLocaleString(geometry,MagickPathExtent,
cristye7f51092010-01-17 00:39:37 +00002402 "%gx%g%+.15g%+.15g",
cristy3ed852e2009-09-05 21:47:34 +00002403 MagickMax(fabs(bounds.x2-bounds.x1+1.0),1.0),
2404 MagickMax(fabs(bounds.y2-bounds.y1+1.0),1.0),
2405 bounds.x1,bounds.y1);
2406 (void) SetImageArtifact(image,key,geometry);
Cristy8bedb4e2016-03-25 19:54:25 -04002407 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002408 break;
2409 }
2410 if (LocaleCompare("pattern",token) == 0)
2411 {
dirkc93932a2015-10-01 16:56:10 +02002412 char
2413 key[2*MagickPathExtent],
2414 name[MagickPathExtent];
2415
cristy3ed852e2009-09-05 21:47:34 +00002416 RectangleInfo
dirkc93932a2015-10-01 16:56:10 +02002417 pattern_bounds;
cristy3ed852e2009-09-05 21:47:34 +00002418
Cristy8bedb4e2016-03-25 19:54:25 -04002419 GetNextToken(q,&q,extent,token);
cristy151b66d2015-04-15 10:50:31 +00002420 (void) CopyMagickString(name,token,MagickPathExtent);
Cristy8bedb4e2016-03-25 19:54:25 -04002421 GetNextToken(q,&q,extent,token);
dirkc93932a2015-10-01 16:56:10 +02002422 pattern_bounds.x=(ssize_t) ceil(StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002423 &next_token)-0.5);
2424 if (token == next_token)
2425 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002426 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002427 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002428 GetNextToken(q,&q,extent,token);
dirkc93932a2015-10-01 16:56:10 +02002429 pattern_bounds.y=(ssize_t) ceil(StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002430 &next_token)-0.5);
2431 if (token == next_token)
2432 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002433 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002434 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002435 GetNextToken(q,&q,extent,token);
dirkc93932a2015-10-01 16:56:10 +02002436 pattern_bounds.width=(size_t) floor(StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002437 &next_token)+0.5);
2438 if (token == next_token)
2439 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002440 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002441 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002442 GetNextToken(q,&q,extent,token);
dirkc93932a2015-10-01 16:56:10 +02002443 pattern_bounds.height=(size_t) floor(StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002444 &next_token)+0.5);
2445 if (token == next_token)
2446 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002447 for (p=q; *q != '\0'; )
2448 {
Cristy8bedb4e2016-03-25 19:54:25 -04002449 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002450 if (LocaleCompare(token,"pop") != 0)
2451 continue;
Cristy8bedb4e2016-03-25 19:54:25 -04002452 GetNextToken(q,(const char **) NULL,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002453 if (LocaleCompare(token,"pattern") != 0)
2454 continue;
2455 break;
2456 }
2457 (void) CopyMagickString(token,p,(size_t) (q-p-4+1));
cristy151b66d2015-04-15 10:50:31 +00002458 (void) FormatLocaleString(key,MagickPathExtent,"%s",name);
cristy3ed852e2009-09-05 21:47:34 +00002459 (void) SetImageArtifact(image,key,token);
dirkc93932a2015-10-01 16:56:10 +02002460 (void) FormatLocaleString(key,MagickPathExtent,"%s-geometry",
2461 name);
cristy151b66d2015-04-15 10:50:31 +00002462 (void) FormatLocaleString(geometry,MagickPathExtent,
dirkc93932a2015-10-01 16:56:10 +02002463 "%.20gx%.20g%+.20g%+.20g",(double)pattern_bounds.width,
2464 (double)pattern_bounds.height,(double)pattern_bounds.x,
2465 (double)pattern_bounds.y);
cristy3ed852e2009-09-05 21:47:34 +00002466 (void) SetImageArtifact(image,key,geometry);
Cristy8bedb4e2016-03-25 19:54:25 -04002467 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002468 break;
2469 }
2470 if (LocaleCompare("graphic-context",token) == 0)
2471 {
2472 n++;
2473 graphic_context=(DrawInfo **) ResizeQuantumMemory(
2474 graphic_context,(size_t) (n+1),sizeof(*graphic_context));
2475 if (graphic_context == (DrawInfo **) NULL)
2476 {
cristy947cb4c2011-10-20 18:41:46 +00002477 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002478 ResourceLimitError,"MemoryAllocationFailed","`%s'",
cristy947cb4c2011-10-20 18:41:46 +00002479 image->filename);
cristy3ed852e2009-09-05 21:47:34 +00002480 break;
2481 }
2482 graphic_context[n]=CloneDrawInfo((ImageInfo *) NULL,
2483 graphic_context[n-1]);
2484 break;
2485 }
2486 if (LocaleCompare("defs",token) == 0)
2487 break;
2488 status=MagickFalse;
2489 break;
2490 }
2491 status=MagickFalse;
2492 break;
2493 }
2494 case 'r':
2495 case 'R':
2496 {
2497 if (LocaleCompare("rectangle",keyword) == 0)
2498 {
2499 primitive_type=RectanglePrimitive;
2500 break;
2501 }
2502 if (LocaleCompare("rotate",keyword) == 0)
2503 {
Cristy8bedb4e2016-03-25 19:54:25 -04002504 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002505 angle=StringToDouble(token,&next_token);
2506 if (token == next_token)
2507 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002508 affine.sx=cos(DegreesToRadians(fmod((double) angle,360.0)));
2509 affine.rx=sin(DegreesToRadians(fmod((double) angle,360.0)));
2510 affine.ry=(-sin(DegreesToRadians(fmod((double) angle,360.0))));
2511 affine.sy=cos(DegreesToRadians(fmod((double) angle,360.0)));
2512 break;
2513 }
2514 if (LocaleCompare("roundRectangle",keyword) == 0)
2515 {
2516 primitive_type=RoundRectanglePrimitive;
2517 break;
2518 }
2519 status=MagickFalse;
2520 break;
2521 }
2522 case 's':
2523 case 'S':
2524 {
2525 if (LocaleCompare("scale",keyword) == 0)
2526 {
Cristy8bedb4e2016-03-25 19:54:25 -04002527 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002528 affine.sx=StringToDouble(token,&next_token);
2529 if (token == next_token)
2530 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002531 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002532 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002533 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002534 affine.sy=StringToDouble(token,&next_token);
2535 if (token == next_token)
2536 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002537 break;
2538 }
2539 if (LocaleCompare("skewX",keyword) == 0)
2540 {
Cristy8bedb4e2016-03-25 19:54:25 -04002541 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002542 angle=StringToDouble(token,&next_token);
2543 if (token == next_token)
2544 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002545 affine.ry=sin(DegreesToRadians(angle));
2546 break;
2547 }
2548 if (LocaleCompare("skewY",keyword) == 0)
2549 {
Cristy8bedb4e2016-03-25 19:54:25 -04002550 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002551 angle=StringToDouble(token,&next_token);
2552 if (token == next_token)
2553 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002554 affine.rx=(-tan(DegreesToRadians(angle)/2.0));
2555 break;
2556 }
2557 if (LocaleCompare("stop-color",keyword) == 0)
2558 {
cristy101ab702011-10-13 13:06:32 +00002559 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00002560 stop_color;
2561
dirkb6f578b2015-07-12 17:56:39 +00002562 number_stops++;
2563 if (number_stops == 1)
2564 stops=(StopInfo *) AcquireQuantumMemory(2,sizeof(*stops));
2565 else if (number_stops > 2)
2566 stops=(StopInfo *) ResizeQuantumMemory(stops,number_stops,
2567 sizeof(*stops));
2568 if (stops == (StopInfo *) NULL)
2569 {
2570 (void) ThrowMagickException(exception,GetMagickModule(),
2571 ResourceLimitError,"MemoryAllocationFailed","`%s'",
2572 image->filename);
2573 break;
2574 }
Cristy8bedb4e2016-03-25 19:54:25 -04002575 GetNextToken(q,&q,extent,token);
cristy9950d572011-10-01 18:22:35 +00002576 (void) QueryColorCompliance(token,AllCompliance,&stop_color,
cristy947cb4c2011-10-20 18:41:46 +00002577 exception);
dirkb6f578b2015-07-12 17:56:39 +00002578 stops[number_stops-1].color=stop_color;
Cristy8bedb4e2016-03-25 19:54:25 -04002579 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002580 stops[number_stops-1].offset=StringToDouble(token,&next_token);
2581 if (token == next_token)
2582 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002583 break;
2584 }
2585 if (LocaleCompare("stroke",keyword) == 0)
2586 {
Cristy8bedb4e2016-03-25 19:54:25 -04002587 GetNextToken(q,&q,extent,token);
cristy151b66d2015-04-15 10:50:31 +00002588 (void) FormatLocaleString(pattern,MagickPathExtent,"%s",token);
cristy3ed852e2009-09-05 21:47:34 +00002589 if (GetImageArtifact(image,pattern) != (const char *) NULL)
2590 (void) DrawPatternPath(image,draw_info,token,
cristy018f07f2011-09-04 21:15:19 +00002591 &graphic_context[n]->stroke_pattern,exception);
cristy3ed852e2009-09-05 21:47:34 +00002592 else
2593 {
cristy8a77f142013-08-14 12:44:38 +00002594 status&=QueryColorCompliance(token,AllCompliance,
cristy947cb4c2011-10-20 18:41:46 +00002595 &graphic_context[n]->stroke,exception);
Cristy48bcfe02016-07-13 18:05:02 -04002596 if (graphic_context[n]->stroke_alpha != OpaqueAlpha)
2597 graphic_context[n]->stroke.alpha=
2598 graphic_context[n]->stroke_alpha;
cristy3ed852e2009-09-05 21:47:34 +00002599 if (status == MagickFalse)
2600 {
2601 ImageInfo
2602 *pattern_info;
2603
2604 pattern_info=AcquireImageInfo();
2605 (void) CopyMagickString(pattern_info->filename,token,
cristy151b66d2015-04-15 10:50:31 +00002606 MagickPathExtent);
cristy947cb4c2011-10-20 18:41:46 +00002607 graphic_context[n]->stroke_pattern=ReadImage(pattern_info,
2608 exception);
2609 CatchException(exception);
cristy3ed852e2009-09-05 21:47:34 +00002610 pattern_info=DestroyImageInfo(pattern_info);
2611 }
2612 }
2613 break;
2614 }
2615 if (LocaleCompare("stroke-antialias",keyword) == 0)
2616 {
Cristy8bedb4e2016-03-25 19:54:25 -04002617 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002618 graphic_context[n]->stroke_antialias=
cristyf2f27272009-12-17 14:48:46 +00002619 StringToLong(token) != 0 ? MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002620 break;
2621 }
2622 if (LocaleCompare("stroke-dasharray",keyword) == 0)
2623 {
2624 if (graphic_context[n]->dash_pattern != (double *) NULL)
2625 graphic_context[n]->dash_pattern=(double *)
2626 RelinquishMagickMemory(graphic_context[n]->dash_pattern);
2627 if (IsPoint(q) != MagickFalse)
2628 {
2629 const char
dirkc93932a2015-10-01 16:56:10 +02002630 *r;
cristy3ed852e2009-09-05 21:47:34 +00002631
dirkc93932a2015-10-01 16:56:10 +02002632 r=q;
Cristy8bedb4e2016-03-25 19:54:25 -04002633 GetNextToken(r,&r,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002634 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002635 GetNextToken(r,&r,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002636 for (x=0; IsPoint(token) != MagickFalse; x++)
2637 {
Cristy8bedb4e2016-03-25 19:54:25 -04002638 GetNextToken(r,&r,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002639 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002640 GetNextToken(r,&r,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002641 }
2642 graphic_context[n]->dash_pattern=(double *)
2643 AcquireQuantumMemory((size_t) (2UL*x+1UL),
2644 sizeof(*graphic_context[n]->dash_pattern));
2645 if (graphic_context[n]->dash_pattern == (double *) NULL)
2646 {
cristy947cb4c2011-10-20 18:41:46 +00002647 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002648 ResourceLimitError,"MemoryAllocationFailed","`%s'",
cristy947cb4c2011-10-20 18:41:46 +00002649 image->filename);
Cristy91dac172016-06-01 10:14:08 -04002650 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002651 break;
2652 }
2653 for (j=0; j < x; j++)
2654 {
Cristy8bedb4e2016-03-25 19:54:25 -04002655 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002656 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002657 GetNextToken(q,&q,extent,token);
cristy9b34e302011-11-05 02:15:45 +00002658 graphic_context[n]->dash_pattern[j]=StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002659 &next_token);
2660 if (token == next_token)
2661 status=MagickFalse;
Cristy9cdadd92016-05-03 18:17:01 -04002662 if (graphic_context[n]->dash_pattern[j] < 0.0)
2663 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002664 }
2665 if ((x & 0x01) != 0)
2666 for ( ; j < (2*x); j++)
2667 graphic_context[n]->dash_pattern[j]=
2668 graphic_context[n]->dash_pattern[j-x];
2669 graphic_context[n]->dash_pattern[j]=0.0;
2670 break;
2671 }
Cristy8bedb4e2016-03-25 19:54:25 -04002672 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002673 break;
2674 }
2675 if (LocaleCompare("stroke-dashoffset",keyword) == 0)
2676 {
Cristy8bedb4e2016-03-25 19:54:25 -04002677 GetNextToken(q,&q,extent,token);
cristydbdd0e32011-11-04 23:29:40 +00002678 graphic_context[n]->dash_offset=StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002679 &next_token);
2680 if (token == next_token)
2681 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002682 break;
2683 }
2684 if (LocaleCompare("stroke-linecap",keyword) == 0)
2685 {
cristybb503372010-05-27 20:51:26 +00002686 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002687 linecap;
2688
Cristy8bedb4e2016-03-25 19:54:25 -04002689 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00002690 linecap=ParseCommandOption(MagickLineCapOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002691 if (linecap == -1)
anthony2a021472011-10-08 11:29:29 +00002692 status=MagickFalse;
2693 else
2694 graphic_context[n]->linecap=(LineCap) linecap;
cristy3ed852e2009-09-05 21:47:34 +00002695 break;
2696 }
2697 if (LocaleCompare("stroke-linejoin",keyword) == 0)
2698 {
cristybb503372010-05-27 20:51:26 +00002699 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002700 linejoin;
2701
Cristy8bedb4e2016-03-25 19:54:25 -04002702 GetNextToken(q,&q,extent,token);
cristy7118edf2011-10-08 13:33:25 +00002703 linejoin=ParseCommandOption(MagickLineJoinOptions,MagickFalse,
2704 token);
cristy3ed852e2009-09-05 21:47:34 +00002705 if (linejoin == -1)
anthony2a021472011-10-08 11:29:29 +00002706 status=MagickFalse;
2707 else
2708 graphic_context[n]->linejoin=(LineJoin) linejoin;
cristy3ed852e2009-09-05 21:47:34 +00002709 break;
2710 }
2711 if (LocaleCompare("stroke-miterlimit",keyword) == 0)
2712 {
Cristy8bedb4e2016-03-25 19:54:25 -04002713 GetNextToken(q,&q,extent,token);
cristye27293e2009-12-18 02:53:20 +00002714 graphic_context[n]->miterlimit=StringToUnsignedLong(token);
cristy3ed852e2009-09-05 21:47:34 +00002715 break;
2716 }
2717 if (LocaleCompare("stroke-opacity",keyword) == 0)
2718 {
Cristy8bedb4e2016-03-25 19:54:25 -04002719 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002720 factor=strchr(token,'%') != (char *) NULL ? 0.01 : 1.0;
Cristyb5298432016-09-19 20:07:29 -04002721 graphic_context[n]->stroke.alpha=QuantumRange-ClampToQuantum(
2722 (MagickRealType) QuantumRange*(1.0-factor*StringToDouble(token,
2723 &next_token)));
Cristy3ed6c692016-05-23 19:24:23 -04002724 if (token == next_token)
2725 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002726 break;
2727 }
2728 if (LocaleCompare("stroke-width",keyword) == 0)
2729 {
Cristy8bedb4e2016-03-25 19:54:25 -04002730 GetNextToken(q,&q,extent,token);
Cristye4f41132016-07-10 08:13:20 -04002731 graphic_context[n]->stroke_width=StringToDouble(token,&next_token);
Cristy3ed6c692016-05-23 19:24:23 -04002732 if (token == next_token)
2733 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002734 break;
2735 }
2736 status=MagickFalse;
2737 break;
2738 }
2739 case 't':
2740 case 'T':
2741 {
2742 if (LocaleCompare("text",keyword) == 0)
2743 {
2744 primitive_type=TextPrimitive;
2745 break;
2746 }
2747 if (LocaleCompare("text-align",keyword) == 0)
2748 {
cristybb503372010-05-27 20:51:26 +00002749 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002750 align;
2751
Cristy8bedb4e2016-03-25 19:54:25 -04002752 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00002753 align=ParseCommandOption(MagickAlignOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002754 if (align == -1)
anthony2a021472011-10-08 11:29:29 +00002755 status=MagickFalse;
2756 else
2757 graphic_context[n]->align=(AlignType) align;
cristy3ed852e2009-09-05 21:47:34 +00002758 break;
2759 }
2760 if (LocaleCompare("text-anchor",keyword) == 0)
2761 {
cristybb503372010-05-27 20:51:26 +00002762 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00002763 align;
2764
Cristy8bedb4e2016-03-25 19:54:25 -04002765 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00002766 align=ParseCommandOption(MagickAlignOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00002767 if (align == -1)
anthony2a021472011-10-08 11:29:29 +00002768 status=MagickFalse;
2769 else
2770 graphic_context[n]->align=(AlignType) align;
cristy3ed852e2009-09-05 21:47:34 +00002771 break;
2772 }
2773 if (LocaleCompare("text-antialias",keyword) == 0)
2774 {
Cristy8bedb4e2016-03-25 19:54:25 -04002775 GetNextToken(q,&q,extent,token);
Cristye4f41132016-07-10 08:13:20 -04002776 graphic_context[n]->text_antialias=StringToLong(token) != 0 ?
2777 MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002778 break;
2779 }
2780 if (LocaleCompare("text-undercolor",keyword) == 0)
2781 {
Cristy8bedb4e2016-03-25 19:54:25 -04002782 GetNextToken(q,&q,extent,token);
cristy9950d572011-10-01 18:22:35 +00002783 (void) QueryColorCompliance(token,AllCompliance,
cristy947cb4c2011-10-20 18:41:46 +00002784 &graphic_context[n]->undercolor,exception);
cristy3ed852e2009-09-05 21:47:34 +00002785 break;
2786 }
2787 if (LocaleCompare("translate",keyword) == 0)
2788 {
Cristy8bedb4e2016-03-25 19:54:25 -04002789 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002790 affine.tx=StringToDouble(token,&next_token);
2791 if (token == next_token)
2792 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002793 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002794 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002795 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002796 affine.ty=StringToDouble(token,&next_token);
2797 if (token == next_token)
2798 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002799 break;
2800 }
2801 status=MagickFalse;
2802 break;
2803 }
2804 case 'v':
2805 case 'V':
2806 {
2807 if (LocaleCompare("viewbox",keyword) == 0)
2808 {
Cristy8bedb4e2016-03-25 19:54:25 -04002809 GetNextToken(q,&q,extent,token);
cristy9b34e302011-11-05 02:15:45 +00002810 graphic_context[n]->viewbox.x=(ssize_t) ceil(StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002811 &next_token)-0.5);
2812 if (token == next_token)
2813 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002814 GetNextToken(q,&q,extent,token);
cristy06609ee2010-03-17 20:21:27 +00002815 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002816 GetNextToken(q,&q,extent,token);
cristy9b34e302011-11-05 02:15:45 +00002817 graphic_context[n]->viewbox.y=(ssize_t) ceil(StringToDouble(token,
Cristy3ed6c692016-05-23 19:24:23 -04002818 &next_token)-0.5);
2819 if (token == next_token)
2820 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002821 GetNextToken(q,&q,extent,token);
cristy06609ee2010-03-17 20:21:27 +00002822 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002823 GetNextToken(q,&q,extent,token);
cristy9b34e302011-11-05 02:15:45 +00002824 graphic_context[n]->viewbox.width=(size_t) floor(StringToDouble(
Cristy3ed6c692016-05-23 19:24:23 -04002825 token,&next_token)+0.5);
2826 if (token == next_token)
2827 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002828 GetNextToken(q,&q,extent,token);
cristy06609ee2010-03-17 20:21:27 +00002829 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002830 GetNextToken(q,&q,extent,token);
cristy9b34e302011-11-05 02:15:45 +00002831 graphic_context[n]->viewbox.height=(size_t) floor(StringToDouble(
Cristy3ed6c692016-05-23 19:24:23 -04002832 token,&next_token)+0.5);
2833 if (token == next_token)
2834 status=MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00002835 break;
2836 }
2837 status=MagickFalse;
2838 break;
2839 }
2840 default:
2841 {
2842 status=MagickFalse;
2843 break;
2844 }
2845 }
2846 if (status == MagickFalse)
2847 break;
Cristy48bcfe02016-07-13 18:05:02 -04002848 if ((fabs(affine.sx-1.0) >= DrawEpsilon) ||
2849 (fabs(affine.rx) >= DrawEpsilon) || (fabs(affine.ry) >= DrawEpsilon) ||
Cristy911b5862016-06-24 17:45:06 -04002850 (fabs(affine.sy-1.0) >= DrawEpsilon) ||
Cristy48bcfe02016-07-13 18:05:02 -04002851 (fabs(affine.tx) >= DrawEpsilon) || (fabs(affine.ty) >= DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00002852 {
cristyfbd70092010-12-01 19:31:14 +00002853 graphic_context[n]->affine.sx=current.sx*affine.sx+current.ry*affine.rx;
2854 graphic_context[n]->affine.rx=current.rx*affine.sx+current.sy*affine.rx;
2855 graphic_context[n]->affine.ry=current.sx*affine.ry+current.ry*affine.sy;
2856 graphic_context[n]->affine.sy=current.rx*affine.ry+current.sy*affine.sy;
2857 graphic_context[n]->affine.tx=current.sx*affine.tx+current.ry*affine.ty+
2858 current.tx;
2859 graphic_context[n]->affine.ty=current.rx*affine.tx+current.sy*affine.ty+
2860 current.ty;
cristy3ed852e2009-09-05 21:47:34 +00002861 }
2862 if (primitive_type == UndefinedPrimitive)
2863 {
dirkb6f578b2015-07-12 17:56:39 +00002864 if (*q == '\0')
2865 {
2866 if (number_stops > 1)
2867 {
2868 GradientType
2869 type;
2870
2871 type=LinearGradient;
2872 if (draw_info->gradient.type == RadialGradient)
2873 type=RadialGradient;
2874 (void) GradientImage(image,type,PadSpread,stops,number_stops,
Cristyd84051a2016-07-05 07:01:47 -04002875 exception);
dirkb6f578b2015-07-12 17:56:39 +00002876 }
2877 if (number_stops > 0)
2878 stops=(StopInfo *) RelinquishMagickMemory(stops);
2879 }
cristy3ed852e2009-09-05 21:47:34 +00002880 if (image->debug != MagickFalse)
Cristyd84051a2016-07-05 07:01:47 -04002881 (void) LogMagickEvent(DrawEvent,GetMagickModule()," %.*s",(int)
2882 (q-p),p);
cristy3ed852e2009-09-05 21:47:34 +00002883 continue;
2884 }
2885 /*
2886 Parse the primitive attributes.
2887 */
2888 i=0;
2889 j=0;
2890 primitive_info[0].point.x=0.0;
2891 primitive_info[0].point.y=0.0;
2892 for (x=0; *q != '\0'; x++)
2893 {
2894 /*
2895 Define points.
2896 */
2897 if (IsPoint(q) == MagickFalse)
2898 break;
Cristy8bedb4e2016-03-25 19:54:25 -04002899 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002900 point.x=StringToDouble(token,&next_token);
2901 if (token == next_token)
2902 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002903 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002904 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002905 GetNextToken(q,&q,extent,token);
Cristy3ed6c692016-05-23 19:24:23 -04002906 point.y=StringToDouble(token,&next_token);
2907 if (token == next_token)
2908 status=MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04002909 GetNextToken(q,(const char **) NULL,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002910 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04002911 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00002912 primitive_info[i].primitive=primitive_type;
2913 primitive_info[i].point=point;
2914 primitive_info[i].coordinates=0;
2915 primitive_info[i].method=FloodfillMethod;
2916 i++;
cristybb503372010-05-27 20:51:26 +00002917 if (i < (ssize_t) number_points)
cristy3ed852e2009-09-05 21:47:34 +00002918 continue;
2919 number_points<<=1;
2920 primitive_info=(PrimitiveInfo *) ResizeQuantumMemory(primitive_info,
2921 (size_t) number_points,sizeof(*primitive_info));
Cristy58affb92016-06-01 10:08:14 -04002922 if ((primitive_info == (PrimitiveInfo *) NULL) ||
2923 (number_points != (MagickSizeType) ((size_t) number_points)))
cristy3ed852e2009-09-05 21:47:34 +00002924 {
cristy947cb4c2011-10-20 18:41:46 +00002925 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00002926 ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename);
cristy3ed852e2009-09-05 21:47:34 +00002927 break;
2928 }
2929 }
2930 primitive_info[j].primitive=primitive_type;
cristybb503372010-05-27 20:51:26 +00002931 primitive_info[j].coordinates=(size_t) x;
cristy3ed852e2009-09-05 21:47:34 +00002932 primitive_info[j].method=FloodfillMethod;
2933 primitive_info[j].text=(char *) NULL;
2934 /*
2935 Circumscribe primitive within a circle.
2936 */
2937 bounds.x1=primitive_info[j].point.x;
2938 bounds.y1=primitive_info[j].point.y;
2939 bounds.x2=primitive_info[j].point.x;
2940 bounds.y2=primitive_info[j].point.y;
cristybb503372010-05-27 20:51:26 +00002941 for (k=1; k < (ssize_t) primitive_info[j].coordinates; k++)
cristy3ed852e2009-09-05 21:47:34 +00002942 {
2943 point=primitive_info[j+k].point;
2944 if (point.x < bounds.x1)
2945 bounds.x1=point.x;
2946 if (point.y < bounds.y1)
2947 bounds.y1=point.y;
2948 if (point.x > bounds.x2)
2949 bounds.x2=point.x;
2950 if (point.y > bounds.y2)
2951 bounds.y2=point.y;
2952 }
2953 /*
2954 Speculate how many points our primitive might consume.
2955 */
2956 length=primitive_info[j].coordinates;
2957 switch (primitive_type)
2958 {
2959 case RectanglePrimitive:
2960 {
2961 length*=5;
2962 break;
2963 }
2964 case RoundRectanglePrimitive:
2965 {
cristy1bdb2332014-11-23 14:02:08 +00002966 double
2967 alpha,
2968 beta,
2969 radius;
2970
2971 alpha=bounds.x2-bounds.x1;
2972 beta=bounds.y2-bounds.y1;
2973 radius=hypot((double) alpha,(double) beta);
2974 length*=5;
2975 length+=2*((size_t) ceil((double) MagickPI*radius))+6*BezierQuantum+360;
cristy3ed852e2009-09-05 21:47:34 +00002976 break;
2977 }
2978 case BezierPrimitive:
2979 {
2980 if (primitive_info[j].coordinates > 107)
cristy947cb4c2011-10-20 18:41:46 +00002981 (void) ThrowMagickException(exception,GetMagickModule(),DrawError,
cristyefe601c2013-01-05 17:51:12 +00002982 "TooManyBezierCoordinates","`%s'",token);
cristy3ed852e2009-09-05 21:47:34 +00002983 length=BezierQuantum*primitive_info[j].coordinates;
2984 break;
2985 }
2986 case PathPrimitive:
2987 {
2988 char
2989 *s,
2990 *t;
2991
Cristy8bedb4e2016-03-25 19:54:25 -04002992 GetNextToken(q,&q,extent,token);
cristy40a08ad2010-02-09 02:27:44 +00002993 length=1;
cristy3ed852e2009-09-05 21:47:34 +00002994 t=token;
2995 for (s=token; *s != '\0'; s=t)
2996 {
cristy00976d82011-02-20 20:31:28 +00002997 double
2998 value;
2999
cristydbdd0e32011-11-04 23:29:40 +00003000 value=StringToDouble(s,&t);
cristy00976d82011-02-20 20:31:28 +00003001 (void) value;
cristy3ed852e2009-09-05 21:47:34 +00003002 if (s == t)
3003 {
3004 t++;
3005 continue;
3006 }
cristyef7a6ce2011-05-14 15:01:11 +00003007 length++;
cristy3ed852e2009-09-05 21:47:34 +00003008 }
Cristyddca5f72016-08-04 10:23:02 -04003009 length=length*BezierQuantum;
cristy3ed852e2009-09-05 21:47:34 +00003010 break;
3011 }
3012 case CirclePrimitive:
3013 case ArcPrimitive:
3014 case EllipsePrimitive:
3015 {
cristya19f1d72012-08-07 18:24:38 +00003016 double
cristy3ed852e2009-09-05 21:47:34 +00003017 alpha,
3018 beta,
3019 radius;
3020
3021 alpha=bounds.x2-bounds.x1;
3022 beta=bounds.y2-bounds.y1;
3023 radius=hypot((double) alpha,(double) beta);
cristyf53f26f2011-05-16 00:56:05 +00003024 length=2*((size_t) ceil((double) MagickPI*radius))+6*BezierQuantum+360;
cristy3ed852e2009-09-05 21:47:34 +00003025 break;
3026 }
3027 default:
3028 break;
3029 }
Cristy58affb92016-06-01 10:08:14 -04003030 if ((i+length) >= number_points)
cristy3ed852e2009-09-05 21:47:34 +00003031 {
3032 /*
3033 Resize based on speculative points required by primitive.
3034 */
cristy9ce61b92010-05-12 16:30:26 +00003035 number_points+=length+1;
cristy3ed852e2009-09-05 21:47:34 +00003036 primitive_info=(PrimitiveInfo *) ResizeQuantumMemory(primitive_info,
3037 (size_t) number_points,sizeof(*primitive_info));
Cristy58affb92016-06-01 10:08:14 -04003038 if ((primitive_info == (PrimitiveInfo *) NULL) ||
3039 (number_points != (MagickSizeType) ((size_t) number_points)))
cristy3ed852e2009-09-05 21:47:34 +00003040 {
cristy947cb4c2011-10-20 18:41:46 +00003041 (void) ThrowMagickException(exception,GetMagickModule(),
cristyefe601c2013-01-05 17:51:12 +00003042 ResourceLimitError,"MemoryAllocationFailed","`%s'",
cristy3ed852e2009-09-05 21:47:34 +00003043 image->filename);
3044 break;
3045 }
3046 }
3047 switch (primitive_type)
3048 {
3049 case PointPrimitive:
3050 default:
3051 {
3052 if (primitive_info[j].coordinates != 1)
3053 {
3054 status=MagickFalse;
3055 break;
3056 }
3057 TracePoint(primitive_info+j,primitive_info[j].point);
cristybb503372010-05-27 20:51:26 +00003058 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003059 break;
3060 }
3061 case LinePrimitive:
3062 {
3063 if (primitive_info[j].coordinates != 2)
3064 {
3065 status=MagickFalse;
3066 break;
3067 }
3068 TraceLine(primitive_info+j,primitive_info[j].point,
3069 primitive_info[j+1].point);
cristybb503372010-05-27 20:51:26 +00003070 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003071 break;
3072 }
3073 case RectanglePrimitive:
3074 {
3075 if (primitive_info[j].coordinates != 2)
3076 {
3077 status=MagickFalse;
3078 break;
3079 }
3080 TraceRectangle(primitive_info+j,primitive_info[j].point,
3081 primitive_info[j+1].point);
cristybb503372010-05-27 20:51:26 +00003082 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003083 break;
3084 }
3085 case RoundRectanglePrimitive:
3086 {
3087 if (primitive_info[j].coordinates != 3)
3088 {
3089 status=MagickFalse;
3090 break;
3091 }
3092 TraceRoundRectangle(primitive_info+j,primitive_info[j].point,
3093 primitive_info[j+1].point,primitive_info[j+2].point);
cristybb503372010-05-27 20:51:26 +00003094 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003095 break;
3096 }
3097 case ArcPrimitive:
3098 {
3099 if (primitive_info[j].coordinates != 3)
3100 {
3101 primitive_type=UndefinedPrimitive;
3102 break;
3103 }
3104 TraceArc(primitive_info+j,primitive_info[j].point,
3105 primitive_info[j+1].point,primitive_info[j+2].point);
cristybb503372010-05-27 20:51:26 +00003106 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003107 break;
3108 }
3109 case EllipsePrimitive:
3110 {
3111 if (primitive_info[j].coordinates != 3)
3112 {
3113 status=MagickFalse;
3114 break;
3115 }
3116 TraceEllipse(primitive_info+j,primitive_info[j].point,
3117 primitive_info[j+1].point,primitive_info[j+2].point);
cristybb503372010-05-27 20:51:26 +00003118 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003119 break;
3120 }
3121 case CirclePrimitive:
3122 {
3123 if (primitive_info[j].coordinates != 2)
3124 {
3125 status=MagickFalse;
3126 break;
3127 }
3128 TraceCircle(primitive_info+j,primitive_info[j].point,
3129 primitive_info[j+1].point);
cristybb503372010-05-27 20:51:26 +00003130 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003131 break;
3132 }
3133 case PolylinePrimitive:
3134 break;
3135 case PolygonPrimitive:
3136 {
3137 primitive_info[i]=primitive_info[j];
3138 primitive_info[i].coordinates=0;
3139 primitive_info[j].coordinates++;
3140 i++;
3141 break;
3142 }
3143 case BezierPrimitive:
3144 {
3145 if (primitive_info[j].coordinates < 3)
3146 {
3147 status=MagickFalse;
3148 break;
3149 }
3150 TraceBezier(primitive_info+j,primitive_info[j].coordinates);
cristybb503372010-05-27 20:51:26 +00003151 i=(ssize_t) (j+primitive_info[j].coordinates);
cristy3ed852e2009-09-05 21:47:34 +00003152 break;
3153 }
3154 case PathPrimitive:
3155 {
cristybb503372010-05-27 20:51:26 +00003156 i=(ssize_t) (j+TracePath(primitive_info+j,token));
cristy3ed852e2009-09-05 21:47:34 +00003157 break;
3158 }
dirk34e1a212015-03-22 16:45:12 +00003159 case AlphaPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00003160 case ColorPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00003161 {
cristybb503372010-05-27 20:51:26 +00003162 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003163 method;
3164
3165 if (primitive_info[j].coordinates != 1)
3166 {
3167 status=MagickFalse;
3168 break;
3169 }
Cristy8bedb4e2016-03-25 19:54:25 -04003170 GetNextToken(q,&q,extent,token);
cristy042ee782011-04-22 18:48:30 +00003171 method=ParseCommandOption(MagickMethodOptions,MagickFalse,token);
cristy3ed852e2009-09-05 21:47:34 +00003172 if (method == -1)
anthony2a021472011-10-08 11:29:29 +00003173 status=MagickFalse;
3174 else
3175 primitive_info[j].method=(PaintMethod) method;
cristy3ed852e2009-09-05 21:47:34 +00003176 break;
3177 }
3178 case TextPrimitive:
3179 {
3180 if (primitive_info[j].coordinates != 1)
3181 {
3182 status=MagickFalse;
3183 break;
3184 }
3185 if (*token != ',')
Cristy8bedb4e2016-03-25 19:54:25 -04003186 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00003187 primitive_info[j].text=AcquireString(token);
3188 break;
3189 }
3190 case ImagePrimitive:
3191 {
3192 if (primitive_info[j].coordinates != 2)
3193 {
3194 status=MagickFalse;
3195 break;
3196 }
Cristy8bedb4e2016-03-25 19:54:25 -04003197 GetNextToken(q,&q,extent,token);
cristy3ed852e2009-09-05 21:47:34 +00003198 primitive_info[j].text=AcquireString(token);
3199 break;
3200 }
3201 }
3202 if (primitive_info == (PrimitiveInfo *) NULL)
3203 break;
3204 if (image->debug != MagickFalse)
3205 (void) LogMagickEvent(DrawEvent,GetMagickModule()," %.*s",(int) (q-p),p);
3206 if (status == MagickFalse)
3207 break;
3208 primitive_info[i].primitive=UndefinedPrimitive;
3209 if (i == 0)
3210 continue;
3211 /*
3212 Transform points.
3213 */
3214 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++)
3215 {
3216 point=primitive_info[i].point;
3217 primitive_info[i].point.x=graphic_context[n]->affine.sx*point.x+
3218 graphic_context[n]->affine.ry*point.y+graphic_context[n]->affine.tx;
3219 primitive_info[i].point.y=graphic_context[n]->affine.rx*point.x+
3220 graphic_context[n]->affine.sy*point.y+graphic_context[n]->affine.ty;
3221 point=primitive_info[i].point;
3222 if (point.x < graphic_context[n]->bounds.x1)
3223 graphic_context[n]->bounds.x1=point.x;
3224 if (point.y < graphic_context[n]->bounds.y1)
3225 graphic_context[n]->bounds.y1=point.y;
3226 if (point.x > graphic_context[n]->bounds.x2)
3227 graphic_context[n]->bounds.x2=point.x;
3228 if (point.y > graphic_context[n]->bounds.y2)
3229 graphic_context[n]->bounds.y2=point.y;
3230 if (primitive_info[i].primitive == ImagePrimitive)
3231 break;
cristybb503372010-05-27 20:51:26 +00003232 if (i >= (ssize_t) number_points)
cristy9ce61b92010-05-12 16:30:26 +00003233 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
cristy3ed852e2009-09-05 21:47:34 +00003234 }
cristy3ed852e2009-09-05 21:47:34 +00003235 if (graphic_context[n]->render != MagickFalse)
3236 {
3237 if ((n != 0) && (graphic_context[n]->clip_mask != (char *) NULL) &&
3238 (LocaleCompare(graphic_context[n]->clip_mask,
3239 graphic_context[n-1]->clip_mask) != 0))
cristy8a77f142013-08-14 12:44:38 +00003240 status&=DrawClipPath(image,graphic_context[n],
cristy018f07f2011-09-04 21:15:19 +00003241 graphic_context[n]->clip_mask,exception);
cristy8a77f142013-08-14 12:44:38 +00003242 status&=DrawPrimitive(image,graphic_context[n],primitive_info,
3243 exception);
cristy3ed852e2009-09-05 21:47:34 +00003244 }
3245 if (primitive_info->text != (char *) NULL)
3246 primitive_info->text=(char *) RelinquishMagickMemory(
3247 primitive_info->text);
3248 proceed=SetImageProgress(image,RenderImageTag,q-primitive,(MagickSizeType)
3249 primitive_extent);
3250 if (proceed == MagickFalse)
3251 break;
cristy8a77f142013-08-14 12:44:38 +00003252 if (status == 0)
3253 break;
cristy3ed852e2009-09-05 21:47:34 +00003254 }
3255 if (image->debug != MagickFalse)
3256 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"end draw-image");
3257 /*
3258 Relinquish resources.
3259 */
3260 token=DestroyString(token);
3261 if (primitive_info != (PrimitiveInfo *) NULL)
3262 primitive_info=(PrimitiveInfo *) RelinquishMagickMemory(primitive_info);
3263 primitive=DestroyString(primitive);
3264 for ( ; n >= 0; n--)
3265 graphic_context[n]=DestroyDrawInfo(graphic_context[n]);
3266 graphic_context=(DrawInfo **) RelinquishMagickMemory(graphic_context);
3267 if (status == MagickFalse)
3268 ThrowBinaryException(DrawError,"NonconformingDrawingPrimitiveDefinition",
3269 keyword);
cristy8a77f142013-08-14 12:44:38 +00003270 return(status != 0 ? MagickTrue : MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +00003271}
3272
3273/*
3274%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3275% %
3276% %
3277% %
3278% D r a w G r a d i e n t I m a g e %
3279% %
3280% %
3281% %
3282%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3283%
3284% DrawGradientImage() draws a linear gradient on the image.
3285%
3286% The format of the DrawGradientImage method is:
3287%
3288% MagickBooleanType DrawGradientImage(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00003289% const DrawInfo *draw_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003290%
3291% A description of each parameter follows:
3292%
3293% o image: the image.
3294%
anthony2a021472011-10-08 11:29:29 +00003295% o draw_info: the draw info.
cristy3ed852e2009-09-05 21:47:34 +00003296%
cristy947cb4c2011-10-20 18:41:46 +00003297% o exception: return any errors or warnings in this structure.
3298%
cristy3ed852e2009-09-05 21:47:34 +00003299*/
3300
cristya19f1d72012-08-07 18:24:38 +00003301static inline double GetStopColorOffset(const GradientInfo *gradient,
cristybb503372010-05-27 20:51:26 +00003302 const ssize_t x,const ssize_t y)
cristy3ed852e2009-09-05 21:47:34 +00003303{
3304 switch (gradient->type)
3305 {
3306 case UndefinedGradient:
3307 case LinearGradient:
3308 {
cristya19f1d72012-08-07 18:24:38 +00003309 double
cristy3ed852e2009-09-05 21:47:34 +00003310 gamma,
3311 length,
3312 offset,
3313 scale;
3314
3315 PointInfo
3316 p,
3317 q;
3318
3319 const SegmentInfo
3320 *gradient_vector;
3321
3322 gradient_vector=(&gradient->gradient_vector);
3323 p.x=gradient_vector->x2-gradient_vector->x1;
3324 p.y=gradient_vector->y2-gradient_vector->y1;
3325 q.x=(double) x-gradient_vector->x1;
3326 q.y=(double) y-gradient_vector->y1;
3327 length=sqrt(q.x*q.x+q.y*q.y);
3328 gamma=sqrt(p.x*p.x+p.y*p.y)*length;
cristy3e3ec3a2012-11-03 23:11:06 +00003329 gamma=PerceptibleReciprocal(gamma);
cristy3ed852e2009-09-05 21:47:34 +00003330 scale=p.x*q.x+p.y*q.y;
3331 offset=gamma*scale*length;
3332 return(offset);
3333 }
3334 case RadialGradient:
3335 {
cristy3ed852e2009-09-05 21:47:34 +00003336 PointInfo
3337 v;
3338
cristy3ed852e2009-09-05 21:47:34 +00003339 if (gradient->spread == RepeatSpread)
Cristy50a6c9d2015-10-18 08:31:57 -04003340 {
3341 v.x=(double) x-gradient->center.x;
3342 v.y=(double) y-gradient->center.y;
3343 return(sqrt(v.x*v.x+v.y*v.y));
3344 }
Cristy8af80432015-10-19 17:35:23 -04003345 v.x=(double) (((x-gradient->center.x)*cos(DegreesToRadians(
3346 gradient->angle)))+((y-gradient->center.y)*sin(DegreesToRadians(
3347 gradient->angle))))/gradient->radii.x;
3348 v.y=(double) (((x-gradient->center.x)*sin(DegreesToRadians(
3349 gradient->angle)))-((y-gradient->center.y)*cos(DegreesToRadians(
3350 gradient->angle))))/gradient->radii.y;
Cristy50a6c9d2015-10-18 08:31:57 -04003351 return(sqrt(v.x*v.x+v.y*v.y));
cristy3ed852e2009-09-05 21:47:34 +00003352 }
3353 }
3354 return(0.0);
3355}
3356
dirkb6f578b2015-07-12 17:56:39 +00003357static int StopInfoCompare(const void *x,const void *y)
3358{
3359 StopInfo
3360 *stop_1,
3361 *stop_2;
3362
3363 stop_1=(StopInfo *) x;
3364 stop_2=(StopInfo *) y;
dirkb6f578b2015-07-12 17:56:39 +00003365 if (stop_1->offset > stop_2->offset)
3366 return(1);
Cristy911b5862016-06-24 17:45:06 -04003367 if (fabs(stop_1->offset-stop_2->offset) <= DrawEpsilon)
dirkb6f578b2015-07-12 17:56:39 +00003368 return(0);
3369 return(-1);
3370}
3371
cristy3ed852e2009-09-05 21:47:34 +00003372MagickExport MagickBooleanType DrawGradientImage(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00003373 const DrawInfo *draw_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003374{
cristyc4c8d132010-01-07 01:58:38 +00003375 CacheView
3376 *image_view;
3377
cristy3ed852e2009-09-05 21:47:34 +00003378 const GradientInfo
3379 *gradient;
3380
3381 const SegmentInfo
3382 *gradient_vector;
3383
cristy75c658f2012-12-30 16:09:36 +00003384 double
3385 length;
3386
cristy3ed852e2009-09-05 21:47:34 +00003387 MagickBooleanType
3388 status;
3389
cristy4c08aed2011-07-01 19:47:50 +00003390 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00003391 zero;
3392
cristy3ed852e2009-09-05 21:47:34 +00003393 PointInfo
3394 point;
3395
3396 RectangleInfo
3397 bounding_box;
3398
cristy826a5472010-08-31 23:21:38 +00003399 ssize_t
3400 y;
3401
cristy3ed852e2009-09-05 21:47:34 +00003402 /*
3403 Draw linear or radial gradient on image.
3404 */
3405 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00003406 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00003407 if (image->debug != MagickFalse)
3408 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3409 assert(draw_info != (const DrawInfo *) NULL);
3410 gradient=(&draw_info->gradient);
dirkb6f578b2015-07-12 17:56:39 +00003411 qsort(gradient->stops,gradient->number_stops,sizeof(StopInfo),
3412 StopInfoCompare);
cristy3ed852e2009-09-05 21:47:34 +00003413 gradient_vector=(&gradient->gradient_vector);
3414 point.x=gradient_vector->x2-gradient_vector->x1;
3415 point.y=gradient_vector->y2-gradient_vector->y1;
3416 length=sqrt(point.x*point.x+point.y*point.y);
3417 bounding_box=gradient->bounding_box;
3418 status=MagickTrue;
cristy4c08aed2011-07-01 19:47:50 +00003419 GetPixelInfo(image,&zero);
cristy46ff2672012-12-14 15:32:26 +00003420 image_view=AcquireAuthenticCacheView(image,exception);
cristyb5d5f722009-11-04 03:03:49 +00003421#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy9a5a52f2012-10-09 14:40:31 +00003422 #pragma omp parallel for schedule(static,4) shared(status) \
cristycb7dfcc2013-01-06 18:34:59 +00003423 magick_threads(image,image,1,1)
cristy3ed852e2009-09-05 21:47:34 +00003424#endif
cristybb503372010-05-27 20:51:26 +00003425 for (y=bounding_box.y; y < (ssize_t) bounding_box.height; y++)
cristy3ed852e2009-09-05 21:47:34 +00003426 {
cristy4c08aed2011-07-01 19:47:50 +00003427 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00003428 composite,
3429 pixel;
3430
cristya19f1d72012-08-07 18:24:38 +00003431 double
cristy3ed852e2009-09-05 21:47:34 +00003432 alpha,
3433 offset;
3434
cristy4c08aed2011-07-01 19:47:50 +00003435 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01003436 *magick_restrict q;
cristy3ed852e2009-09-05 21:47:34 +00003437
cristybb503372010-05-27 20:51:26 +00003438 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003439 i,
3440 x;
3441
cristy826a5472010-08-31 23:21:38 +00003442 ssize_t
3443 j;
3444
cristy3ed852e2009-09-05 21:47:34 +00003445 if (status == MagickFalse)
3446 continue;
3447 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00003448 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00003449 {
3450 status=MagickFalse;
3451 continue;
3452 }
cristy3ed852e2009-09-05 21:47:34 +00003453 pixel=zero;
3454 composite=zero;
3455 offset=GetStopColorOffset(gradient,0,y);
3456 if (gradient->type != RadialGradient)
3457 offset/=length;
cristybb503372010-05-27 20:51:26 +00003458 for (x=bounding_box.x; x < (ssize_t) bounding_box.width; x++)
cristy3ed852e2009-09-05 21:47:34 +00003459 {
cristy803640d2011-11-17 02:11:32 +00003460 GetPixelInfoPixel(image,q,&pixel);
cristy3ed852e2009-09-05 21:47:34 +00003461 switch (gradient->spread)
3462 {
3463 case UndefinedSpread:
3464 case PadSpread:
3465 {
cristybb503372010-05-27 20:51:26 +00003466 if ((x != (ssize_t) ceil(gradient_vector->x1-0.5)) ||
3467 (y != (ssize_t) ceil(gradient_vector->y1-0.5)))
cristy3ed852e2009-09-05 21:47:34 +00003468 {
3469 offset=GetStopColorOffset(gradient,x,y);
3470 if (gradient->type != RadialGradient)
3471 offset/=length;
3472 }
cristybb503372010-05-27 20:51:26 +00003473 for (i=0; i < (ssize_t) gradient->number_stops; i++)
cristy3ed852e2009-09-05 21:47:34 +00003474 if (offset < gradient->stops[i].offset)
3475 break;
3476 if ((offset < 0.0) || (i == 0))
3477 composite=gradient->stops[0].color;
3478 else
cristybb503372010-05-27 20:51:26 +00003479 if ((offset > 1.0) || (i == (ssize_t) gradient->number_stops))
cristy3ed852e2009-09-05 21:47:34 +00003480 composite=gradient->stops[gradient->number_stops-1].color;
3481 else
3482 {
3483 j=i;
3484 i--;
3485 alpha=(offset-gradient->stops[i].offset)/
3486 (gradient->stops[j].offset-gradient->stops[i].offset);
cristy4c08aed2011-07-01 19:47:50 +00003487 CompositePixelInfoBlend(&gradient->stops[i].color,1.0-alpha,
cristy3ed852e2009-09-05 21:47:34 +00003488 &gradient->stops[j].color,alpha,&composite);
3489 }
3490 break;
3491 }
3492 case ReflectSpread:
3493 {
cristybb503372010-05-27 20:51:26 +00003494 if ((x != (ssize_t) ceil(gradient_vector->x1-0.5)) ||
3495 (y != (ssize_t) ceil(gradient_vector->y1-0.5)))
cristy3ed852e2009-09-05 21:47:34 +00003496 {
3497 offset=GetStopColorOffset(gradient,x,y);
3498 if (gradient->type != RadialGradient)
3499 offset/=length;
3500 }
3501 if (offset < 0.0)
3502 offset=(-offset);
cristybb503372010-05-27 20:51:26 +00003503 if ((ssize_t) fmod(offset,2.0) == 0)
cristy3ed852e2009-09-05 21:47:34 +00003504 offset=fmod(offset,1.0);
3505 else
3506 offset=1.0-fmod(offset,1.0);
cristybb503372010-05-27 20:51:26 +00003507 for (i=0; i < (ssize_t) gradient->number_stops; i++)
cristy3ed852e2009-09-05 21:47:34 +00003508 if (offset < gradient->stops[i].offset)
3509 break;
3510 if (i == 0)
3511 composite=gradient->stops[0].color;
3512 else
cristybb503372010-05-27 20:51:26 +00003513 if (i == (ssize_t) gradient->number_stops)
cristy3ed852e2009-09-05 21:47:34 +00003514 composite=gradient->stops[gradient->number_stops-1].color;
3515 else
3516 {
3517 j=i;
3518 i--;
3519 alpha=(offset-gradient->stops[i].offset)/
3520 (gradient->stops[j].offset-gradient->stops[i].offset);
cristy4c08aed2011-07-01 19:47:50 +00003521 CompositePixelInfoBlend(&gradient->stops[i].color,1.0-alpha,
cristy3ed852e2009-09-05 21:47:34 +00003522 &gradient->stops[j].color,alpha,&composite);
3523 }
3524 break;
3525 }
3526 case RepeatSpread:
3527 {
3528 MagickBooleanType
3529 antialias;
3530
cristya19f1d72012-08-07 18:24:38 +00003531 double
cristy3ed852e2009-09-05 21:47:34 +00003532 repeat;
3533
3534 antialias=MagickFalse;
3535 repeat=0.0;
cristybb503372010-05-27 20:51:26 +00003536 if ((x != (ssize_t) ceil(gradient_vector->x1-0.5)) ||
3537 (y != (ssize_t) ceil(gradient_vector->y1-0.5)))
cristy3ed852e2009-09-05 21:47:34 +00003538 {
3539 offset=GetStopColorOffset(gradient,x,y);
3540 if (gradient->type == LinearGradient)
3541 {
3542 repeat=fmod(offset,length);
3543 if (repeat < 0.0)
3544 repeat=length-fmod(-repeat,length);
3545 else
3546 repeat=fmod(offset,length);
3547 antialias=(repeat < length) && ((repeat+1.0) > length) ?
3548 MagickTrue : MagickFalse;
3549 offset=repeat/length;
3550 }
3551 else
3552 {
3553 repeat=fmod(offset,gradient->radius);
3554 if (repeat < 0.0)
3555 repeat=gradient->radius-fmod(-repeat,gradient->radius);
3556 else
3557 repeat=fmod(offset,gradient->radius);
cristy4c08aed2011-07-01 19:47:50 +00003558 antialias=repeat+1.0 > gradient->radius ? MagickTrue :
3559 MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00003560 offset=repeat/gradient->radius;
3561 }
3562 }
cristybb503372010-05-27 20:51:26 +00003563 for (i=0; i < (ssize_t) gradient->number_stops; i++)
cristy3ed852e2009-09-05 21:47:34 +00003564 if (offset < gradient->stops[i].offset)
3565 break;
3566 if (i == 0)
3567 composite=gradient->stops[0].color;
3568 else
cristybb503372010-05-27 20:51:26 +00003569 if (i == (ssize_t) gradient->number_stops)
cristy3ed852e2009-09-05 21:47:34 +00003570 composite=gradient->stops[gradient->number_stops-1].color;
3571 else
3572 {
3573 j=i;
3574 i--;
3575 alpha=(offset-gradient->stops[i].offset)/
3576 (gradient->stops[j].offset-gradient->stops[i].offset);
3577 if (antialias != MagickFalse)
3578 {
3579 if (gradient->type == LinearGradient)
3580 alpha=length-repeat;
3581 else
3582 alpha=gradient->radius-repeat;
3583 i=0;
cristybb503372010-05-27 20:51:26 +00003584 j=(ssize_t) gradient->number_stops-1L;
cristy3ed852e2009-09-05 21:47:34 +00003585 }
cristy4c08aed2011-07-01 19:47:50 +00003586 CompositePixelInfoBlend(&gradient->stops[i].color,1.0-alpha,
cristy3ed852e2009-09-05 21:47:34 +00003587 &gradient->stops[j].color,alpha,&composite);
3588 }
3589 break;
3590 }
3591 }
cristy4c08aed2011-07-01 19:47:50 +00003592 CompositePixelInfoOver(&composite,composite.alpha,&pixel,pixel.alpha,
3593 &pixel);
cristy11a06d32015-01-04 12:03:27 +00003594 SetPixelViaPixelInfo(image,&pixel,q);
cristyed231572011-07-14 02:18:59 +00003595 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00003596 }
3597 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
3598 status=MagickFalse;
3599 }
3600 image_view=DestroyCacheView(image_view);
3601 return(status);
3602}
3603
3604/*
3605%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3606% %
3607% %
3608% %
3609% D r a w P a t t e r n P a t h %
3610% %
3611% %
3612% %
3613%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3614%
3615% DrawPatternPath() draws a pattern.
3616%
3617% The format of the DrawPatternPath method is:
3618%
3619% MagickBooleanType DrawPatternPath(Image *image,const DrawInfo *draw_info,
cristy018f07f2011-09-04 21:15:19 +00003620% const char *name,Image **pattern,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003621%
3622% A description of each parameter follows:
3623%
3624% o image: the image.
3625%
3626% o draw_info: the draw info.
3627%
3628% o name: the pattern name.
3629%
3630% o image: the image.
3631%
cristy018f07f2011-09-04 21:15:19 +00003632% o exception: return any errors or warnings in this structure.
3633%
cristy3ed852e2009-09-05 21:47:34 +00003634*/
3635MagickExport MagickBooleanType DrawPatternPath(Image *image,
cristy018f07f2011-09-04 21:15:19 +00003636 const DrawInfo *draw_info,const char *name,Image **pattern,
3637 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003638{
3639 char
cristy151b66d2015-04-15 10:50:31 +00003640 property[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +00003641
3642 const char
3643 *geometry,
dirk84c7c042015-07-12 13:01:35 +00003644 *path,
3645 *type;
cristy3ed852e2009-09-05 21:47:34 +00003646
3647 DrawInfo
3648 *clone_info;
3649
3650 ImageInfo
3651 *image_info;
3652
3653 MagickBooleanType
3654 status;
3655
3656 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00003657 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00003658 if (image->debug != MagickFalse)
3659 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3660 assert(draw_info != (const DrawInfo *) NULL);
3661 assert(name != (const char *) NULL);
cristy151b66d2015-04-15 10:50:31 +00003662 (void) FormatLocaleString(property,MagickPathExtent,"%s",name);
cristy3ed852e2009-09-05 21:47:34 +00003663 path=GetImageArtifact(image,property);
3664 if (path == (const char *) NULL)
3665 return(MagickFalse);
cristy151b66d2015-04-15 10:50:31 +00003666 (void) FormatLocaleString(property,MagickPathExtent,"%s-geometry",name);
cristy3ed852e2009-09-05 21:47:34 +00003667 geometry=GetImageArtifact(image,property);
3668 if (geometry == (const char *) NULL)
3669 return(MagickFalse);
3670 if ((*pattern) != (Image *) NULL)
3671 *pattern=DestroyImage(*pattern);
3672 image_info=AcquireImageInfo();
3673 image_info->size=AcquireString(geometry);
cristy947cb4c2011-10-20 18:41:46 +00003674 *pattern=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00003675 image_info=DestroyImageInfo(image_info);
cristyca611542013-02-19 00:54:03 +00003676 (void) QueryColorCompliance("#000000ff",AllCompliance,
cristyea1a8aa2011-10-20 13:24:06 +00003677 &(*pattern)->background_color,exception);
3678 (void) SetImageBackgroundColor(*pattern,exception);
cristy3ed852e2009-09-05 21:47:34 +00003679 if (image->debug != MagickFalse)
3680 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
3681 "begin pattern-path %s %s",name,geometry);
3682 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
3683 clone_info->fill_pattern=NewImageList();
3684 clone_info->stroke_pattern=NewImageList();
dirk84c7c042015-07-12 13:01:35 +00003685 (void) FormatLocaleString(property,MagickPathExtent,"%s-type",name);
3686 type=GetImageArtifact(image,property);
3687 if (type != (const char *) NULL)
3688 clone_info->gradient.type=(GradientType) ParseCommandOption(
3689 MagickGradientOptions,MagickFalse,type);
cristy3ed852e2009-09-05 21:47:34 +00003690 (void) CloneString(&clone_info->primitive,path);
cristy018f07f2011-09-04 21:15:19 +00003691 status=DrawImage(*pattern,clone_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00003692 clone_info=DestroyDrawInfo(clone_info);
3693 if (image->debug != MagickFalse)
3694 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"end pattern-path");
3695 return(status);
3696}
3697
3698/*
3699%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3700% %
3701% %
3702% %
3703+ D r a w P o l y g o n P r i m i t i v e %
3704% %
3705% %
3706% %
3707%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3708%
3709% DrawPolygonPrimitive() draws a polygon on the image.
3710%
3711% The format of the DrawPolygonPrimitive method is:
3712%
3713% MagickBooleanType DrawPolygonPrimitive(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00003714% const DrawInfo *draw_info,const PrimitiveInfo *primitive_info,
3715% ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003716%
3717% A description of each parameter follows:
3718%
3719% o image: the image.
3720%
3721% o draw_info: the draw info.
3722%
3723% o primitive_info: Specifies a pointer to a PrimitiveInfo structure.
3724%
cristy947cb4c2011-10-20 18:41:46 +00003725% o exception: return any errors or warnings in this structure.
3726%
cristy3ed852e2009-09-05 21:47:34 +00003727*/
3728
3729static PolygonInfo **DestroyPolygonThreadSet(PolygonInfo **polygon_info)
3730{
cristybb503372010-05-27 20:51:26 +00003731 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003732 i;
3733
3734 assert(polygon_info != (PolygonInfo **) NULL);
cristyac245f82012-05-05 17:13:57 +00003735 for (i=0; i < (ssize_t) GetMagickResourceLimit(ThreadResource); i++)
cristy3ed852e2009-09-05 21:47:34 +00003736 if (polygon_info[i] != (PolygonInfo *) NULL)
3737 polygon_info[i]=DestroyPolygonInfo(polygon_info[i]);
cristyb41ee102010-10-04 16:46:15 +00003738 polygon_info=(PolygonInfo **) RelinquishMagickMemory(polygon_info);
cristy3ed852e2009-09-05 21:47:34 +00003739 return(polygon_info);
3740}
3741
dirkd2a7a2d2016-03-17 23:07:42 +01003742static PolygonInfo **AcquirePolygonThreadSet(
cristy3ed852e2009-09-05 21:47:34 +00003743 const PrimitiveInfo *primitive_info)
3744{
3745 PathInfo
dirk05d2ff72015-11-18 23:13:43 +01003746 *magick_restrict path_info;
cristy3ed852e2009-09-05 21:47:34 +00003747
cristy3ed852e2009-09-05 21:47:34 +00003748 PolygonInfo
3749 **polygon_info;
3750
cristy826a5472010-08-31 23:21:38 +00003751 register ssize_t
3752 i;
3753
cristybb503372010-05-27 20:51:26 +00003754 size_t
cristy3ed852e2009-09-05 21:47:34 +00003755 number_threads;
3756
cristy9357bdd2012-07-30 12:28:34 +00003757 number_threads=(size_t) GetMagickResourceLimit(ThreadResource);
cristyb41ee102010-10-04 16:46:15 +00003758 polygon_info=(PolygonInfo **) AcquireQuantumMemory(number_threads,
cristy3ed852e2009-09-05 21:47:34 +00003759 sizeof(*polygon_info));
3760 if (polygon_info == (PolygonInfo **) NULL)
3761 return((PolygonInfo **) NULL);
cristyac245f82012-05-05 17:13:57 +00003762 (void) ResetMagickMemory(polygon_info,0,number_threads*sizeof(*polygon_info));
dirkd2a7a2d2016-03-17 23:07:42 +01003763 path_info=ConvertPrimitiveToPath(primitive_info);
cristy3ed852e2009-09-05 21:47:34 +00003764 if (path_info == (PathInfo *) NULL)
3765 return(DestroyPolygonThreadSet(polygon_info));
cristybb503372010-05-27 20:51:26 +00003766 for (i=0; i < (ssize_t) number_threads; i++)
cristy3ed852e2009-09-05 21:47:34 +00003767 {
dirkd2a7a2d2016-03-17 23:07:42 +01003768 polygon_info[i]=ConvertPathToPolygon(path_info);
cristy3ed852e2009-09-05 21:47:34 +00003769 if (polygon_info[i] == (PolygonInfo *) NULL)
3770 return(DestroyPolygonThreadSet(polygon_info));
3771 }
3772 path_info=(PathInfo *) RelinquishMagickMemory(path_info);
3773 return(polygon_info);
3774}
3775
cristy884d1622012-09-03 18:10:10 +00003776static double GetFillAlpha(PolygonInfo *polygon_info,const double mid,
cristye4e47ae2012-09-04 23:36:43 +00003777 const MagickBooleanType fill,const FillRule fill_rule,const ssize_t x,
3778 const ssize_t y,double *stroke_alpha)
cristy3ed852e2009-09-05 21:47:34 +00003779{
cristya19f1d72012-08-07 18:24:38 +00003780 double
cristyb32b90a2009-09-07 21:45:48 +00003781 alpha,
3782 beta,
cristy3ed852e2009-09-05 21:47:34 +00003783 distance,
cristyb2e6b992011-12-17 16:42:29 +00003784 subpath_alpha;
cristy3ed852e2009-09-05 21:47:34 +00003785
3786 PointInfo
cristyb32b90a2009-09-07 21:45:48 +00003787 delta;
cristy3ed852e2009-09-05 21:47:34 +00003788
cristyb32b90a2009-09-07 21:45:48 +00003789 register const PointInfo
3790 *q;
3791
cristy884d1622012-09-03 18:10:10 +00003792 register EdgeInfo
3793 *p;
3794
cristybb503372010-05-27 20:51:26 +00003795 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003796 i;
3797
cristycee97112010-05-28 00:44:52 +00003798 ssize_t
3799 j,
3800 winding_number;
3801
cristy3ed852e2009-09-05 21:47:34 +00003802 /*
3803 Compute fill & stroke opacity for this (x,y) point.
3804 */
cristyb2e6b992011-12-17 16:42:29 +00003805 *stroke_alpha=0.0;
3806 subpath_alpha=0.0;
cristy3ed852e2009-09-05 21:47:34 +00003807 p=polygon_info->edges;
cristybb503372010-05-27 20:51:26 +00003808 for (j=0; j < (ssize_t) polygon_info->number_edges; j++, p++)
cristy3ed852e2009-09-05 21:47:34 +00003809 {
cristye4e47ae2012-09-04 23:36:43 +00003810 if ((double) y <= (p->bounds.y1-mid-0.5))
cristy3ed852e2009-09-05 21:47:34 +00003811 break;
cristye4e47ae2012-09-04 23:36:43 +00003812 if ((double) y > (p->bounds.y2+mid+0.5))
cristy3ed852e2009-09-05 21:47:34 +00003813 {
cristybb503372010-05-27 20:51:26 +00003814 (void) DestroyEdge(polygon_info,(size_t) j);
cristy3ed852e2009-09-05 21:47:34 +00003815 continue;
3816 }
cristye4e47ae2012-09-04 23:36:43 +00003817 if (((double) x <= (p->bounds.x1-mid-0.5)) ||
3818 ((double) x > (p->bounds.x2+mid+0.5)))
cristy3ed852e2009-09-05 21:47:34 +00003819 continue;
cristybb503372010-05-27 20:51:26 +00003820 i=(ssize_t) MagickMax((double) p->highwater,1.0);
3821 for ( ; i < (ssize_t) p->number_points; i++)
cristy3ed852e2009-09-05 21:47:34 +00003822 {
cristye4e47ae2012-09-04 23:36:43 +00003823 if ((double) y <= (p->points[i-1].y-mid-0.5))
cristy3ed852e2009-09-05 21:47:34 +00003824 break;
cristye4e47ae2012-09-04 23:36:43 +00003825 if ((double) y > (p->points[i].y+mid+0.5))
cristy3ed852e2009-09-05 21:47:34 +00003826 continue;
cristye4e47ae2012-09-04 23:36:43 +00003827 if (p->scanline != (double) y)
cristy3ed852e2009-09-05 21:47:34 +00003828 {
cristye4e47ae2012-09-04 23:36:43 +00003829 p->scanline=(double) y;
cristybb503372010-05-27 20:51:26 +00003830 p->highwater=(size_t) i;
cristy3ed852e2009-09-05 21:47:34 +00003831 }
3832 /*
3833 Compute distance between a point and an edge.
3834 */
cristyb32b90a2009-09-07 21:45:48 +00003835 q=p->points+i-1;
3836 delta.x=(q+1)->x-q->x;
3837 delta.y=(q+1)->y-q->y;
3838 beta=delta.x*(x-q->x)+delta.y*(y-q->y);
cristy3ed852e2009-09-05 21:47:34 +00003839 if (beta < 0.0)
3840 {
cristye4e47ae2012-09-04 23:36:43 +00003841 delta.x=(double) x-q->x;
3842 delta.y=(double) y-q->y;
cristy3ed852e2009-09-05 21:47:34 +00003843 distance=delta.x*delta.x+delta.y*delta.y;
3844 }
3845 else
3846 {
3847 alpha=delta.x*delta.x+delta.y*delta.y;
3848 if (beta > alpha)
3849 {
cristye4e47ae2012-09-04 23:36:43 +00003850 delta.x=(double) x-(q+1)->x;
3851 delta.y=(double) y-(q+1)->y;
cristy3ed852e2009-09-05 21:47:34 +00003852 distance=delta.x*delta.x+delta.y*delta.y;
3853 }
3854 else
3855 {
cristy592aefd2013-02-03 15:41:39 +00003856 alpha=1.0/alpha;
cristyb32b90a2009-09-07 21:45:48 +00003857 beta=delta.x*(y-q->y)-delta.y*(x-q->x);
cristy4b67d752012-07-07 23:50:17 +00003858 distance=alpha*beta*beta;
cristy3ed852e2009-09-05 21:47:34 +00003859 }
3860 }
3861 /*
3862 Compute stroke & subpath opacity.
3863 */
3864 beta=0.0;
3865 if (p->ghostline == MagickFalse)
3866 {
cristyb32b90a2009-09-07 21:45:48 +00003867 alpha=mid+0.5;
cristyb2e6b992011-12-17 16:42:29 +00003868 if ((*stroke_alpha < 1.0) &&
cristy3ed852e2009-09-05 21:47:34 +00003869 (distance <= ((alpha+0.25)*(alpha+0.25))))
3870 {
3871 alpha=mid-0.5;
3872 if (distance <= ((alpha+0.25)*(alpha+0.25)))
cristyb2e6b992011-12-17 16:42:29 +00003873 *stroke_alpha=1.0;
cristy3ed852e2009-09-05 21:47:34 +00003874 else
3875 {
3876 beta=1.0;
Cristy911b5862016-06-24 17:45:06 -04003877 if (fabs(distance-1.0) >= DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00003878 beta=sqrt((double) distance);
cristyb32b90a2009-09-07 21:45:48 +00003879 alpha=beta-mid-0.5;
cristyb2e6b992011-12-17 16:42:29 +00003880 if (*stroke_alpha < ((alpha-0.25)*(alpha-0.25)))
3881 *stroke_alpha=(alpha-0.25)*(alpha-0.25);
cristy3ed852e2009-09-05 21:47:34 +00003882 }
3883 }
3884 }
cristyb2e6b992011-12-17 16:42:29 +00003885 if ((fill == MagickFalse) || (distance > 1.0) || (subpath_alpha >= 1.0))
cristy3ed852e2009-09-05 21:47:34 +00003886 continue;
3887 if (distance <= 0.0)
3888 {
cristyb2e6b992011-12-17 16:42:29 +00003889 subpath_alpha=1.0;
cristy3ed852e2009-09-05 21:47:34 +00003890 continue;
3891 }
3892 if (distance > 1.0)
3893 continue;
Cristy911b5862016-06-24 17:45:06 -04003894 if (fabs(beta) < DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00003895 {
3896 beta=1.0;
Cristy911b5862016-06-24 17:45:06 -04003897 if (fabs(distance-1.0) >= DrawEpsilon)
cristyb32b90a2009-09-07 21:45:48 +00003898 beta=sqrt(distance);
cristy3ed852e2009-09-05 21:47:34 +00003899 }
3900 alpha=beta-1.0;
cristyb2e6b992011-12-17 16:42:29 +00003901 if (subpath_alpha < (alpha*alpha))
3902 subpath_alpha=alpha*alpha;
cristy3ed852e2009-09-05 21:47:34 +00003903 }
cristy3ed852e2009-09-05 21:47:34 +00003904 }
3905 /*
3906 Compute fill opacity.
3907 */
3908 if (fill == MagickFalse)
3909 return(0.0);
cristyb2e6b992011-12-17 16:42:29 +00003910 if (subpath_alpha >= 1.0)
cristy3ed852e2009-09-05 21:47:34 +00003911 return(1.0);
cristyb32b90a2009-09-07 21:45:48 +00003912 /*
3913 Determine winding number.
3914 */
3915 winding_number=0;
3916 p=polygon_info->edges;
cristybb503372010-05-27 20:51:26 +00003917 for (j=0; j < (ssize_t) polygon_info->number_edges; j++, p++)
cristyb32b90a2009-09-07 21:45:48 +00003918 {
cristye4e47ae2012-09-04 23:36:43 +00003919 if ((double) y <= p->bounds.y1)
cristyb32b90a2009-09-07 21:45:48 +00003920 break;
cristye4e47ae2012-09-04 23:36:43 +00003921 if (((double) y > p->bounds.y2) || ((double) x <= p->bounds.x1))
cristyb32b90a2009-09-07 21:45:48 +00003922 continue;
cristye4e47ae2012-09-04 23:36:43 +00003923 if ((double) x > p->bounds.x2)
cristyb32b90a2009-09-07 21:45:48 +00003924 {
3925 winding_number+=p->direction ? 1 : -1;
3926 continue;
3927 }
cristybb503372010-05-27 20:51:26 +00003928 i=(ssize_t) MagickMax((double) p->highwater,1.0);
3929 for ( ; i < (ssize_t) p->number_points; i++)
cristye4e47ae2012-09-04 23:36:43 +00003930 if ((double) y <= p->points[i].y)
cristyb32b90a2009-09-07 21:45:48 +00003931 break;
3932 q=p->points+i-1;
3933 if ((((q+1)->x-q->x)*(y-q->y)) <= (((q+1)->y-q->y)*(x-q->x)))
3934 winding_number+=p->direction ? 1 : -1;
3935 }
cristy3ed852e2009-09-05 21:47:34 +00003936 if (fill_rule != NonZeroRule)
3937 {
3938 if ((MagickAbsoluteValue(winding_number) & 0x01) != 0)
3939 return(1.0);
3940 }
3941 else
3942 if (MagickAbsoluteValue(winding_number) != 0)
3943 return(1.0);
cristyb2e6b992011-12-17 16:42:29 +00003944 return(subpath_alpha);
cristy3ed852e2009-09-05 21:47:34 +00003945}
3946
3947static MagickBooleanType DrawPolygonPrimitive(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00003948 const DrawInfo *draw_info,const PrimitiveInfo *primitive_info,
3949 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00003950{
cristyfa112112010-01-04 17:48:07 +00003951 CacheView
3952 *image_view;
3953
cristy3ed852e2009-09-05 21:47:34 +00003954 MagickBooleanType
3955 fill,
3956 status;
3957
cristya19f1d72012-08-07 18:24:38 +00003958 double
cristy3ed852e2009-09-05 21:47:34 +00003959 mid;
3960
3961 PolygonInfo
dirk05d2ff72015-11-18 23:13:43 +01003962 **magick_restrict polygon_info;
cristy3ed852e2009-09-05 21:47:34 +00003963
3964 register EdgeInfo
3965 *p;
3966
cristybb503372010-05-27 20:51:26 +00003967 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00003968 i;
3969
3970 SegmentInfo
3971 bounds;
3972
cristy826a5472010-08-31 23:21:38 +00003973 ssize_t
dirk84c7c042015-07-12 13:01:35 +00003974 start_y,
3975 stop_y,
cristy826a5472010-08-31 23:21:38 +00003976 y;
3977
cristy3ed852e2009-09-05 21:47:34 +00003978 /*
3979 Compute bounding box.
3980 */
3981 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00003982 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00003983 if (image->debug != MagickFalse)
3984 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
3985 assert(draw_info != (DrawInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00003986 assert(draw_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +00003987 assert(primitive_info != (PrimitiveInfo *) NULL);
3988 if (primitive_info->coordinates == 0)
3989 return(MagickTrue);
dirkd2a7a2d2016-03-17 23:07:42 +01003990 polygon_info=AcquirePolygonThreadSet(primitive_info);
cristy3ed852e2009-09-05 21:47:34 +00003991 if (polygon_info == (PolygonInfo **) NULL)
3992 return(MagickFalse);
dirk93b02b72013-11-16 16:03:36 +00003993DisableMSCWarning(4127)
cristy3ed852e2009-09-05 21:47:34 +00003994 if (0)
cristy947cb4c2011-10-20 18:41:46 +00003995 DrawBoundingRectangles(image,draw_info,polygon_info[0],exception);
dirk93b02b72013-11-16 16:03:36 +00003996RestoreMSCWarning
cristy3ed852e2009-09-05 21:47:34 +00003997 if (image->debug != MagickFalse)
3998 (void) LogMagickEvent(DrawEvent,GetMagickModule()," begin draw-polygon");
3999 fill=(primitive_info->method == FillToBorderMethod) ||
4000 (primitive_info->method == FloodfillMethod) ? MagickTrue : MagickFalse;
4001 mid=ExpandAffine(&draw_info->affine)*draw_info->stroke_width/2.0;
4002 bounds=polygon_info[0]->edges[0].bounds;
cristybb503372010-05-27 20:51:26 +00004003 for (i=1; i < (ssize_t) polygon_info[0]->number_edges; i++)
cristy3ed852e2009-09-05 21:47:34 +00004004 {
4005 p=polygon_info[0]->edges+i;
4006 if (p->bounds.x1 < bounds.x1)
4007 bounds.x1=p->bounds.x1;
4008 if (p->bounds.y1 < bounds.y1)
4009 bounds.y1=p->bounds.y1;
4010 if (p->bounds.x2 > bounds.x2)
4011 bounds.x2=p->bounds.x2;
4012 if (p->bounds.y2 > bounds.y2)
4013 bounds.y2=p->bounds.y2;
4014 }
4015 bounds.x1-=(mid+1.0);
cristybb503372010-05-27 20:51:26 +00004016 bounds.x1=bounds.x1 < 0.0 ? 0.0 : (size_t) ceil(bounds.x1-0.5) >=
cristy6c5494a2012-09-22 00:30:37 +00004017 image->columns ? (double) image->columns-1 : bounds.x1;
cristy3ed852e2009-09-05 21:47:34 +00004018 bounds.y1-=(mid+1.0);
cristybb503372010-05-27 20:51:26 +00004019 bounds.y1=bounds.y1 < 0.0 ? 0.0 : (size_t) ceil(bounds.y1-0.5) >=
cristy6c5494a2012-09-22 00:30:37 +00004020 image->rows ? (double) image->rows-1 : bounds.y1;
cristy3ed852e2009-09-05 21:47:34 +00004021 bounds.x2+=(mid+1.0);
cristy8071c472012-09-24 12:41:06 +00004022 bounds.x2=bounds.x2 < 0.0 ? 0.0 : (size_t) floor(bounds.x2+0.5) >=
cristy6c5494a2012-09-22 00:30:37 +00004023 image->columns ? (double) image->columns-1 : bounds.x2;
cristy3ed852e2009-09-05 21:47:34 +00004024 bounds.y2+=(mid+1.0);
cristy8071c472012-09-24 12:41:06 +00004025 bounds.y2=bounds.y2 < 0.0 ? 0.0 : (size_t) floor(bounds.y2+0.5) >=
cristy6c5494a2012-09-22 00:30:37 +00004026 image->rows ? (double) image->rows-1 : bounds.y2;
cristy3ed852e2009-09-05 21:47:34 +00004027 status=MagickTrue;
cristy46ff2672012-12-14 15:32:26 +00004028 image_view=AcquireAuthenticCacheView(image,exception);
cristyb8cb0222015-05-05 11:25:32 +00004029 if ((primitive_info->coordinates == 1) ||
4030 (polygon_info[0]->number_edges == 0))
cristy3ed852e2009-09-05 21:47:34 +00004031 {
4032 /*
4033 Draw point.
4034 */
dirk84c7c042015-07-12 13:01:35 +00004035 start_y=(ssize_t) ceil(bounds.y1-0.5);
4036 stop_y=(ssize_t) floor(bounds.y2+0.5);
cristyb5d5f722009-11-04 03:03:49 +00004037#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy9a5a52f2012-10-09 14:40:31 +00004038 #pragma omp parallel for schedule(static,4) shared(status) \
cristycb7dfcc2013-01-06 18:34:59 +00004039 magick_threads(image,image,1,1)
cristy3ed852e2009-09-05 21:47:34 +00004040#endif
dirk84c7c042015-07-12 13:01:35 +00004041 for (y=start_y; y <= stop_y; y++)
cristy3ed852e2009-09-05 21:47:34 +00004042 {
4043 MagickBooleanType
4044 sync;
4045
cristy101ab702011-10-13 13:06:32 +00004046 PixelInfo
cristy4c08aed2011-07-01 19:47:50 +00004047 pixel;
4048
cristybb503372010-05-27 20:51:26 +00004049 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004050 x;
4051
cristy4c08aed2011-07-01 19:47:50 +00004052 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01004053 *magick_restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004054
cristy564a5692012-01-20 23:56:26 +00004055 ssize_t
dirk84c7c042015-07-12 13:01:35 +00004056 start_x,
4057 stop_x;
cristy564a5692012-01-20 23:56:26 +00004058
cristy3ed852e2009-09-05 21:47:34 +00004059 if (status == MagickFalse)
4060 continue;
dirk84c7c042015-07-12 13:01:35 +00004061 start_x=(ssize_t) ceil(bounds.x1-0.5);
4062 stop_x=(ssize_t) floor(bounds.x2+0.5);
4063 x=start_x;
4064 q=GetCacheViewAuthenticPixels(image_view,x,y,(size_t) (stop_x-x+1),1,
cristyf707b302012-09-04 23:51:26 +00004065 exception);
cristy4c08aed2011-07-01 19:47:50 +00004066 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004067 {
4068 status=MagickFalse;
4069 continue;
4070 }
cristy101ab702011-10-13 13:06:32 +00004071 GetPixelInfo(image,&pixel);
dirk84c7c042015-07-12 13:01:35 +00004072 for ( ; x <= stop_x; x++)
cristy3ed852e2009-09-05 21:47:34 +00004073 {
cristybb503372010-05-27 20:51:26 +00004074 if ((x == (ssize_t) ceil(primitive_info->point.x-0.5)) &&
4075 (y == (ssize_t) ceil(primitive_info->point.y-0.5)))
cristy4c08aed2011-07-01 19:47:50 +00004076 {
dirk50be5382016-03-14 12:42:50 +01004077 GetFillColor(draw_info,x-start_x,y-start_y,&pixel,exception);
cristy11a06d32015-01-04 12:03:27 +00004078 SetPixelViaPixelInfo(image,&pixel,q);
cristy4c08aed2011-07-01 19:47:50 +00004079 }
cristyed231572011-07-14 02:18:59 +00004080 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004081 }
4082 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4083 if (sync == MagickFalse)
4084 status=MagickFalse;
4085 }
4086 image_view=DestroyCacheView(image_view);
4087 polygon_info=DestroyPolygonThreadSet(polygon_info);
4088 if (image->debug != MagickFalse)
4089 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4090 " end draw-polygon");
4091 return(status);
4092 }
4093 /*
4094 Draw polygon or line.
4095 */
cristy17f11b02014-12-20 19:37:04 +00004096 if (image->alpha_trait == UndefinedPixelTrait)
cristy63240882011-08-05 19:05:27 +00004097 (void) SetImageAlphaChannel(image,OpaqueAlphaChannel,exception);
dirk84c7c042015-07-12 13:01:35 +00004098 start_y=(ssize_t) ceil(bounds.y1-0.5);
4099 stop_y=(ssize_t) floor(bounds.y2+0.5);
cristyb5d5f722009-11-04 03:03:49 +00004100#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy9a5a52f2012-10-09 14:40:31 +00004101 #pragma omp parallel for schedule(static,4) shared(status) \
cristycb7dfcc2013-01-06 18:34:59 +00004102 magick_threads(image,image,1,1)
cristy3ed852e2009-09-05 21:47:34 +00004103#endif
dirk84c7c042015-07-12 13:01:35 +00004104 for (y=start_y; y <= stop_y; y++)
cristy3ed852e2009-09-05 21:47:34 +00004105 {
cristy5c9e6f22010-09-17 17:31:01 +00004106 const int
4107 id = GetOpenMPThreadId();
cristy6ebe97c2010-07-03 01:17:28 +00004108
cristya19f1d72012-08-07 18:24:38 +00004109 double
cristyb2e6b992011-12-17 16:42:29 +00004110 fill_alpha,
4111 stroke_alpha;
cristy3ed852e2009-09-05 21:47:34 +00004112
cristy101ab702011-10-13 13:06:32 +00004113 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004114 fill_color,
4115 stroke_color;
4116
cristy4c08aed2011-07-01 19:47:50 +00004117 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01004118 *magick_restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004119
cristy826a5472010-08-31 23:21:38 +00004120 register ssize_t
4121 x;
4122
cristy564a5692012-01-20 23:56:26 +00004123 ssize_t
dirk84c7c042015-07-12 13:01:35 +00004124 start_x,
4125 stop_x;
cristy564a5692012-01-20 23:56:26 +00004126
cristy3ed852e2009-09-05 21:47:34 +00004127 if (status == MagickFalse)
4128 continue;
dirk84c7c042015-07-12 13:01:35 +00004129 start_x=(ssize_t) ceil(bounds.x1-0.5);
4130 stop_x=(ssize_t) floor(bounds.x2+0.5);
Cristydd6065a2016-09-19 15:55:49 -04004131 q=GetCacheViewAuthenticPixels(image_view,start_x,y,(size_t) (stop_x-start_x+ 1),1,exception);
cristy4c08aed2011-07-01 19:47:50 +00004132 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004133 {
4134 status=MagickFalse;
4135 continue;
4136 }
dirk84c7c042015-07-12 13:01:35 +00004137 for (x=start_x; x <= stop_x; x++)
cristy3ed852e2009-09-05 21:47:34 +00004138 {
4139 /*
4140 Fill and/or stroke.
4141 */
cristyb2e6b992011-12-17 16:42:29 +00004142 fill_alpha=GetFillAlpha(polygon_info[id],mid,fill,draw_info->fill_rule,
cristye4e47ae2012-09-04 23:36:43 +00004143 x,y,&stroke_alpha);
cristy3ed852e2009-09-05 21:47:34 +00004144 if (draw_info->stroke_antialias == MagickFalse)
4145 {
cristyb2e6b992011-12-17 16:42:29 +00004146 fill_alpha=fill_alpha > 0.25 ? 1.0 : 0.0;
4147 stroke_alpha=stroke_alpha > 0.25 ? 1.0 : 0.0;
cristy3ed852e2009-09-05 21:47:34 +00004148 }
dirk50be5382016-03-14 12:42:50 +01004149 GetFillColor(draw_info,x-start_x,y-start_y,&fill_color,exception);
cristyb2e6b992011-12-17 16:42:29 +00004150 fill_alpha=fill_alpha*fill_color.alpha;
cristya19f1d72012-08-07 18:24:38 +00004151 CompositePixelOver(image,&fill_color,fill_alpha,q,(double)
cristy4c08aed2011-07-01 19:47:50 +00004152 GetPixelAlpha(image,q),q);
dirk50be5382016-03-14 12:42:50 +01004153 GetStrokeColor(draw_info,x-start_x,y-start_y,&stroke_color,exception);
cristyb2e6b992011-12-17 16:42:29 +00004154 stroke_alpha=stroke_alpha*stroke_color.alpha;
cristya19f1d72012-08-07 18:24:38 +00004155 CompositePixelOver(image,&stroke_color,stroke_alpha,q,(double)
cristy4c08aed2011-07-01 19:47:50 +00004156 GetPixelAlpha(image,q),q);
cristyed231572011-07-14 02:18:59 +00004157 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004158 }
4159 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
4160 status=MagickFalse;
4161 }
4162 image_view=DestroyCacheView(image_view);
4163 polygon_info=DestroyPolygonThreadSet(polygon_info);
4164 if (image->debug != MagickFalse)
4165 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end draw-polygon");
4166 return(status);
4167}
4168
4169/*
4170%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4171% %
4172% %
4173% %
4174% D r a w P r i m i t i v e %
4175% %
4176% %
4177% %
4178%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4179%
4180% DrawPrimitive() draws a primitive (line, rectangle, ellipse) on the image.
4181%
4182% The format of the DrawPrimitive method is:
4183%
4184% MagickBooleanType DrawPrimitive(Image *image,const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00004185% PrimitiveInfo *primitive_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004186%
4187% A description of each parameter follows:
4188%
4189% o image: the image.
4190%
4191% o draw_info: the draw info.
4192%
4193% o primitive_info: Specifies a pointer to a PrimitiveInfo structure.
4194%
cristy947cb4c2011-10-20 18:41:46 +00004195% o exception: return any errors or warnings in this structure.
4196%
cristy3ed852e2009-09-05 21:47:34 +00004197*/
4198
4199static void LogPrimitiveInfo(const PrimitiveInfo *primitive_info)
4200{
4201 const char
4202 *methods[] =
4203 {
4204 "point",
4205 "replace",
4206 "floodfill",
4207 "filltoborder",
4208 "reset",
4209 "?"
4210 };
4211
cristy3ed852e2009-09-05 21:47:34 +00004212 PointInfo
4213 p,
4214 q,
4215 point;
4216
cristybb503372010-05-27 20:51:26 +00004217 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004218 i,
4219 x;
4220
cristy826a5472010-08-31 23:21:38 +00004221 ssize_t
4222 coordinates,
4223 y;
4224
cristybb503372010-05-27 20:51:26 +00004225 x=(ssize_t) ceil(primitive_info->point.x-0.5);
4226 y=(ssize_t) ceil(primitive_info->point.y-0.5);
cristy3ed852e2009-09-05 21:47:34 +00004227 switch (primitive_info->primitive)
4228 {
dirk34e1a212015-03-22 16:45:12 +00004229 case AlphaPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00004230 {
4231 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
dirk34e1a212015-03-22 16:45:12 +00004232 "AlphaPrimitive %.20g,%.20g %s",(double) x,(double) y,
cristyf2faecf2010-05-28 19:19:36 +00004233 methods[primitive_info->method]);
cristy3ed852e2009-09-05 21:47:34 +00004234 return;
4235 }
4236 case ColorPrimitive:
4237 {
4238 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristye8c25f92010-06-03 00:53:06 +00004239 "ColorPrimitive %.20g,%.20g %s",(double) x,(double) y,
cristyf2faecf2010-05-28 19:19:36 +00004240 methods[primitive_info->method]);
cristy3ed852e2009-09-05 21:47:34 +00004241 return;
4242 }
dirk34e1a212015-03-22 16:45:12 +00004243 case ImagePrimitive:
cristy3ed852e2009-09-05 21:47:34 +00004244 {
4245 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
dirk34e1a212015-03-22 16:45:12 +00004246 "ImagePrimitive %.20g,%.20g",(double) x,(double) y);
4247 return;
4248 }
4249 case PointPrimitive:
4250 {
4251 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4252 "PointPrimitive %.20g,%.20g %s",(double) x,(double) y,
cristyf2faecf2010-05-28 19:19:36 +00004253 methods[primitive_info->method]);
cristy3ed852e2009-09-05 21:47:34 +00004254 return;
4255 }
4256 case TextPrimitive:
4257 {
4258 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristye8c25f92010-06-03 00:53:06 +00004259 "TextPrimitive %.20g,%.20g",(double) x,(double) y);
cristy3ed852e2009-09-05 21:47:34 +00004260 return;
4261 }
cristy3ed852e2009-09-05 21:47:34 +00004262 default:
4263 break;
4264 }
4265 coordinates=0;
4266 p=primitive_info[0].point;
4267 q.x=(-1.0);
4268 q.y=(-1.0);
4269 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++)
4270 {
4271 point=primitive_info[i].point;
4272 if (coordinates <= 0)
4273 {
cristybb503372010-05-27 20:51:26 +00004274 coordinates=(ssize_t) primitive_info[i].coordinates;
cristy3ed852e2009-09-05 21:47:34 +00004275 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristye8c25f92010-06-03 00:53:06 +00004276 " begin open (%.20g)",(double) coordinates);
cristy3ed852e2009-09-05 21:47:34 +00004277 p=point;
4278 }
4279 point=primitive_info[i].point;
Cristy911b5862016-06-24 17:45:06 -04004280 if ((fabs(q.x-point.x) >= DrawEpsilon) ||
4281 (fabs(q.y-point.y) >= DrawEpsilon))
cristy8cd5b312010-01-07 01:10:24 +00004282 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristye8c25f92010-06-03 00:53:06 +00004283 " %.20g: %.18g,%.18g",(double) coordinates,point.x,point.y);
cristy3ed852e2009-09-05 21:47:34 +00004284 else
4285 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
cristy14388de2011-05-15 14:57:16 +00004286 " %.20g: %g %g (duplicate)",(double) coordinates,point.x,point.y);
cristy3ed852e2009-09-05 21:47:34 +00004287 q=point;
4288 coordinates--;
4289 if (coordinates > 0)
4290 continue;
Cristy911b5862016-06-24 17:45:06 -04004291 if ((fabs(p.x-point.x) >= DrawEpsilon) ||
4292 (fabs(p.y-point.y) >= DrawEpsilon))
cristye8c25f92010-06-03 00:53:06 +00004293 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end last (%.20g)",
4294 (double) coordinates);
cristy3ed852e2009-09-05 21:47:34 +00004295 else
cristye8c25f92010-06-03 00:53:06 +00004296 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end open (%.20g)",
4297 (double) coordinates);
cristy3ed852e2009-09-05 21:47:34 +00004298 }
4299}
4300
4301MagickExport MagickBooleanType DrawPrimitive(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00004302 const DrawInfo *draw_info,const PrimitiveInfo *primitive_info,
4303 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004304{
cristyc4c8d132010-01-07 01:58:38 +00004305 CacheView
4306 *image_view;
4307
cristy3ed852e2009-09-05 21:47:34 +00004308 MagickStatusType
4309 status;
4310
cristybb503372010-05-27 20:51:26 +00004311 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004312 i,
4313 x;
4314
cristy826a5472010-08-31 23:21:38 +00004315 ssize_t
4316 y;
4317
cristy3ed852e2009-09-05 21:47:34 +00004318 if (image->debug != MagickFalse)
4319 {
4320 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4321 " begin draw-primitive");
4322 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
Cristy4280d542016-06-11 12:48:49 -04004323 " affine: %g,%g,%g,%g,%g,%g",draw_info->affine.sx,
cristy3ed852e2009-09-05 21:47:34 +00004324 draw_info->affine.rx,draw_info->affine.ry,draw_info->affine.sy,
4325 draw_info->affine.tx,draw_info->affine.ty);
4326 }
cristya6400b12013-03-15 12:20:18 +00004327 if ((IsGrayColorspace(image->colorspace) != MagickFalse) &&
cristy4dab3802013-03-15 22:08:15 +00004328 ((IsPixelInfoGray(&draw_info->fill) == MagickFalse) ||
4329 (IsPixelInfoGray(&draw_info->stroke) == MagickFalse)))
cristy0c81d062013-04-21 15:22:02 +00004330 (void) SetImageColorspace(image,sRGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +00004331 status=MagickTrue;
cristybb503372010-05-27 20:51:26 +00004332 x=(ssize_t) ceil(primitive_info->point.x-0.5);
4333 y=(ssize_t) ceil(primitive_info->point.y-0.5);
cristy46ff2672012-12-14 15:32:26 +00004334 image_view=AcquireAuthenticCacheView(image,exception);
cristy3ed852e2009-09-05 21:47:34 +00004335 switch (primitive_info->primitive)
4336 {
dirk34e1a212015-03-22 16:45:12 +00004337 case AlphaPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00004338 {
cristy17f11b02014-12-20 19:37:04 +00004339 if (image->alpha_trait == UndefinedPixelTrait)
cristy63240882011-08-05 19:05:27 +00004340 (void) SetImageAlphaChannel(image,OpaqueAlphaChannel,exception);
cristy3ed852e2009-09-05 21:47:34 +00004341 switch (primitive_info->method)
4342 {
4343 case PointMethod:
4344 default:
4345 {
cristy101ab702011-10-13 13:06:32 +00004346 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004347 pixel;
4348
cristy4c08aed2011-07-01 19:47:50 +00004349 register Quantum
cristy3ed852e2009-09-05 21:47:34 +00004350 *q;
4351
4352 q=GetCacheViewAuthenticPixels(image_view,x,y,1,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00004353 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004354 break;
dirk50be5382016-03-14 12:42:50 +01004355 GetFillColor(draw_info,x,y,&pixel,exception);
cristyda1f9c12011-10-02 21:39:49 +00004356 SetPixelAlpha(image,ClampToQuantum(pixel.alpha),q);
cristy3ed852e2009-09-05 21:47:34 +00004357 (void) SyncCacheViewAuthenticPixels(image_view,exception);
4358 break;
4359 }
4360 case ReplaceMethod:
4361 {
4362 MagickBooleanType
4363 sync;
4364
cristy101ab702011-10-13 13:06:32 +00004365 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004366 pixel,
4367 target;
4368
cristyf05d4942012-03-17 16:26:09 +00004369 (void) GetOneCacheViewVirtualPixelInfo(image_view,x,y,&target,
cristy2ed42f62011-10-02 19:49:57 +00004370 exception);
cristyf2a82ee2014-05-26 17:49:54 +00004371 GetPixelInfo(image,&pixel);
cristybb503372010-05-27 20:51:26 +00004372 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00004373 {
cristy4c08aed2011-07-01 19:47:50 +00004374 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01004375 *magick_restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004376
4377 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
4378 exception);
cristy4c08aed2011-07-01 19:47:50 +00004379 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004380 break;
cristybb503372010-05-27 20:51:26 +00004381 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00004382 {
cristy101ab702011-10-13 13:06:32 +00004383 GetPixelInfoPixel(image,q,&pixel);
4384 if (IsFuzzyEquivalencePixelInfo(&pixel,&target) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00004385 {
cristyed231572011-07-14 02:18:59 +00004386 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004387 continue;
4388 }
dirk50be5382016-03-14 12:42:50 +01004389 GetFillColor(draw_info,x,y,&pixel,exception);
cristyda1f9c12011-10-02 21:39:49 +00004390 SetPixelAlpha(image,ClampToQuantum(pixel.alpha),q);
cristyed231572011-07-14 02:18:59 +00004391 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004392 }
4393 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4394 if (sync == MagickFalse)
4395 break;
4396 }
4397 break;
4398 }
4399 case FloodfillMethod:
4400 case FillToBorderMethod:
4401 {
cristybd5a96c2011-08-21 00:04:26 +00004402 ChannelType
4403 channel_mask;
4404
cristy4c08aed2011-07-01 19:47:50 +00004405 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004406 target;
4407
cristy3aa93752011-12-18 15:54:24 +00004408 (void) GetOneVirtualPixelInfo(image,TileVirtualPixelMethod,x,y,
cristy52010022011-10-21 18:07:37 +00004409 &target,exception);
cristy3ed852e2009-09-05 21:47:34 +00004410 if (primitive_info->method == FillToBorderMethod)
4411 {
cristya19f1d72012-08-07 18:24:38 +00004412 target.red=(double) draw_info->border_color.red;
4413 target.green=(double) draw_info->border_color.green;
4414 target.blue=(double) draw_info->border_color.blue;
cristy3ed852e2009-09-05 21:47:34 +00004415 }
cristycf1296e2012-08-26 23:40:49 +00004416 channel_mask=SetImageChannelMask(image,AlphaChannel);
cristy8a77f142013-08-14 12:44:38 +00004417 status&=FloodfillPaintImage(image,draw_info,&target,x,y,
cristy3ed852e2009-09-05 21:47:34 +00004418 primitive_info->method == FloodfillMethod ? MagickFalse :
cristy189e84c2011-08-27 18:08:53 +00004419 MagickTrue,exception);
cristycf1296e2012-08-26 23:40:49 +00004420 (void) SetImageChannelMask(image,channel_mask);
cristy3ed852e2009-09-05 21:47:34 +00004421 break;
4422 }
4423 case ResetMethod:
4424 {
4425 MagickBooleanType
4426 sync;
4427
cristy101ab702011-10-13 13:06:32 +00004428 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00004429 pixel;
4430
cristybb503372010-05-27 20:51:26 +00004431 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00004432 {
cristy4c08aed2011-07-01 19:47:50 +00004433 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01004434 *magick_restrict q;
cristy3ed852e2009-09-05 21:47:34 +00004435
4436 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
4437 exception);
cristy4c08aed2011-07-01 19:47:50 +00004438 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00004439 break;
cristybb503372010-05-27 20:51:26 +00004440 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +00004441 {
dirk50be5382016-03-14 12:42:50 +01004442 GetFillColor(draw_info,x,y,&pixel,exception);
cristyda1f9c12011-10-02 21:39:49 +00004443 SetPixelAlpha(image,ClampToQuantum(pixel.alpha),q);
cristyed231572011-07-14 02:18:59 +00004444 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00004445 }
4446 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4447 if (sync == MagickFalse)
4448 break;
4449 }
4450 break;
4451 }
4452 }
4453 break;
4454 }
dirk34e1a212015-03-22 16:45:12 +00004455 case ColorPrimitive:
cristy3ed852e2009-09-05 21:47:34 +00004456 {
dirk34e1a212015-03-22 16:45:12 +00004457 switch (primitive_info->method)
4458 {
4459 case PointMethod:
4460 default:
4461 {
4462 PixelInfo
4463 pixel;
cristy3ed852e2009-09-05 21:47:34 +00004464
dirk34e1a212015-03-22 16:45:12 +00004465 register Quantum
4466 *q;
cristy3ed852e2009-09-05 21:47:34 +00004467
dirk34e1a212015-03-22 16:45:12 +00004468 q=GetCacheViewAuthenticPixels(image_view,x,y,1,1,exception);
4469 if (q == (Quantum *) NULL)
4470 break;
4471 GetPixelInfo(image,&pixel);
dirk50be5382016-03-14 12:42:50 +01004472 GetFillColor(draw_info,x,y,&pixel,exception);
dirk34e1a212015-03-22 16:45:12 +00004473 SetPixelViaPixelInfo(image,&pixel,q);
4474 (void) SyncCacheViewAuthenticPixels(image_view,exception);
4475 break;
4476 }
4477 case ReplaceMethod:
4478 {
4479 MagickBooleanType
4480 sync;
4481
4482 PixelInfo
4483 pixel,
4484 target;
4485
4486 (void) GetOneCacheViewVirtualPixelInfo(image_view,x,y,&target,
4487 exception);
4488 for (y=0; y < (ssize_t) image->rows; y++)
4489 {
4490 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01004491 *magick_restrict q;
dirk34e1a212015-03-22 16:45:12 +00004492
4493 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
4494 exception);
4495 if (q == (Quantum *) NULL)
4496 break;
4497 for (x=0; x < (ssize_t) image->columns; x++)
4498 {
4499 GetPixelInfoPixel(image,q,&pixel);
4500 if (IsFuzzyEquivalencePixelInfo(&pixel,&target) == MagickFalse)
4501 {
4502 q+=GetPixelChannels(image);
4503 continue;
4504 }
dirk50be5382016-03-14 12:42:50 +01004505 GetFillColor(draw_info,x,y,&pixel,exception);
dirk34e1a212015-03-22 16:45:12 +00004506 SetPixelViaPixelInfo(image,&pixel,q);
4507 q+=GetPixelChannels(image);
4508 }
4509 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4510 if (sync == MagickFalse)
4511 break;
4512 }
4513 break;
4514 }
4515 case FloodfillMethod:
4516 case FillToBorderMethod:
4517 {
4518 PixelInfo
4519 target;
4520
4521 (void) GetOneVirtualPixelInfo(image,TileVirtualPixelMethod,x,y,
4522 &target,exception);
4523 if (primitive_info->method == FillToBorderMethod)
4524 {
4525 target.red=(double) draw_info->border_color.red;
4526 target.green=(double) draw_info->border_color.green;
4527 target.blue=(double) draw_info->border_color.blue;
4528 }
4529 status&=FloodfillPaintImage(image,draw_info,&target,x,y,
4530 primitive_info->method == FloodfillMethod ? MagickFalse :
4531 MagickTrue,exception);
4532 break;
4533 }
4534 case ResetMethod:
4535 {
4536 MagickBooleanType
4537 sync;
4538
4539 PixelInfo
4540 pixel;
4541
4542 GetPixelInfo(image,&pixel);
4543 for (y=0; y < (ssize_t) image->rows; y++)
4544 {
4545 register Quantum
dirk05d2ff72015-11-18 23:13:43 +01004546 *magick_restrict q;
dirk34e1a212015-03-22 16:45:12 +00004547
dirk34e1a212015-03-22 16:45:12 +00004548 q=GetCacheViewAuthenticPixels(image_view,0,y,image->columns,1,
4549 exception);
4550 if (q == (Quantum *) NULL)
4551 break;
4552 for (x=0; x < (ssize_t) image->columns; x++)
4553 {
dirk50be5382016-03-14 12:42:50 +01004554 GetFillColor(draw_info,x,y,&pixel,exception);
dirk34e1a212015-03-22 16:45:12 +00004555 SetPixelViaPixelInfo(image,&pixel,q);
4556 q+=GetPixelChannels(image);
4557 }
4558 sync=SyncCacheViewAuthenticPixels(image_view,exception);
4559 if (sync == MagickFalse)
4560 break;
4561 }
4562 break;
4563 }
4564 }
cristy3ed852e2009-09-05 21:47:34 +00004565 break;
4566 }
4567 case ImagePrimitive:
4568 {
4569 AffineMatrix
4570 affine;
4571
4572 char
cristy151b66d2015-04-15 10:50:31 +00004573 composite_geometry[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +00004574
4575 Image
4576 *composite_image;
4577
4578 ImageInfo
4579 *clone_info;
4580
cristy826a5472010-08-31 23:21:38 +00004581 RectangleInfo
4582 geometry;
4583
cristybb503372010-05-27 20:51:26 +00004584 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004585 x1,
4586 y1;
4587
cristy3ed852e2009-09-05 21:47:34 +00004588 if (primitive_info->text == (char *) NULL)
4589 break;
4590 clone_info=AcquireImageInfo();
4591 if (LocaleNCompare(primitive_info->text,"data:",5) == 0)
4592 composite_image=ReadInlineImage(clone_info,primitive_info->text,
cristy947cb4c2011-10-20 18:41:46 +00004593 exception);
cristy3ed852e2009-09-05 21:47:34 +00004594 else
4595 {
4596 (void) CopyMagickString(clone_info->filename,primitive_info->text,
cristy151b66d2015-04-15 10:50:31 +00004597 MagickPathExtent);
cristy947cb4c2011-10-20 18:41:46 +00004598 composite_image=ReadImage(clone_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00004599 }
4600 clone_info=DestroyImageInfo(clone_info);
4601 if (composite_image == (Image *) NULL)
4602 break;
4603 (void) SetImageProgressMonitor(composite_image,(MagickProgressMonitor)
4604 NULL,(void *) NULL);
cristybb503372010-05-27 20:51:26 +00004605 x1=(ssize_t) ceil(primitive_info[1].point.x-0.5);
4606 y1=(ssize_t) ceil(primitive_info[1].point.y-0.5);
4607 if (((x1 != 0L) && (x1 != (ssize_t) composite_image->columns)) ||
4608 ((y1 != 0L) && (y1 != (ssize_t) composite_image->rows)))
cristy3ed852e2009-09-05 21:47:34 +00004609 {
cristy3ed852e2009-09-05 21:47:34 +00004610 /*
4611 Resize image.
4612 */
dirkc93932a2015-10-01 16:56:10 +02004613 (void) FormatLocaleString(composite_geometry,MagickPathExtent,
4614 "%gx%g!",primitive_info[1].point.x,primitive_info[1].point.y);
cristy3ed852e2009-09-05 21:47:34 +00004615 composite_image->filter=image->filter;
dirkc93932a2015-10-01 16:56:10 +02004616 (void) TransformImage(&composite_image,(char *) NULL,
4617 composite_geometry,exception);
cristy3ed852e2009-09-05 21:47:34 +00004618 }
cristy17f11b02014-12-20 19:37:04 +00004619 if (composite_image->alpha_trait == UndefinedPixelTrait)
cristy63240882011-08-05 19:05:27 +00004620 (void) SetImageAlphaChannel(composite_image,OpaqueAlphaChannel,
4621 exception);
cristy4c08aed2011-07-01 19:47:50 +00004622 if (draw_info->alpha != OpaqueAlpha)
cristye941a752011-10-15 01:52:48 +00004623 (void) SetImageAlpha(composite_image,draw_info->alpha,exception);
cristy3ed852e2009-09-05 21:47:34 +00004624 SetGeometry(image,&geometry);
4625 image->gravity=draw_info->gravity;
4626 geometry.x=x;
4627 geometry.y=y;
cristy151b66d2015-04-15 10:50:31 +00004628 (void) FormatLocaleString(composite_geometry,MagickPathExtent,
cristy6d8abba2010-06-03 01:10:47 +00004629 "%.20gx%.20g%+.20g%+.20g",(double) composite_image->columns,(double)
cristye8c25f92010-06-03 00:53:06 +00004630 composite_image->rows,(double) geometry.x,(double) geometry.y);
cristy947cb4c2011-10-20 18:41:46 +00004631 (void) ParseGravityGeometry(image,composite_geometry,&geometry,exception);
cristy3ed852e2009-09-05 21:47:34 +00004632 affine=draw_info->affine;
4633 affine.tx=(double) geometry.x;
4634 affine.ty=(double) geometry.y;
4635 composite_image->interpolate=image->interpolate;
cristyd5f3fc32011-04-26 14:44:36 +00004636 if (draw_info->compose == OverCompositeOp)
cristy947cb4c2011-10-20 18:41:46 +00004637 (void) DrawAffineImage(image,composite_image,&affine,exception);
cristyd5f3fc32011-04-26 14:44:36 +00004638 else
cristyfeb3e962012-03-29 17:25:55 +00004639 (void) CompositeImage(image,composite_image,draw_info->compose,
cristy39172402012-03-30 13:04:39 +00004640 MagickTrue,geometry.x,geometry.y,exception);
cristy3ed852e2009-09-05 21:47:34 +00004641 composite_image=DestroyImage(composite_image);
4642 break;
4643 }
dirk34e1a212015-03-22 16:45:12 +00004644 case PointPrimitive:
4645 {
4646 PixelInfo
4647 fill_color;
4648
4649 register Quantum
4650 *q;
4651
4652 if ((y < 0) || (y >= (ssize_t) image->rows))
4653 break;
4654 if ((x < 0) || (x >= (ssize_t) image->columns))
4655 break;
4656 q=GetCacheViewAuthenticPixels(image_view,x,y,1,1,exception);
4657 if (q == (Quantum *) NULL)
4658 break;
dirk50be5382016-03-14 12:42:50 +01004659 GetFillColor(draw_info,x,y,&fill_color,exception);
dirk34e1a212015-03-22 16:45:12 +00004660 CompositePixelOver(image,&fill_color,(double) fill_color.alpha,q,
4661 (double) GetPixelAlpha(image,q),q);
4662 (void) SyncCacheViewAuthenticPixels(image_view,exception);
4663 break;
4664 }
4665 case TextPrimitive:
4666 {
4667 char
cristy151b66d2015-04-15 10:50:31 +00004668 geometry[MagickPathExtent];
dirk34e1a212015-03-22 16:45:12 +00004669
4670 DrawInfo
4671 *clone_info;
4672
4673 if (primitive_info->text == (char *) NULL)
4674 break;
4675 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
4676 (void) CloneString(&clone_info->text,primitive_info->text);
cristy151b66d2015-04-15 10:50:31 +00004677 (void) FormatLocaleString(geometry,MagickPathExtent,"%+f%+f",
dirk34e1a212015-03-22 16:45:12 +00004678 primitive_info->point.x,primitive_info->point.y);
4679 (void) CloneString(&clone_info->geometry,geometry);
4680 status&=AnnotateImage(image,clone_info,exception);
4681 clone_info=DestroyDrawInfo(clone_info);
4682 break;
4683 }
cristy3ed852e2009-09-05 21:47:34 +00004684 default:
4685 {
cristya19f1d72012-08-07 18:24:38 +00004686 double
cristy3ed852e2009-09-05 21:47:34 +00004687 mid,
4688 scale;
4689
4690 DrawInfo
4691 *clone_info;
4692
4693 if (IsEventLogging() != MagickFalse)
4694 LogPrimitiveInfo(primitive_info);
4695 scale=ExpandAffine(&draw_info->affine);
4696 if ((draw_info->dash_pattern != (double *) NULL) &&
Cristy911b5862016-06-24 17:45:06 -04004697 (fabs(draw_info->dash_pattern[0]) >= DrawEpsilon) &&
Cristy67d73ab2016-06-25 17:07:21 -04004698 (fabs(scale*draw_info->stroke_width) >= DrawEpsilon) &&
cristy4c08aed2011-07-01 19:47:50 +00004699 (draw_info->stroke.alpha != (Quantum) TransparentAlpha))
cristy3ed852e2009-09-05 21:47:34 +00004700 {
4701 /*
4702 Draw dash polygon.
4703 */
4704 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
4705 clone_info->stroke_width=0.0;
Cristy726812f2016-05-04 19:09:35 -04004706 clone_info->stroke.alpha=(MagickRealType) TransparentAlpha;
cristy8a77f142013-08-14 12:44:38 +00004707 status&=DrawPolygonPrimitive(image,clone_info,primitive_info,
cristy947cb4c2011-10-20 18:41:46 +00004708 exception);
cristy3ed852e2009-09-05 21:47:34 +00004709 clone_info=DestroyDrawInfo(clone_info);
cristy947cb4c2011-10-20 18:41:46 +00004710 (void) DrawDashPolygon(draw_info,primitive_info,image,exception);
cristy3ed852e2009-09-05 21:47:34 +00004711 break;
4712 }
4713 mid=ExpandAffine(&draw_info->affine)*draw_info->stroke_width/2.0;
dirk4d928fd2016-03-15 18:36:10 +01004714 if ((mid > 1.0) &&
4715 ((draw_info->stroke.alpha != (Quantum) TransparentAlpha) ||
4716 (draw_info->stroke_pattern != (Image *) NULL)))
cristy3ed852e2009-09-05 21:47:34 +00004717 {
4718 MagickBooleanType
4719 closed_path;
4720
4721 /*
4722 Draw strokes while respecting line cap/join attributes.
4723 */
4724 for (i=0; primitive_info[i].primitive != UndefinedPrimitive; i++) ;
4725 closed_path=
Cristy911b5862016-06-24 17:45:06 -04004726 (fabs(primitive_info[i-1].point.x-primitive_info[0].point.x) < DrawEpsilon) &&
4727 (fabs(primitive_info[i-1].point.y-primitive_info[0].point.y) < DrawEpsilon) ?
cristy3ed852e2009-09-05 21:47:34 +00004728 MagickTrue : MagickFalse;
cristybb503372010-05-27 20:51:26 +00004729 i=(ssize_t) primitive_info[0].coordinates;
Cristyebe99d02016-07-06 10:02:05 -04004730 if (((closed_path != MagickFalse) &&
4731 (draw_info->linejoin == RoundJoin)) ||
4732 (primitive_info[i].primitive != UndefinedPrimitive))
4733 {
4734 (void) DrawPolygonPrimitive(image,draw_info,primitive_info,
4735 exception);
4736 break;
4737 }
4738 if (draw_info->linecap == RoundCap)
cristy3ed852e2009-09-05 21:47:34 +00004739 {
cristy947cb4c2011-10-20 18:41:46 +00004740 (void) DrawPolygonPrimitive(image,draw_info,primitive_info,
4741 exception);
cristy3ed852e2009-09-05 21:47:34 +00004742 break;
4743 }
4744 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
4745 clone_info->stroke_width=0.0;
Cristy726812f2016-05-04 19:09:35 -04004746 clone_info->stroke.alpha=(MagickRealType) TransparentAlpha;
cristy8a77f142013-08-14 12:44:38 +00004747 status&=DrawPolygonPrimitive(image,clone_info,primitive_info,
cristy947cb4c2011-10-20 18:41:46 +00004748 exception);
cristy3ed852e2009-09-05 21:47:34 +00004749 clone_info=DestroyDrawInfo(clone_info);
cristy8a77f142013-08-14 12:44:38 +00004750 status&=DrawStrokePolygon(image,draw_info,primitive_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00004751 break;
4752 }
cristy8a77f142013-08-14 12:44:38 +00004753 status&=DrawPolygonPrimitive(image,draw_info,primitive_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00004754 break;
4755 }
4756 }
4757 image_view=DestroyCacheView(image_view);
4758 if (image->debug != MagickFalse)
4759 (void) LogMagickEvent(DrawEvent,GetMagickModule()," end draw-primitive");
4760 return(status != 0 ? MagickTrue : MagickFalse);
4761}
4762
4763/*
4764%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4765% %
4766% %
4767% %
4768+ D r a w S t r o k e P o l y g o n %
4769% %
4770% %
4771% %
4772%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4773%
4774% DrawStrokePolygon() draws a stroked polygon (line, rectangle, ellipse) on
4775% the image while respecting the line cap and join attributes.
4776%
4777% The format of the DrawStrokePolygon method is:
4778%
4779% MagickBooleanType DrawStrokePolygon(Image *image,
4780% const DrawInfo *draw_info,const PrimitiveInfo *primitive_info)
4781%
4782% A description of each parameter follows:
4783%
4784% o image: the image.
4785%
4786% o draw_info: the draw info.
4787%
4788% o primitive_info: Specifies a pointer to a PrimitiveInfo structure.
4789%
4790%
4791*/
4792
4793static void DrawRoundLinecap(Image *image,const DrawInfo *draw_info,
cristy947cb4c2011-10-20 18:41:46 +00004794 const PrimitiveInfo *primitive_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004795{
4796 PrimitiveInfo
4797 linecap[5];
4798
cristybb503372010-05-27 20:51:26 +00004799 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00004800 i;
4801
4802 for (i=0; i < 4; i++)
4803 linecap[i]=(*primitive_info);
4804 linecap[0].coordinates=4;
Cristyc1f3dad2016-06-24 19:39:49 -04004805 linecap[1].point.x+=2.0*DrawEpsilon;
4806 linecap[2].point.x+=2.0*DrawEpsilon;
4807 linecap[2].point.y+=2.0*DrawEpsilon;
4808 linecap[3].point.y+=2.0*DrawEpsilon;
cristy3ed852e2009-09-05 21:47:34 +00004809 linecap[4].primitive=UndefinedPrimitive;
cristy947cb4c2011-10-20 18:41:46 +00004810 (void) DrawPolygonPrimitive(image,draw_info,linecap,exception);
cristy3ed852e2009-09-05 21:47:34 +00004811}
4812
4813static MagickBooleanType DrawStrokePolygon(Image *image,
cristy947cb4c2011-10-20 18:41:46 +00004814 const DrawInfo *draw_info,const PrimitiveInfo *primitive_info,
4815 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00004816{
4817 DrawInfo
4818 *clone_info;
4819
4820 MagickBooleanType
cristy8a77f142013-08-14 12:44:38 +00004821 closed_path;
4822
4823 MagickStatusType
cristy3ed852e2009-09-05 21:47:34 +00004824 status;
4825
4826 PrimitiveInfo
4827 *stroke_polygon;
4828
4829 register const PrimitiveInfo
4830 *p,
4831 *q;
4832
4833 /*
4834 Draw stroked polygon.
4835 */
4836 if (image->debug != MagickFalse)
4837 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4838 " begin draw-stroke-polygon");
4839 clone_info=CloneDrawInfo((ImageInfo *) NULL,draw_info);
4840 clone_info->fill=draw_info->stroke;
cristy2d2d5622012-01-19 19:11:29 +00004841 if (clone_info->fill_pattern != (Image *) NULL)
4842 clone_info->fill_pattern=DestroyImage(clone_info->fill_pattern);
cristy2195b752012-01-19 16:04:04 +00004843 if (clone_info->stroke_pattern != (Image *) NULL)
cristy2d2d5622012-01-19 19:11:29 +00004844 clone_info->fill_pattern=CloneImage(clone_info->stroke_pattern,0,0,
4845 MagickTrue,exception);
Cristy726812f2016-05-04 19:09:35 -04004846 clone_info->stroke.alpha=(MagickRealType) TransparentAlpha;
cristy3ed852e2009-09-05 21:47:34 +00004847 clone_info->stroke_width=0.0;
4848 clone_info->fill_rule=NonZeroRule;
4849 status=MagickTrue;
4850 for (p=primitive_info; p->primitive != UndefinedPrimitive; p+=p->coordinates)
4851 {
4852 stroke_polygon=TraceStrokePolygon(draw_info,p);
cristy8a77f142013-08-14 12:44:38 +00004853 status&=DrawPolygonPrimitive(image,clone_info,stroke_polygon,exception);
4854 if (status == 0)
4855 break;
cristy3ed852e2009-09-05 21:47:34 +00004856 stroke_polygon=(PrimitiveInfo *) RelinquishMagickMemory(stroke_polygon);
4857 q=p+p->coordinates-1;
Cristy48bcfe02016-07-13 18:05:02 -04004858 closed_path=(fabs(q->point.x-p->point.x) < DrawEpsilon) &&
Cristy911b5862016-06-24 17:45:06 -04004859 (fabs(q->point.y-p->point.y) < DrawEpsilon) ? MagickTrue : MagickFalse;
cristy3ed852e2009-09-05 21:47:34 +00004860 if ((draw_info->linecap == RoundCap) && (closed_path == MagickFalse))
4861 {
cristy947cb4c2011-10-20 18:41:46 +00004862 DrawRoundLinecap(image,draw_info,p,exception);
4863 DrawRoundLinecap(image,draw_info,q,exception);
cristy3ed852e2009-09-05 21:47:34 +00004864 }
4865 }
4866 clone_info=DestroyDrawInfo(clone_info);
4867 if (image->debug != MagickFalse)
4868 (void) LogMagickEvent(DrawEvent,GetMagickModule(),
4869 " end draw-stroke-polygon");
cristy8a77f142013-08-14 12:44:38 +00004870 return(status != 0 ? MagickTrue : MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +00004871}
4872
4873/*
4874%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4875% %
4876% %
4877% %
4878% G e t A f f i n e M a t r i x %
4879% %
4880% %
4881% %
4882%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4883%
4884% GetAffineMatrix() returns an AffineMatrix initialized to the identity
4885% matrix.
4886%
4887% The format of the GetAffineMatrix method is:
4888%
4889% void GetAffineMatrix(AffineMatrix *affine_matrix)
4890%
4891% A description of each parameter follows:
4892%
4893% o affine_matrix: the affine matrix.
4894%
4895*/
4896MagickExport void GetAffineMatrix(AffineMatrix *affine_matrix)
4897{
4898 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
4899 assert(affine_matrix != (AffineMatrix *) NULL);
4900 (void) ResetMagickMemory(affine_matrix,0,sizeof(*affine_matrix));
4901 affine_matrix->sx=1.0;
4902 affine_matrix->sy=1.0;
4903}
4904
4905/*
4906%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4907% %
4908% %
4909% %
4910+ G e t D r a w I n f o %
4911% %
4912% %
4913% %
4914%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4915%
anthony9c88e8f2011-09-29 11:31:53 +00004916% GetDrawInfo() initializes draw_info to default values from image_info.
cristy3ed852e2009-09-05 21:47:34 +00004917%
4918% The format of the GetDrawInfo method is:
4919%
4920% void GetDrawInfo(const ImageInfo *image_info,DrawInfo *draw_info)
4921%
4922% A description of each parameter follows:
4923%
4924% o image_info: the image info..
4925%
4926% o draw_info: the draw info.
4927%
4928*/
4929MagickExport void GetDrawInfo(const ImageInfo *image_info,DrawInfo *draw_info)
4930{
Cristy3ed6c692016-05-23 19:24:23 -04004931 char
4932 *next_token;
4933
cristy3ed852e2009-09-05 21:47:34 +00004934 const char
4935 *option;
4936
4937 ExceptionInfo
4938 *exception;
4939
cristyc3813762015-06-07 13:41:56 +00004940 ImageInfo
4941 *clone_info;
4942
cristy3ed852e2009-09-05 21:47:34 +00004943 /*
4944 Initialize draw attributes.
4945 */
4946 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
4947 assert(draw_info != (DrawInfo *) NULL);
4948 (void) ResetMagickMemory(draw_info,0,sizeof(*draw_info));
cristyc3813762015-06-07 13:41:56 +00004949 clone_info=CloneImageInfo(image_info);
cristy3ed852e2009-09-05 21:47:34 +00004950 GetAffineMatrix(&draw_info->affine);
4951 exception=AcquireExceptionInfo();
cristyfad60c92012-01-19 18:32:39 +00004952 (void) QueryColorCompliance("#000F",AllCompliance,&draw_info->fill,
cristy9950d572011-10-01 18:22:35 +00004953 exception);
cristy86c364d2014-08-27 23:37:32 +00004954 (void) QueryColorCompliance("#0000",AllCompliance,&draw_info->stroke,
cristy9950d572011-10-01 18:22:35 +00004955 exception);
cristy3ed852e2009-09-05 21:47:34 +00004956 draw_info->stroke_width=1.0;
cristy3ed852e2009-09-05 21:47:34 +00004957 draw_info->fill_rule=EvenOddRule;
Cristy48bcfe02016-07-13 18:05:02 -04004958 draw_info->fill_alpha=OpaqueAlpha;
4959 draw_info->stroke_alpha=OpaqueAlpha;
cristy3ed852e2009-09-05 21:47:34 +00004960 draw_info->linecap=ButtCap;
4961 draw_info->linejoin=MiterJoin;
4962 draw_info->miterlimit=10;
4963 draw_info->decorate=NoDecoration;
cristy3ed852e2009-09-05 21:47:34 +00004964 draw_info->pointsize=12.0;
Cristy726812f2016-05-04 19:09:35 -04004965 draw_info->undercolor.alpha=(MagickRealType) TransparentAlpha;
cristy3ed852e2009-09-05 21:47:34 +00004966 draw_info->compose=OverCompositeOp;
cristy3ed852e2009-09-05 21:47:34 +00004967 draw_info->render=MagickTrue;
4968 draw_info->debug=IsEventLogging();
cristyc3813762015-06-07 13:41:56 +00004969 draw_info->stroke_antialias=clone_info->antialias;
4970 if (clone_info->font != (char *) NULL)
4971 draw_info->font=AcquireString(clone_info->font);
4972 if (clone_info->density != (char *) NULL)
4973 draw_info->density=AcquireString(clone_info->density);
4974 draw_info->text_antialias=clone_info->antialias;
dirk3af104d2016-06-25 22:14:34 +02004975 if (fabs(clone_info->pointsize) >= DrawEpsilon)
cristyc3813762015-06-07 13:41:56 +00004976 draw_info->pointsize=clone_info->pointsize;
4977 draw_info->border_color=clone_info->border_color;
4978 if (clone_info->server_name != (char *) NULL)
4979 draw_info->server_name=AcquireString(clone_info->server_name);
cristyc3813762015-06-07 13:41:56 +00004980 option=GetImageOption(clone_info,"direction");
4981 if (option != (const char *) NULL)
4982 draw_info->direction=(DirectionType) ParseCommandOption(
4983 MagickDirectionOptions,MagickFalse,option);
4984 else
4985 draw_info->direction=UndefinedDirection;
dirkd91d18e2015-07-30 18:41:02 +00004986 option=GetImageOption(clone_info,"encoding");
4987 if (option != (const char *) NULL)
4988 (void) CloneString(&draw_info->encoding,option);
dirk6409f342015-08-01 08:06:56 +00004989 option=GetImageOption(clone_info,"family");
4990 if (option != (const char *) NULL)
4991 (void) CloneString(&draw_info->family,option);
cristyc3813762015-06-07 13:41:56 +00004992 option=GetImageOption(clone_info,"fill");
4993 if (option != (const char *) NULL)
4994 (void) QueryColorCompliance(option,AllCompliance,&draw_info->fill,
4995 exception);
dirk5acf7022015-07-30 18:37:03 +00004996 option=GetImageOption(clone_info,"gravity");
4997 if (option != (const char *) NULL)
4998 draw_info->gravity=(GravityType) ParseCommandOption(MagickGravityOptions,
4999 MagickFalse,option);
5000 option=GetImageOption(clone_info,"interline-spacing");
5001 if (option != (const char *) NULL)
Cristy3ed6c692016-05-23 19:24:23 -04005002 draw_info->interline_spacing=StringToDouble(option,&next_token);
dirk5acf7022015-07-30 18:37:03 +00005003 option=GetImageOption(clone_info,"interword-spacing");
5004 if (option != (const char *) NULL)
Cristy3ed6c692016-05-23 19:24:23 -04005005 draw_info->interword_spacing=StringToDouble(option,&next_token);
dirk5acf7022015-07-30 18:37:03 +00005006 option=GetImageOption(clone_info,"kerning");
5007 if (option != (const char *) NULL)
Cristy3ed6c692016-05-23 19:24:23 -04005008 draw_info->kerning=StringToDouble(option,&next_token);
cristyc3813762015-06-07 13:41:56 +00005009 option=GetImageOption(clone_info,"stroke");
5010 if (option != (const char *) NULL)
5011 (void) QueryColorCompliance(option,AllCompliance,&draw_info->stroke,
5012 exception);
5013 option=GetImageOption(clone_info,"strokewidth");
5014 if (option != (const char *) NULL)
Cristy3ed6c692016-05-23 19:24:23 -04005015 draw_info->stroke_width=StringToDouble(option,&next_token);
dirkcd7357c2015-07-30 18:47:36 +00005016 option=GetImageOption(clone_info,"style");
5017 if (option != (const char *) NULL)
5018 draw_info->style=(StyleType) ParseCommandOption(MagickStyleOptions,
5019 MagickFalse,option);
cristyc3813762015-06-07 13:41:56 +00005020 option=GetImageOption(clone_info,"undercolor");
5021 if (option != (const char *) NULL)
5022 (void) QueryColorCompliance(option,AllCompliance,&draw_info->undercolor,
5023 exception);
dirk5acf7022015-07-30 18:37:03 +00005024 option=GetImageOption(clone_info,"weight");
cristyc3813762015-06-07 13:41:56 +00005025 if (option != (const char *) NULL)
dirk5acf7022015-07-30 18:37:03 +00005026 {
5027 ssize_t
5028 weight;
5029
5030 weight=ParseCommandOption(MagickWeightOptions,MagickFalse,option);
5031 if (weight == -1)
Cristy726812f2016-05-04 19:09:35 -04005032 weight=(ssize_t) StringToUnsignedLong(option);
dirk5acf7022015-07-30 18:37:03 +00005033 draw_info->weight=(size_t) weight;
5034 }
cristy3ed852e2009-09-05 21:47:34 +00005035 exception=DestroyExceptionInfo(exception);
cristye1c94d92015-06-28 12:16:33 +00005036 draw_info->signature=MagickCoreSignature;
cristyc3813762015-06-07 13:41:56 +00005037 clone_info=DestroyImageInfo(clone_info);
cristy3ed852e2009-09-05 21:47:34 +00005038}
5039
5040/*
5041%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5042% %
5043% %
5044% %
5045+ P e r m u t a t e %
5046% %
5047% %
5048% %
5049%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5050%
5051% Permutate() returns the permuation of the (n,k).
5052%
5053% The format of the Permutate method is:
5054%
cristybb503372010-05-27 20:51:26 +00005055% void Permutate(ssize_t n,ssize_t k)
cristy3ed852e2009-09-05 21:47:34 +00005056%
5057% A description of each parameter follows:
5058%
5059% o n:
5060%
5061% o k:
5062%
5063%
5064*/
cristya19f1d72012-08-07 18:24:38 +00005065static inline double Permutate(const ssize_t n,const ssize_t k)
cristy3ed852e2009-09-05 21:47:34 +00005066{
cristya19f1d72012-08-07 18:24:38 +00005067 double
cristy3ed852e2009-09-05 21:47:34 +00005068 r;
5069
cristybb503372010-05-27 20:51:26 +00005070 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005071 i;
5072
5073 r=1.0;
5074 for (i=k+1; i <= n; i++)
5075 r*=i;
5076 for (i=1; i <= (n-k); i++)
5077 r/=i;
5078 return(r);
5079}
5080
5081/*
5082%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5083% %
5084% %
5085% %
5086+ T r a c e P r i m i t i v e %
5087% %
5088% %
5089% %
5090%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5091%
5092% TracePrimitive is a collection of methods for generating graphic
5093% primitives such as arcs, ellipses, paths, etc.
5094%
5095*/
5096
5097static void TraceArc(PrimitiveInfo *primitive_info,const PointInfo start,
5098 const PointInfo end,const PointInfo degrees)
5099{
5100 PointInfo
5101 center,
5102 radii;
5103
5104 center.x=0.5*(end.x+start.x);
5105 center.y=0.5*(end.y+start.y);
5106 radii.x=fabs(center.x-start.x);
5107 radii.y=fabs(center.y-start.y);
5108 TraceEllipse(primitive_info,center,radii,degrees);
5109}
5110
5111static void TraceArcPath(PrimitiveInfo *primitive_info,const PointInfo start,
cristya19f1d72012-08-07 18:24:38 +00005112 const PointInfo end,const PointInfo arc,const double angle,
cristy3ed852e2009-09-05 21:47:34 +00005113 const MagickBooleanType large_arc,const MagickBooleanType sweep)
5114{
cristya19f1d72012-08-07 18:24:38 +00005115 double
cristy3ed852e2009-09-05 21:47:34 +00005116 alpha,
5117 beta,
5118 delta,
5119 factor,
5120 gamma,
5121 theta;
5122
5123 PointInfo
5124 center,
5125 points[3],
5126 radii;
5127
cristya19f1d72012-08-07 18:24:38 +00005128 register double
cristy3ed852e2009-09-05 21:47:34 +00005129 cosine,
5130 sine;
5131
5132 register PrimitiveInfo
5133 *p;
5134
cristybb503372010-05-27 20:51:26 +00005135 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005136 i;
5137
cristybb503372010-05-27 20:51:26 +00005138 size_t
cristy3ed852e2009-09-05 21:47:34 +00005139 arc_segments;
5140
Cristy48bcfe02016-07-13 18:05:02 -04005141 if ((fabs(start.x-end.x) < DrawEpsilon) &&
Cristy911b5862016-06-24 17:45:06 -04005142 (fabs(start.y-end.y) < DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005143 {
5144 TracePoint(primitive_info,end);
5145 return;
5146 }
5147 radii.x=fabs(arc.x);
5148 radii.y=fabs(arc.y);
Cristy911b5862016-06-24 17:45:06 -04005149 if ((fabs(radii.x) < DrawEpsilon) || (fabs(radii.y) < DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005150 {
5151 TraceLine(primitive_info,start,end);
5152 return;
5153 }
5154 cosine=cos(DegreesToRadians(fmod((double) angle,360.0)));
5155 sine=sin(DegreesToRadians(fmod((double) angle,360.0)));
5156 center.x=(double) (cosine*(end.x-start.x)/2+sine*(end.y-start.y)/2);
5157 center.y=(double) (cosine*(end.y-start.y)/2-sine*(end.x-start.x)/2);
5158 delta=(center.x*center.x)/(radii.x*radii.x)+(center.y*center.y)/
5159 (radii.y*radii.y);
Cristy911b5862016-06-24 17:45:06 -04005160 if (delta < DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00005161 {
5162 TraceLine(primitive_info,start,end);
5163 return;
5164 }
5165 if (delta > 1.0)
5166 {
5167 radii.x*=sqrt((double) delta);
5168 radii.y*=sqrt((double) delta);
5169 }
5170 points[0].x=(double) (cosine*start.x/radii.x+sine*start.y/radii.x);
5171 points[0].y=(double) (cosine*start.y/radii.y-sine*start.x/radii.y);
5172 points[1].x=(double) (cosine*end.x/radii.x+sine*end.y/radii.x);
5173 points[1].y=(double) (cosine*end.y/radii.y-sine*end.x/radii.y);
5174 alpha=points[1].x-points[0].x;
5175 beta=points[1].y-points[0].y;
cristy3e3ec3a2012-11-03 23:11:06 +00005176 factor=PerceptibleReciprocal(alpha*alpha+beta*beta)-0.25;
cristy3ed852e2009-09-05 21:47:34 +00005177 if (factor <= 0.0)
5178 factor=0.0;
5179 else
5180 {
5181 factor=sqrt((double) factor);
5182 if (sweep == large_arc)
5183 factor=(-factor);
5184 }
5185 center.x=(double) ((points[0].x+points[1].x)/2-factor*beta);
5186 center.y=(double) ((points[0].y+points[1].y)/2+factor*alpha);
5187 alpha=atan2(points[0].y-center.y,points[0].x-center.x);
5188 theta=atan2(points[1].y-center.y,points[1].x-center.x)-alpha;
5189 if ((theta < 0.0) && (sweep != MagickFalse))
Cristydd6065a2016-09-19 15:55:49 -04005190 theta+=2.0*MagickPI;
cristy3ed852e2009-09-05 21:47:34 +00005191 else
5192 if ((theta > 0.0) && (sweep == MagickFalse))
Cristydd6065a2016-09-19 15:55:49 -04005193 theta-=2.0*MagickPI;
5194 arc_segments=(size_t) ceil(fabs((double) (theta/(0.5*MagickPI+DrawEpsilon))));
cristy3ed852e2009-09-05 21:47:34 +00005195 p=primitive_info;
cristybb503372010-05-27 20:51:26 +00005196 for (i=0; i < (ssize_t) arc_segments; i++)
cristy3ed852e2009-09-05 21:47:34 +00005197 {
5198 beta=0.5*((alpha+(i+1)*theta/arc_segments)-(alpha+i*theta/arc_segments));
5199 gamma=(8.0/3.0)*sin(fmod((double) (0.5*beta),DegreesToRadians(360.0)))*
5200 sin(fmod((double) (0.5*beta),DegreesToRadians(360.0)))/
5201 sin(fmod((double) beta,DegreesToRadians(360.0)));
5202 points[0].x=(double) (center.x+cos(fmod((double) (alpha+(double) i*theta/
5203 arc_segments),DegreesToRadians(360.0)))-gamma*sin(fmod((double) (alpha+
5204 (double) i*theta/arc_segments),DegreesToRadians(360.0))));
5205 points[0].y=(double) (center.y+sin(fmod((double) (alpha+(double) i*theta/
5206 arc_segments),DegreesToRadians(360.0)))+gamma*cos(fmod((double) (alpha+
5207 (double) i*theta/arc_segments),DegreesToRadians(360.0))));
5208 points[2].x=(double) (center.x+cos(fmod((double) (alpha+(double) (i+1)*
5209 theta/arc_segments),DegreesToRadians(360.0))));
5210 points[2].y=(double) (center.y+sin(fmod((double) (alpha+(double) (i+1)*
5211 theta/arc_segments),DegreesToRadians(360.0))));
5212 points[1].x=(double) (points[2].x+gamma*sin(fmod((double) (alpha+(double)
5213 (i+1)*theta/arc_segments),DegreesToRadians(360.0))));
5214 points[1].y=(double) (points[2].y-gamma*cos(fmod((double) (alpha+(double)
5215 (i+1)*theta/arc_segments),DegreesToRadians(360.0))));
5216 p->point.x=(p == primitive_info) ? start.x : (p-1)->point.x;
5217 p->point.y=(p == primitive_info) ? start.y : (p-1)->point.y;
5218 (p+1)->point.x=(double) (cosine*radii.x*points[0].x-sine*radii.y*
5219 points[0].y);
5220 (p+1)->point.y=(double) (sine*radii.x*points[0].x+cosine*radii.y*
5221 points[0].y);
5222 (p+2)->point.x=(double) (cosine*radii.x*points[1].x-sine*radii.y*
5223 points[1].y);
5224 (p+2)->point.y=(double) (sine*radii.x*points[1].x+cosine*radii.y*
5225 points[1].y);
5226 (p+3)->point.x=(double) (cosine*radii.x*points[2].x-sine*radii.y*
5227 points[2].y);
5228 (p+3)->point.y=(double) (sine*radii.x*points[2].x+cosine*radii.y*
5229 points[2].y);
cristybb503372010-05-27 20:51:26 +00005230 if (i == (ssize_t) (arc_segments-1))
cristy3ed852e2009-09-05 21:47:34 +00005231 (p+3)->point=end;
5232 TraceBezier(p,4);
5233 p+=p->coordinates;
5234 }
cristybb503372010-05-27 20:51:26 +00005235 primitive_info->coordinates=(size_t) (p-primitive_info);
5236 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005237 {
5238 p->primitive=primitive_info->primitive;
5239 p--;
5240 }
5241}
5242
5243static void TraceBezier(PrimitiveInfo *primitive_info,
cristybb503372010-05-27 20:51:26 +00005244 const size_t number_coordinates)
cristy3ed852e2009-09-05 21:47:34 +00005245{
cristya19f1d72012-08-07 18:24:38 +00005246 double
cristy3ed852e2009-09-05 21:47:34 +00005247 alpha,
5248 *coefficients,
5249 weight;
5250
5251 PointInfo
5252 end,
5253 point,
5254 *points;
5255
cristy826a5472010-08-31 23:21:38 +00005256 register PrimitiveInfo
5257 *p;
5258
cristybb503372010-05-27 20:51:26 +00005259 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005260 i,
5261 j;
5262
cristybb503372010-05-27 20:51:26 +00005263 size_t
cristy3ed852e2009-09-05 21:47:34 +00005264 control_points,
5265 quantum;
5266
5267 /*
5268 Allocate coeficients.
5269 */
5270 quantum=number_coordinates;
cristybb503372010-05-27 20:51:26 +00005271 for (i=0; i < (ssize_t) number_coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005272 {
cristybb503372010-05-27 20:51:26 +00005273 for (j=i+1; j < (ssize_t) number_coordinates; j++)
cristy3ed852e2009-09-05 21:47:34 +00005274 {
5275 alpha=fabs(primitive_info[j].point.x-primitive_info[i].point.x);
cristya19f1d72012-08-07 18:24:38 +00005276 if (alpha > (double) quantum)
cristybb503372010-05-27 20:51:26 +00005277 quantum=(size_t) alpha;
cristy3ed852e2009-09-05 21:47:34 +00005278 alpha=fabs(primitive_info[j].point.y-primitive_info[i].point.y);
cristya19f1d72012-08-07 18:24:38 +00005279 if (alpha > (double) quantum)
cristybb503372010-05-27 20:51:26 +00005280 quantum=(size_t) alpha;
cristy3ed852e2009-09-05 21:47:34 +00005281 }
5282 }
cristybb503372010-05-27 20:51:26 +00005283 quantum=(size_t) MagickMin((double) quantum/number_coordinates,
cristy3ed852e2009-09-05 21:47:34 +00005284 (double) BezierQuantum);
5285 control_points=quantum*number_coordinates;
cristya19f1d72012-08-07 18:24:38 +00005286 coefficients=(double *) AcquireQuantumMemory((size_t)
cristy3ed852e2009-09-05 21:47:34 +00005287 number_coordinates,sizeof(*coefficients));
5288 points=(PointInfo *) AcquireQuantumMemory((size_t) control_points,
5289 sizeof(*points));
Cristy911b5862016-06-24 17:45:06 -04005290 if ((coefficients == (double *) NULL) || (points == (PointInfo *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00005291 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
5292 /*
5293 Compute bezier points.
5294 */
5295 end=primitive_info[number_coordinates-1].point;
cristybb503372010-05-27 20:51:26 +00005296 for (i=0; i < (ssize_t) number_coordinates; i++)
5297 coefficients[i]=Permutate((ssize_t) number_coordinates-1,i);
cristy3ed852e2009-09-05 21:47:34 +00005298 weight=0.0;
cristybb503372010-05-27 20:51:26 +00005299 for (i=0; i < (ssize_t) control_points; i++)
cristy3ed852e2009-09-05 21:47:34 +00005300 {
5301 p=primitive_info;
5302 point.x=0.0;
5303 point.y=0.0;
5304 alpha=pow((double) (1.0-weight),(double) number_coordinates-1.0);
cristybb503372010-05-27 20:51:26 +00005305 for (j=0; j < (ssize_t) number_coordinates; j++)
cristy3ed852e2009-09-05 21:47:34 +00005306 {
5307 point.x+=alpha*coefficients[j]*p->point.x;
5308 point.y+=alpha*coefficients[j]*p->point.y;
5309 alpha*=weight/(1.0-weight);
5310 p++;
5311 }
5312 points[i]=point;
5313 weight+=1.0/control_points;
5314 }
5315 /*
5316 Bezier curves are just short segmented polys.
5317 */
5318 p=primitive_info;
cristybb503372010-05-27 20:51:26 +00005319 for (i=0; i < (ssize_t) control_points; i++)
cristy3ed852e2009-09-05 21:47:34 +00005320 {
5321 TracePoint(p,points[i]);
5322 p+=p->coordinates;
5323 }
5324 TracePoint(p,end);
5325 p+=p->coordinates;
cristybb503372010-05-27 20:51:26 +00005326 primitive_info->coordinates=(size_t) (p-primitive_info);
5327 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005328 {
5329 p->primitive=primitive_info->primitive;
5330 p--;
5331 }
5332 points=(PointInfo *) RelinquishMagickMemory(points);
cristya19f1d72012-08-07 18:24:38 +00005333 coefficients=(double *) RelinquishMagickMemory(coefficients);
cristy3ed852e2009-09-05 21:47:34 +00005334}
5335
5336static void TraceCircle(PrimitiveInfo *primitive_info,const PointInfo start,
5337 const PointInfo end)
5338{
cristya19f1d72012-08-07 18:24:38 +00005339 double
cristy3ed852e2009-09-05 21:47:34 +00005340 alpha,
5341 beta,
5342 radius;
5343
5344 PointInfo
5345 offset,
5346 degrees;
5347
5348 alpha=end.x-start.x;
5349 beta=end.y-start.y;
5350 radius=hypot((double) alpha,(double) beta);
5351 offset.x=(double) radius;
5352 offset.y=(double) radius;
5353 degrees.x=0.0;
5354 degrees.y=360.0;
5355 TraceEllipse(primitive_info,start,offset,degrees);
5356}
5357
5358static void TraceEllipse(PrimitiveInfo *primitive_info,const PointInfo start,
5359 const PointInfo stop,const PointInfo degrees)
5360{
cristya19f1d72012-08-07 18:24:38 +00005361 double
cristy3ed852e2009-09-05 21:47:34 +00005362 delta,
5363 step,
5364 y;
5365
5366 PointInfo
5367 angle,
5368 point;
5369
5370 register PrimitiveInfo
5371 *p;
5372
cristybb503372010-05-27 20:51:26 +00005373 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005374 i;
5375
5376 /*
5377 Ellipses are just short segmented polys.
5378 */
Cristy911b5862016-06-24 17:45:06 -04005379 if ((fabs(stop.x) < DrawEpsilon) && (fabs(stop.y) < DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005380 {
5381 TracePoint(primitive_info,start);
5382 return;
5383 }
5384 delta=2.0/MagickMax(stop.x,stop.y);
Cristydd6065a2016-09-19 15:55:49 -04005385 step=MagickPI/8.0;
5386 if ((delta >= 0.0) && (delta < (MagickPI/8.0)))
5387 step=MagickPI/(4*(MagickPI/delta/2+0.5));
cristy3ed852e2009-09-05 21:47:34 +00005388 angle.x=DegreesToRadians(degrees.x);
5389 y=degrees.y;
5390 while (y < degrees.x)
5391 y+=360.0;
Cristydd6065a2016-09-19 15:55:49 -04005392 angle.y=DegreesToRadians(y);
cristy3ed852e2009-09-05 21:47:34 +00005393 for (p=primitive_info; angle.x < angle.y; angle.x+=step)
5394 {
5395 point.x=cos(fmod(angle.x,DegreesToRadians(360.0)))*stop.x+start.x;
5396 point.y=sin(fmod(angle.x,DegreesToRadians(360.0)))*stop.y+start.y;
5397 TracePoint(p,point);
5398 p+=p->coordinates;
5399 }
5400 point.x=cos(fmod(angle.y,DegreesToRadians(360.0)))*stop.x+start.x;
5401 point.y=sin(fmod(angle.y,DegreesToRadians(360.0)))*stop.y+start.y;
5402 TracePoint(p,point);
5403 p+=p->coordinates;
cristybb503372010-05-27 20:51:26 +00005404 primitive_info->coordinates=(size_t) (p-primitive_info);
5405 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005406 {
5407 p->primitive=primitive_info->primitive;
5408 p--;
5409 }
5410}
5411
5412static void TraceLine(PrimitiveInfo *primitive_info,const PointInfo start,
5413 const PointInfo end)
5414{
5415 TracePoint(primitive_info,start);
Cristy911b5862016-06-24 17:45:06 -04005416 if ((fabs(start.x-end.x) < DrawEpsilon) &&
5417 (fabs(start.y-end.y) < DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005418 {
5419 primitive_info->primitive=PointPrimitive;
5420 primitive_info->coordinates=1;
5421 return;
5422 }
5423 TracePoint(primitive_info+1,end);
5424 (primitive_info+1)->primitive=primitive_info->primitive;
5425 primitive_info->coordinates=2;
5426}
5427
cristybb503372010-05-27 20:51:26 +00005428static size_t TracePath(PrimitiveInfo *primitive_info,const char *path)
cristy3ed852e2009-09-05 21:47:34 +00005429{
5430 char
Cristy3ed6c692016-05-23 19:24:23 -04005431 *next_token,
cristy151b66d2015-04-15 10:50:31 +00005432 token[MagickPathExtent];
cristy3ed852e2009-09-05 21:47:34 +00005433
5434 const char
5435 *p;
5436
cristya19f1d72012-08-07 18:24:38 +00005437 double
cristy3ed852e2009-09-05 21:47:34 +00005438 x,
5439 y;
5440
Cristydd6065a2016-09-19 15:55:49 -04005441 int
5442 attribute,
5443 last_attribute;
5444
cristy3ed852e2009-09-05 21:47:34 +00005445 PointInfo
cristy6124e6b2015-04-08 11:56:05 +00005446 end = {0.0, 0.0},
5447 points[4] = { {0.0,0.0}, {0.0,0.0}, {0.0,0.0}, {0.0,0.0} },
5448 point = {0.0, 0.0},
5449 start = {0.0, 0.0};
cristy3ed852e2009-09-05 21:47:34 +00005450
5451 PrimitiveType
5452 primitive_type;
5453
5454 register PrimitiveInfo
5455 *q;
5456
cristybb503372010-05-27 20:51:26 +00005457 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005458 i;
5459
cristybb503372010-05-27 20:51:26 +00005460 size_t
cristy3ed852e2009-09-05 21:47:34 +00005461 number_coordinates,
5462 z_count;
5463
5464 attribute=0;
cristy3ed852e2009-09-05 21:47:34 +00005465 number_coordinates=0;
5466 z_count=0;
5467 primitive_type=primitive_info->primitive;
5468 q=primitive_info;
5469 for (p=path; *p != '\0'; )
5470 {
5471 while (isspace((int) ((unsigned char) *p)) != 0)
5472 p++;
5473 if (*p == '\0')
5474 break;
5475 last_attribute=attribute;
5476 attribute=(int) (*p++);
5477 switch (attribute)
5478 {
5479 case 'a':
5480 case 'A':
5481 {
Cristydd6065a2016-09-19 15:55:49 -04005482 double
5483 angle;
5484
cristy3ed852e2009-09-05 21:47:34 +00005485 MagickBooleanType
5486 large_arc,
5487 sweep;
5488
cristy3ed852e2009-09-05 21:47:34 +00005489 PointInfo
5490 arc;
5491
5492 /*
5493 Compute arc points.
5494 */
5495 do
5496 {
Cristy8bedb4e2016-03-25 19:54:25 -04005497 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005498 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005499 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005500 arc.x=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005501 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005502 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005503 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005504 arc.y=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005505 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005506 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005507 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005508 angle=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005509 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005510 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005511 GetNextToken(p,&p,MagickPathExtent,token);
cristyf2f27272009-12-17 14:48:46 +00005512 large_arc=StringToLong(token) != 0 ? MagickTrue : MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04005513 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005514 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005515 GetNextToken(p,&p,MagickPathExtent,token);
cristyf2f27272009-12-17 14:48:46 +00005516 sweep=StringToLong(token) != 0 ? MagickTrue : MagickFalse;
Cristy8bedb4e2016-03-25 19:54:25 -04005517 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005518 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005519 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005520 x=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005521 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005522 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005523 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005524 y=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005525 end.x=(double) (attribute == (int) 'A' ? x : point.x+x);
5526 end.y=(double) (attribute == (int) 'A' ? y : point.y+y);
5527 TraceArcPath(q,point,end,arc,angle,large_arc,sweep);
5528 q+=q->coordinates;
5529 point=end;
cristy671fcfc2011-12-13 13:28:31 +00005530 while (isspace((int) ((unsigned char) *p)) != 0)
5531 p++;
5532 if (*p == ',')
5533 p++;
cristy3ed852e2009-09-05 21:47:34 +00005534 } while (IsPoint(p) != MagickFalse);
5535 break;
5536 }
5537 case 'c':
5538 case 'C':
5539 {
5540 /*
5541 Compute bezier points.
5542 */
5543 do
5544 {
5545 points[0]=point;
5546 for (i=1; i < 4; i++)
5547 {
Cristy8bedb4e2016-03-25 19:54:25 -04005548 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005549 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005550 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005551 x=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005552 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005553 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005554 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005555 y=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005556 end.x=(double) (attribute == (int) 'C' ? x : point.x+x);
5557 end.y=(double) (attribute == (int) 'C' ? y : point.y+y);
5558 points[i]=end;
5559 }
5560 for (i=0; i < 4; i++)
5561 (q+i)->point=points[i];
5562 TraceBezier(q,4);
5563 q+=q->coordinates;
5564 point=end;
5565 } while (IsPoint(p) != MagickFalse);
5566 break;
5567 }
5568 case 'H':
5569 case 'h':
5570 {
5571 do
5572 {
Cristy8bedb4e2016-03-25 19:54:25 -04005573 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005574 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005575 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005576 x=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005577 point.x=(double) (attribute == (int) 'H' ? x: point.x+x);
5578 TracePoint(q,point);
5579 q+=q->coordinates;
5580 } while (IsPoint(p) != MagickFalse);
5581 break;
5582 }
5583 case 'l':
5584 case 'L':
5585 {
5586 do
5587 {
Cristy8bedb4e2016-03-25 19:54:25 -04005588 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005589 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005590 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005591 x=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005592 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005593 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005594 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005595 y=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005596 point.x=(double) (attribute == (int) 'L' ? x : point.x+x);
5597 point.y=(double) (attribute == (int) 'L' ? y : point.y+y);
5598 TracePoint(q,point);
5599 q+=q->coordinates;
5600 } while (IsPoint(p) != MagickFalse);
5601 break;
5602 }
5603 case 'M':
5604 case 'm':
5605 {
5606 if (q != primitive_info)
5607 {
cristybb503372010-05-27 20:51:26 +00005608 primitive_info->coordinates=(size_t) (q-primitive_info);
cristy3ed852e2009-09-05 21:47:34 +00005609 number_coordinates+=primitive_info->coordinates;
5610 primitive_info=q;
5611 }
5612 i=0;
5613 do
5614 {
Cristy8bedb4e2016-03-25 19:54:25 -04005615 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005616 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005617 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005618 x=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005619 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005620 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005621 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005622 y=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005623 point.x=(double) (attribute == (int) 'M' ? x : point.x+x);
5624 point.y=(double) (attribute == (int) 'M' ? y : point.y+y);
5625 if (i == 0)
5626 start=point;
5627 i++;
5628 TracePoint(q,point);
5629 q+=q->coordinates;
cristy826a5472010-08-31 23:21:38 +00005630 if ((i != 0) && (attribute == (int) 'M'))
cristy3ed852e2009-09-05 21:47:34 +00005631 {
5632 TracePoint(q,point);
5633 q+=q->coordinates;
5634 }
5635 } while (IsPoint(p) != MagickFalse);
5636 break;
5637 }
5638 case 'q':
5639 case 'Q':
5640 {
5641 /*
5642 Compute bezier points.
5643 */
5644 do
5645 {
5646 points[0]=point;
5647 for (i=1; i < 3; i++)
5648 {
Cristy8bedb4e2016-03-25 19:54:25 -04005649 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005650 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005651 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005652 x=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005653 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005654 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005655 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005656 y=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005657 if (*p == ',')
5658 p++;
5659 end.x=(double) (attribute == (int) 'Q' ? x : point.x+x);
5660 end.y=(double) (attribute == (int) 'Q' ? y : point.y+y);
5661 points[i]=end;
5662 }
5663 for (i=0; i < 3; i++)
5664 (q+i)->point=points[i];
5665 TraceBezier(q,3);
5666 q+=q->coordinates;
5667 point=end;
5668 } while (IsPoint(p) != MagickFalse);
5669 break;
5670 }
5671 case 's':
5672 case 'S':
5673 {
5674 /*
5675 Compute bezier points.
5676 */
5677 do
5678 {
5679 points[0]=points[3];
5680 points[1].x=2.0*points[3].x-points[2].x;
5681 points[1].y=2.0*points[3].y-points[2].y;
5682 for (i=2; i < 4; i++)
5683 {
Cristy8bedb4e2016-03-25 19:54:25 -04005684 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005685 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005686 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005687 x=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005688 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005689 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005690 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005691 y=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005692 if (*p == ',')
5693 p++;
5694 end.x=(double) (attribute == (int) 'S' ? x : point.x+x);
5695 end.y=(double) (attribute == (int) 'S' ? y : point.y+y);
5696 points[i]=end;
5697 }
5698 if (strchr("CcSs",last_attribute) == (char *) NULL)
5699 {
cristy889e1872014-12-13 20:45:28 +00005700 points[0]=point;
5701 points[1]=point;
cristy3ed852e2009-09-05 21:47:34 +00005702 }
5703 for (i=0; i < 4; i++)
5704 (q+i)->point=points[i];
5705 TraceBezier(q,4);
5706 q+=q->coordinates;
5707 point=end;
5708 } while (IsPoint(p) != MagickFalse);
5709 break;
5710 }
5711 case 't':
5712 case 'T':
5713 {
5714 /*
5715 Compute bezier points.
5716 */
5717 do
5718 {
5719 points[0]=points[2];
5720 points[1].x=2.0*points[2].x-points[1].x;
5721 points[1].y=2.0*points[2].y-points[1].y;
5722 for (i=2; i < 3; i++)
5723 {
Cristy8bedb4e2016-03-25 19:54:25 -04005724 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005725 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005726 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005727 x=StringToDouble(token,&next_token);
Cristy8bedb4e2016-03-25 19:54:25 -04005728 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005729 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005730 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005731 y=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005732 end.x=(double) (attribute == (int) 'T' ? x : point.x+x);
5733 end.y=(double) (attribute == (int) 'T' ? y : point.y+y);
5734 points[i]=end;
5735 }
5736 if (strchr("QqTt",last_attribute) == (char *) NULL)
5737 {
cristy9d8e3fe2014-12-13 20:45:52 +00005738 points[0]=point;
5739 points[1]=point;
cristy3ed852e2009-09-05 21:47:34 +00005740 }
5741 for (i=0; i < 3; i++)
5742 (q+i)->point=points[i];
5743 TraceBezier(q,3);
5744 q+=q->coordinates;
5745 point=end;
5746 } while (IsPoint(p) != MagickFalse);
5747 break;
5748 }
5749 case 'v':
5750 case 'V':
5751 {
5752 do
5753 {
Cristy8bedb4e2016-03-25 19:54:25 -04005754 GetNextToken(p,&p,MagickPathExtent,token);
cristy3ed852e2009-09-05 21:47:34 +00005755 if (*token == ',')
Cristy8bedb4e2016-03-25 19:54:25 -04005756 GetNextToken(p,&p,MagickPathExtent,token);
Cristy3ed6c692016-05-23 19:24:23 -04005757 y=StringToDouble(token,&next_token);
cristy3ed852e2009-09-05 21:47:34 +00005758 point.y=(double) (attribute == (int) 'V' ? y : point.y+y);
5759 TracePoint(q,point);
5760 q+=q->coordinates;
5761 } while (IsPoint(p) != MagickFalse);
5762 break;
5763 }
5764 case 'z':
5765 case 'Z':
5766 {
5767 point=start;
5768 TracePoint(q,point);
5769 q+=q->coordinates;
cristybb503372010-05-27 20:51:26 +00005770 primitive_info->coordinates=(size_t) (q-primitive_info);
cristy3ed852e2009-09-05 21:47:34 +00005771 number_coordinates+=primitive_info->coordinates;
5772 primitive_info=q;
5773 z_count++;
5774 break;
5775 }
5776 default:
5777 {
5778 if (isalpha((int) ((unsigned char) attribute)) != 0)
cristy1e604812011-05-19 18:07:50 +00005779 (void) FormatLocaleFile(stderr,"attribute not recognized: %c\n",
5780 attribute);
cristy3ed852e2009-09-05 21:47:34 +00005781 break;
5782 }
5783 }
5784 }
cristybb503372010-05-27 20:51:26 +00005785 primitive_info->coordinates=(size_t) (q-primitive_info);
cristy3ed852e2009-09-05 21:47:34 +00005786 number_coordinates+=primitive_info->coordinates;
cristybb503372010-05-27 20:51:26 +00005787 for (i=0; i < (ssize_t) number_coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005788 {
5789 q--;
5790 q->primitive=primitive_type;
5791 if (z_count > 1)
5792 q->method=FillToBorderMethod;
5793 }
5794 q=primitive_info;
5795 return(number_coordinates);
5796}
5797
5798static void TraceRectangle(PrimitiveInfo *primitive_info,const PointInfo start,
5799 const PointInfo end)
5800{
5801 PointInfo
5802 point;
5803
5804 register PrimitiveInfo
5805 *p;
5806
cristybb503372010-05-27 20:51:26 +00005807 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005808 i;
5809
5810 p=primitive_info;
5811 TracePoint(p,start);
5812 p+=p->coordinates;
5813 point.x=start.x;
5814 point.y=end.y;
5815 TracePoint(p,point);
5816 p+=p->coordinates;
5817 TracePoint(p,end);
5818 p+=p->coordinates;
5819 point.x=end.x;
5820 point.y=start.y;
5821 TracePoint(p,point);
5822 p+=p->coordinates;
5823 TracePoint(p,start);
5824 p+=p->coordinates;
cristybb503372010-05-27 20:51:26 +00005825 primitive_info->coordinates=(size_t) (p-primitive_info);
5826 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005827 {
5828 p->primitive=primitive_info->primitive;
5829 p--;
5830 }
5831}
5832
5833static void TraceRoundRectangle(PrimitiveInfo *primitive_info,
5834 const PointInfo start,const PointInfo end,PointInfo arc)
5835{
5836 PointInfo
5837 degrees,
5838 offset,
5839 point;
5840
5841 register PrimitiveInfo
5842 *p;
5843
cristybb503372010-05-27 20:51:26 +00005844 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005845 i;
5846
5847 p=primitive_info;
5848 offset.x=fabs(end.x-start.x);
5849 offset.y=fabs(end.y-start.y);
5850 if (arc.x > (0.5*offset.x))
5851 arc.x=0.5*offset.x;
5852 if (arc.y > (0.5*offset.y))
5853 arc.y=0.5*offset.y;
5854 point.x=start.x+offset.x-arc.x;
5855 point.y=start.y+arc.y;
5856 degrees.x=270.0;
5857 degrees.y=360.0;
5858 TraceEllipse(p,point,arc,degrees);
5859 p+=p->coordinates;
5860 point.x=start.x+offset.x-arc.x;
5861 point.y=start.y+offset.y-arc.y;
5862 degrees.x=0.0;
5863 degrees.y=90.0;
5864 TraceEllipse(p,point,arc,degrees);
5865 p+=p->coordinates;
5866 point.x=start.x+arc.x;
5867 point.y=start.y+offset.y-arc.y;
5868 degrees.x=90.0;
5869 degrees.y=180.0;
5870 TraceEllipse(p,point,arc,degrees);
5871 p+=p->coordinates;
5872 point.x=start.x+arc.x;
5873 point.y=start.y+arc.y;
5874 degrees.x=180.0;
5875 degrees.y=270.0;
5876 TraceEllipse(p,point,arc,degrees);
5877 p+=p->coordinates;
5878 TracePoint(p,primitive_info->point);
5879 p+=p->coordinates;
cristybb503372010-05-27 20:51:26 +00005880 primitive_info->coordinates=(size_t) (p-primitive_info);
5881 for (i=0; i < (ssize_t) primitive_info->coordinates; i++)
cristy3ed852e2009-09-05 21:47:34 +00005882 {
5883 p->primitive=primitive_info->primitive;
5884 p--;
5885 }
5886}
5887
5888static void TraceSquareLinecap(PrimitiveInfo *primitive_info,
cristya19f1d72012-08-07 18:24:38 +00005889 const size_t number_vertices,const double offset)
cristy3ed852e2009-09-05 21:47:34 +00005890{
cristya19f1d72012-08-07 18:24:38 +00005891 double
cristy3ed852e2009-09-05 21:47:34 +00005892 distance;
5893
cristya19f1d72012-08-07 18:24:38 +00005894 register double
cristy3ed852e2009-09-05 21:47:34 +00005895 dx,
5896 dy;
5897
cristybb503372010-05-27 20:51:26 +00005898 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005899 i;
5900
cristy826a5472010-08-31 23:21:38 +00005901 ssize_t
5902 j;
5903
cristy3ed852e2009-09-05 21:47:34 +00005904 dx=0.0;
5905 dy=0.0;
cristybb503372010-05-27 20:51:26 +00005906 for (i=1; i < (ssize_t) number_vertices; i++)
cristy3ed852e2009-09-05 21:47:34 +00005907 {
5908 dx=primitive_info[0].point.x-primitive_info[i].point.x;
5909 dy=primitive_info[0].point.y-primitive_info[i].point.y;
Cristy911b5862016-06-24 17:45:06 -04005910 if ((fabs((double) dx) >= DrawEpsilon) ||
5911 (fabs((double) dy) >= DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005912 break;
5913 }
cristybb503372010-05-27 20:51:26 +00005914 if (i == (ssize_t) number_vertices)
5915 i=(ssize_t) number_vertices-1L;
cristy3ed852e2009-09-05 21:47:34 +00005916 distance=hypot((double) dx,(double) dy);
5917 primitive_info[0].point.x=(double) (primitive_info[i].point.x+
5918 dx*(distance+offset)/distance);
5919 primitive_info[0].point.y=(double) (primitive_info[i].point.y+
5920 dy*(distance+offset)/distance);
cristybb503372010-05-27 20:51:26 +00005921 for (j=(ssize_t) number_vertices-2; j >= 0; j--)
cristy3ed852e2009-09-05 21:47:34 +00005922 {
5923 dx=primitive_info[number_vertices-1].point.x-primitive_info[j].point.x;
5924 dy=primitive_info[number_vertices-1].point.y-primitive_info[j].point.y;
Cristy911b5862016-06-24 17:45:06 -04005925 if ((fabs((double) dx) >= DrawEpsilon) ||
5926 (fabs((double) dy) >= DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00005927 break;
5928 }
5929 distance=hypot((double) dx,(double) dy);
5930 primitive_info[number_vertices-1].point.x=(double) (primitive_info[j].point.x+
5931 dx*(distance+offset)/distance);
5932 primitive_info[number_vertices-1].point.y=(double) (primitive_info[j].point.y+
5933 dy*(distance+offset)/distance);
5934}
5935
5936static PrimitiveInfo *TraceStrokePolygon(const DrawInfo *draw_info,
5937 const PrimitiveInfo *primitive_info)
5938{
5939 typedef struct _LineSegment
5940 {
5941 double
5942 p,
5943 q;
5944 } LineSegment;
5945
Cristydd6065a2016-09-19 15:55:49 -04005946 double
5947 delta_theta,
5948 dot_product,
5949 mid,
5950 miterlimit;
5951
cristy3ed852e2009-09-05 21:47:34 +00005952 LineSegment
5953 dx,
5954 dy,
5955 inverse_slope,
5956 slope,
5957 theta;
5958
cristy3ed852e2009-09-05 21:47:34 +00005959 MagickBooleanType
5960 closed_path;
5961
cristy3ed852e2009-09-05 21:47:34 +00005962 PointInfo
5963 box_p[5],
5964 box_q[5],
5965 center,
5966 offset,
5967 *path_p,
5968 *path_q;
5969
5970 PrimitiveInfo
5971 *polygon_primitive,
5972 *stroke_polygon;
5973
cristybb503372010-05-27 20:51:26 +00005974 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00005975 i;
5976
cristybb503372010-05-27 20:51:26 +00005977 size_t
cristy3ed852e2009-09-05 21:47:34 +00005978 arc_segments,
5979 max_strokes,
5980 number_vertices;
5981
cristy826a5472010-08-31 23:21:38 +00005982 ssize_t
5983 j,
5984 n,
5985 p,
5986 q;
5987
cristy3ed852e2009-09-05 21:47:34 +00005988 /*
5989 Allocate paths.
5990 */
5991 number_vertices=primitive_info->coordinates;
5992 max_strokes=2*number_vertices+6*BezierQuantum+360;
5993 path_p=(PointInfo *) AcquireQuantumMemory((size_t) max_strokes,
5994 sizeof(*path_p));
5995 path_q=(PointInfo *) AcquireQuantumMemory((size_t) max_strokes,
5996 sizeof(*path_q));
5997 polygon_primitive=(PrimitiveInfo *) AcquireQuantumMemory((size_t)
5998 number_vertices+2UL,sizeof(*polygon_primitive));
5999 if ((path_p == (PointInfo *) NULL) || (path_q == (PointInfo *) NULL) ||
6000 (polygon_primitive == (PrimitiveInfo *) NULL))
6001 return((PrimitiveInfo *) NULL);
6002 (void) CopyMagickMemory(polygon_primitive,primitive_info,(size_t)
6003 number_vertices*sizeof(*polygon_primitive));
6004 closed_path=
Cristydd6065a2016-09-19 15:55:49 -04006005 (fabs(primitive_info[number_vertices-1].point.x-primitive_info[0].point.x) < DrawEpsilon) &&
6006 (fabs(primitive_info[number_vertices-1].point.y-primitive_info[0].point.y) < DrawEpsilon) ?
cristy3ed852e2009-09-05 21:47:34 +00006007 MagickTrue : MagickFalse;
6008 if ((draw_info->linejoin == RoundJoin) ||
6009 ((draw_info->linejoin == MiterJoin) && (closed_path != MagickFalse)))
6010 {
6011 polygon_primitive[number_vertices]=primitive_info[1];
6012 number_vertices++;
6013 }
6014 polygon_primitive[number_vertices].primitive=UndefinedPrimitive;
6015 /*
6016 Compute the slope for the first line segment, p.
6017 */
6018 dx.p=0.0;
6019 dy.p=0.0;
cristybb503372010-05-27 20:51:26 +00006020 for (n=1; n < (ssize_t) number_vertices; n++)
cristy3ed852e2009-09-05 21:47:34 +00006021 {
6022 dx.p=polygon_primitive[n].point.x-polygon_primitive[0].point.x;
6023 dy.p=polygon_primitive[n].point.y-polygon_primitive[0].point.y;
Cristy911b5862016-06-24 17:45:06 -04006024 if ((fabs(dx.p) >= DrawEpsilon) || (fabs(dy.p) >= DrawEpsilon))
cristy3ed852e2009-09-05 21:47:34 +00006025 break;
6026 }
cristybb503372010-05-27 20:51:26 +00006027 if (n == (ssize_t) number_vertices)
6028 n=(ssize_t) number_vertices-1L;
Cristy4280d542016-06-11 12:48:49 -04006029 slope.p=0.0;
6030 inverse_slope.p=0.0;
Cristy911b5862016-06-24 17:45:06 -04006031 if (fabs(dx.p) < DrawEpsilon)
Cristy4280d542016-06-11 12:48:49 -04006032 {
6033 if (dx.p >= 0.0)
Cristy911b5862016-06-24 17:45:06 -04006034 slope.p=dy.p < 0.0 ? -1.0/DrawEpsilon : 1.0/DrawEpsilon;
Cristy4280d542016-06-11 12:48:49 -04006035 else
Cristy911b5862016-06-24 17:45:06 -04006036 slope.p=dy.p < 0.0 ? 1.0/DrawEpsilon : -1.0/DrawEpsilon;
Cristy4280d542016-06-11 12:48:49 -04006037 }
6038 else
Cristy911b5862016-06-24 17:45:06 -04006039 if (fabs(dy.p) < DrawEpsilon)
Cristy4280d542016-06-11 12:48:49 -04006040 {
6041 if (dy.p >= 0.0)
Cristy911b5862016-06-24 17:45:06 -04006042 inverse_slope.p=dx.p < 0.0 ? -1.0/DrawEpsilon : 1.0/DrawEpsilon;
Cristy4280d542016-06-11 12:48:49 -04006043 else
Cristy911b5862016-06-24 17:45:06 -04006044 inverse_slope.p=dx.p < 0.0 ? 1.0/DrawEpsilon : -1.0/DrawEpsilon;
Cristy4280d542016-06-11 12:48:49 -04006045 }
6046 else
6047 {
6048 slope.p=dy.p/dx.p;
6049 inverse_slope.p=(-1.0/slope.p);
6050 }
cristy3ed852e2009-09-05 21:47:34 +00006051 mid=ExpandAffine(&draw_info->affine)*draw_info->stroke_width/2.0;
Cristydd6065a2016-09-19 15:55:49 -04006052 miterlimit=(double) (draw_info->miterlimit*draw_info->miterlimit*mid*mid);
cristy3ed852e2009-09-05 21:47:34 +00006053 if ((draw_info->linecap == SquareCap) && (closed_path == MagickFalse))
6054 TraceSquareLinecap(polygon_primitive,number_vertices,mid);
6055 offset.x=sqrt((double) (mid*mid/(inverse_slope.p*inverse_slope.p+1.0)));
6056 offset.y=(double) (offset.x*inverse_slope.p);
6057 if ((dy.p*offset.x-dx.p*offset.y) > 0.0)
6058 {
6059 box_p[0].x=polygon_primitive[0].point.x-offset.x;
6060 box_p[0].y=polygon_primitive[0].point.y-offset.x*inverse_slope.p;
6061 box_p[1].x=polygon_primitive[n].point.x-offset.x;
6062 box_p[1].y=polygon_primitive[n].point.y-offset.x*inverse_slope.p;
6063 box_q[0].x=polygon_primitive[0].point.x+offset.x;
6064 box_q[0].y=polygon_primitive[0].point.y+offset.x*inverse_slope.p;
6065 box_q[1].x=polygon_primitive[n].point.x+offset.x;
6066 box_q[1].y=polygon_primitive[n].point.y+offset.x*inverse_slope.p;
6067 }
6068 else
6069 {
6070 box_p[0].x=polygon_primitive[0].point.x+offset.x;
6071 box_p[0].y=polygon_primitive[0].point.y+offset.y;
6072 box_p[1].x=polygon_primitive[n].point.x+offset.x;
6073 box_p[1].y=polygon_primitive[n].point.y+offset.y;
6074 box_q[0].x=polygon_primitive[0].point.x-offset.x;
6075 box_q[0].y=polygon_primitive[0].point.y-offset.y;
6076 box_q[1].x=polygon_primitive[n].point.x-offset.x;
6077 box_q[1].y=polygon_primitive[n].point.y-offset.y;
6078 }
6079 /*
6080 Create strokes for the line join attribute: bevel, miter, round.
6081 */
6082 p=0;
6083 q=0;
6084 path_q[p++]=box_q[0];
6085 path_p[q++]=box_p[0];
cristybb503372010-05-27 20:51:26 +00006086 for (i=(ssize_t) n+1; i < (ssize_t) number_vertices; i++)
cristy3ed852e2009-09-05 21:47:34 +00006087 {
6088 /*
6089 Compute the slope for this line segment, q.
6090 */
6091 dx.q=polygon_primitive[i].point.x-polygon_primitive[n].point.x;
6092 dy.q=polygon_primitive[i].point.y-polygon_primitive[n].point.y;
6093 dot_product=dx.q*dx.q+dy.q*dy.q;
6094 if (dot_product < 0.25)
6095 continue;
Cristy4280d542016-06-11 12:48:49 -04006096 slope.q=0.0;
6097 inverse_slope.q=0.0;
Cristy911b5862016-06-24 17:45:06 -04006098 if (fabs(dx.q) < DrawEpsilon)
Cristy48bcfe02016-07-13 18:05:02 -04006099 {
6100 if (dx.q >= 0.0)
Cristy911b5862016-06-24 17:45:06 -04006101 slope.q=dy.q < 0.0 ? -1.0/DrawEpsilon : 1.0/DrawEpsilon;
Cristy4280d542016-06-11 12:48:49 -04006102 else
Cristy911b5862016-06-24 17:45:06 -04006103 slope.q=dy.q < 0.0 ? 1.0/DrawEpsilon : -1.0/DrawEpsilon;
Cristy4280d542016-06-11 12:48:49 -04006104 }
Cristy48bcfe02016-07-13 18:05:02 -04006105 else
Cristy911b5862016-06-24 17:45:06 -04006106 if (fabs(dy.q) < DrawEpsilon)
Cristy48bcfe02016-07-13 18:05:02 -04006107 {
Cristy4280d542016-06-11 12:48:49 -04006108 if (dy.q >= 0.0)
Cristy911b5862016-06-24 17:45:06 -04006109 inverse_slope.q=dx.q < 0.0 ? -1.0/DrawEpsilon : 1.0/DrawEpsilon;
Cristy4280d542016-06-11 12:48:49 -04006110 else
Cristy911b5862016-06-24 17:45:06 -04006111 inverse_slope.q=dx.q < 0.0 ? 1.0/DrawEpsilon : -1.0/DrawEpsilon;
Cristy4280d542016-06-11 12:48:49 -04006112 }
6113 else
Cristy48bcfe02016-07-13 18:05:02 -04006114 {
Cristy4280d542016-06-11 12:48:49 -04006115 slope.q=dy.q/dx.q;
6116 inverse_slope.q=(-1.0/slope.q);
6117 }
cristy3ed852e2009-09-05 21:47:34 +00006118 offset.x=sqrt((double) (mid*mid/(inverse_slope.q*inverse_slope.q+1.0)));
6119 offset.y=(double) (offset.x*inverse_slope.q);
6120 dot_product=dy.q*offset.x-dx.q*offset.y;
6121 if (dot_product > 0.0)
6122 {
6123 box_p[2].x=polygon_primitive[n].point.x-offset.x;
6124 box_p[2].y=polygon_primitive[n].point.y-offset.y;
6125 box_p[3].x=polygon_primitive[i].point.x-offset.x;
6126 box_p[3].y=polygon_primitive[i].point.y-offset.y;
6127 box_q[2].x=polygon_primitive[n].point.x+offset.x;
6128 box_q[2].y=polygon_primitive[n].point.y+offset.y;
6129 box_q[3].x=polygon_primitive[i].point.x+offset.x;
6130 box_q[3].y=polygon_primitive[i].point.y+offset.y;
6131 }
6132 else
6133 {
6134 box_p[2].x=polygon_primitive[n].point.x+offset.x;
6135 box_p[2].y=polygon_primitive[n].point.y+offset.y;
6136 box_p[3].x=polygon_primitive[i].point.x+offset.x;
6137 box_p[3].y=polygon_primitive[i].point.y+offset.y;
6138 box_q[2].x=polygon_primitive[n].point.x-offset.x;
6139 box_q[2].y=polygon_primitive[n].point.y-offset.y;
6140 box_q[3].x=polygon_primitive[i].point.x-offset.x;
6141 box_q[3].y=polygon_primitive[i].point.y-offset.y;
6142 }
Cristy911b5862016-06-24 17:45:06 -04006143 if (fabs((double) (slope.p-slope.q)) < DrawEpsilon)
cristy3ed852e2009-09-05 21:47:34 +00006144 {
6145 box_p[4]=box_p[1];
6146 box_q[4]=box_q[1];
6147 }
6148 else
6149 {
6150 box_p[4].x=(double) ((slope.p*box_p[0].x-box_p[0].y-slope.q*box_p[3].x+
6151 box_p[3].y)/(slope.p-slope.q));
6152 box_p[4].y=(double) (slope.p*(box_p[4].x-box_p[0].x)+box_p[0].y);
6153 box_q[4].x=(double) ((slope.p*box_q[0].x-box_q[0].y-slope.q*box_q[3].x+
6154 box_q[3].y)/(slope.p-slope.q));
6155 box_q[4].y=(double) (slope.p*(box_q[4].x-box_q[0].x)+box_q[0].y);
6156 }
cristybb503372010-05-27 20:51:26 +00006157 if (q >= (ssize_t) (max_strokes-6*BezierQuantum-360))
cristy3ed852e2009-09-05 21:47:34 +00006158 {
Cristy726812f2016-05-04 19:09:35 -04006159 if (~max_strokes < (6*BezierQuantum+360))
6160 {
6161 path_p=(PointInfo *) RelinquishMagickMemory(path_p);
6162 path_q=(PointInfo *) RelinquishMagickMemory(path_q);
6163 }
6164 else
6165 {
6166 max_strokes+=6*BezierQuantum+360;
6167 path_p=(PointInfo *) ResizeQuantumMemory(path_p,max_strokes,
6168 sizeof(*path_p));
6169 path_q=(PointInfo *) ResizeQuantumMemory(path_q,max_strokes,
6170 sizeof(*path_q));
6171 }
6172 if ((path_p == (PointInfo *) NULL) || (path_q == (PointInfo *) NULL))
6173 {
6174 if (path_p != (PointInfo *) NULL)
6175 path_p=(PointInfo *) RelinquishMagickMemory(path_p);
6176 if (path_q != (PointInfo *) NULL)
6177 path_q=(PointInfo *) RelinquishMagickMemory(path_q);
6178 polygon_primitive=(PrimitiveInfo *)
6179 RelinquishMagickMemory(polygon_primitive);
6180 return((PrimitiveInfo *) NULL);
6181 }
cristy3ed852e2009-09-05 21:47:34 +00006182 }
6183 dot_product=dx.q*dy.p-dx.p*dy.q;
6184 if (dot_product <= 0.0)
6185 switch (draw_info->linejoin)
6186 {
6187 case BevelJoin:
6188 {
6189 path_q[q++]=box_q[1];
6190 path_q[q++]=box_q[2];
6191 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6192 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6193 if (dot_product <= miterlimit)
6194 path_p[p++]=box_p[4];
6195 else
6196 {
6197 path_p[p++]=box_p[1];
6198 path_p[p++]=box_p[2];
6199 }
6200 break;
6201 }
6202 case MiterJoin:
6203 {
6204 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6205 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6206 if (dot_product <= miterlimit)
6207 {
6208 path_q[q++]=box_q[4];
6209 path_p[p++]=box_p[4];
6210 }
6211 else
6212 {
6213 path_q[q++]=box_q[1];
6214 path_q[q++]=box_q[2];
6215 path_p[p++]=box_p[1];
6216 path_p[p++]=box_p[2];
6217 }
6218 break;
6219 }
6220 case RoundJoin:
6221 {
6222 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6223 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6224 if (dot_product <= miterlimit)
6225 path_p[p++]=box_p[4];
6226 else
6227 {
6228 path_p[p++]=box_p[1];
6229 path_p[p++]=box_p[2];
6230 }
6231 center=polygon_primitive[n].point;
6232 theta.p=atan2(box_q[1].y-center.y,box_q[1].x-center.x);
6233 theta.q=atan2(box_q[2].y-center.y,box_q[2].x-center.x);
6234 if (theta.q < theta.p)
Cristydd6065a2016-09-19 15:55:49 -04006235 theta.q+=2.0*MagickPI;
cristybb503372010-05-27 20:51:26 +00006236 arc_segments=(size_t) ceil((double) ((theta.q-theta.p)/
cristy3ed852e2009-09-05 21:47:34 +00006237 (2.0*sqrt((double) (1.0/mid)))));
6238 path_q[q].x=box_q[1].x;
6239 path_q[q].y=box_q[1].y;
6240 q++;
cristybb503372010-05-27 20:51:26 +00006241 for (j=1; j < (ssize_t) arc_segments; j++)
cristy3ed852e2009-09-05 21:47:34 +00006242 {
cristya19f1d72012-08-07 18:24:38 +00006243 delta_theta=(double) (j*(theta.q-theta.p)/arc_segments);
cristy3ed852e2009-09-05 21:47:34 +00006244 path_q[q].x=(double) (center.x+mid*cos(fmod((double)
6245 (theta.p+delta_theta),DegreesToRadians(360.0))));
6246 path_q[q].y=(double) (center.y+mid*sin(fmod((double)
6247 (theta.p+delta_theta),DegreesToRadians(360.0))));
6248 q++;
6249 }
6250 path_q[q++]=box_q[2];
6251 break;
6252 }
6253 default:
6254 break;
6255 }
6256 else
6257 switch (draw_info->linejoin)
6258 {
6259 case BevelJoin:
6260 {
6261 path_p[p++]=box_p[1];
6262 path_p[p++]=box_p[2];
6263 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6264 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6265 if (dot_product <= miterlimit)
6266 path_q[q++]=box_q[4];
6267 else
6268 {
6269 path_q[q++]=box_q[1];
6270 path_q[q++]=box_q[2];
6271 }
6272 break;
6273 }
6274 case MiterJoin:
6275 {
6276 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6277 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6278 if (dot_product <= miterlimit)
6279 {
6280 path_q[q++]=box_q[4];
6281 path_p[p++]=box_p[4];
6282 }
6283 else
6284 {
6285 path_q[q++]=box_q[1];
6286 path_q[q++]=box_q[2];
6287 path_p[p++]=box_p[1];
6288 path_p[p++]=box_p[2];
6289 }
6290 break;
6291 }
6292 case RoundJoin:
6293 {
6294 dot_product=(box_q[4].x-box_p[4].x)*(box_q[4].x-box_p[4].x)+
6295 (box_q[4].y-box_p[4].y)*(box_q[4].y-box_p[4].y);
6296 if (dot_product <= miterlimit)
6297 path_q[q++]=box_q[4];
6298 else
6299 {
6300 path_q[q++]=box_q[1];
6301 path_q[q++]=box_q[2];
6302 }
6303 center=polygon_primitive[n].point;
6304 theta.p=atan2(box_p[1].y-center.y,box_p[1].x-center.x);
6305 theta.q=atan2(box_p[2].y-center.y,box_p[2].x-center.x);
6306 if (theta.p < theta.q)
Cristydd6065a2016-09-19 15:55:49 -04006307 theta.p+=2.0*MagickPI;
cristybb503372010-05-27 20:51:26 +00006308 arc_segments=(size_t) ceil((double) ((theta.p-theta.q)/
cristy3ed852e2009-09-05 21:47:34 +00006309 (2.0*sqrt((double) (1.0/mid)))));
6310 path_p[p++]=box_p[1];
cristybb503372010-05-27 20:51:26 +00006311 for (j=1; j < (ssize_t) arc_segments; j++)
cristy3ed852e2009-09-05 21:47:34 +00006312 {
cristya19f1d72012-08-07 18:24:38 +00006313 delta_theta=(double) (j*(theta.q-theta.p)/arc_segments);
cristy3ed852e2009-09-05 21:47:34 +00006314 path_p[p].x=(double) (center.x+mid*cos(fmod((double)
6315 (theta.p+delta_theta),DegreesToRadians(360.0))));
6316 path_p[p].y=(double) (center.y+mid*sin(fmod((double)
6317 (theta.p+delta_theta),DegreesToRadians(360.0))));
6318 p++;
6319 }
6320 path_p[p++]=box_p[2];
6321 break;
6322 }
6323 default:
6324 break;
6325 }
6326 slope.p=slope.q;
6327 inverse_slope.p=inverse_slope.q;
6328 box_p[0]=box_p[2];
6329 box_p[1]=box_p[3];
6330 box_q[0]=box_q[2];
6331 box_q[1]=box_q[3];
6332 dx.p=dx.q;
6333 dy.p=dy.q;
6334 n=i;
6335 }
6336 path_p[p++]=box_p[1];
6337 path_q[q++]=box_q[1];
6338 /*
6339 Trace stroked polygon.
6340 */
6341 stroke_polygon=(PrimitiveInfo *) AcquireQuantumMemory((size_t)
6342 (p+q+2UL*closed_path+2UL),sizeof(*stroke_polygon));
6343 if (stroke_polygon != (PrimitiveInfo *) NULL)
6344 {
cristybb503372010-05-27 20:51:26 +00006345 for (i=0; i < (ssize_t) p; i++)
cristy3ed852e2009-09-05 21:47:34 +00006346 {
6347 stroke_polygon[i]=polygon_primitive[0];
6348 stroke_polygon[i].point=path_p[i];
6349 }
6350 if (closed_path != MagickFalse)
6351 {
6352 stroke_polygon[i]=polygon_primitive[0];
6353 stroke_polygon[i].point=stroke_polygon[0].point;
6354 i++;
6355 }
cristybb503372010-05-27 20:51:26 +00006356 for ( ; i < (ssize_t) (p+q+closed_path); i++)
cristy3ed852e2009-09-05 21:47:34 +00006357 {
6358 stroke_polygon[i]=polygon_primitive[0];
6359 stroke_polygon[i].point=path_q[p+q+closed_path-(i+1)];
6360 }
6361 if (closed_path != MagickFalse)
6362 {
6363 stroke_polygon[i]=polygon_primitive[0];
6364 stroke_polygon[i].point=stroke_polygon[p+closed_path].point;
6365 i++;
6366 }
6367 stroke_polygon[i]=polygon_primitive[0];
6368 stroke_polygon[i].point=stroke_polygon[0].point;
6369 i++;
6370 stroke_polygon[i].primitive=UndefinedPrimitive;
cristybb503372010-05-27 20:51:26 +00006371 stroke_polygon[0].coordinates=(size_t) (p+q+2*closed_path+1);
cristy3ed852e2009-09-05 21:47:34 +00006372 }
6373 path_p=(PointInfo *) RelinquishMagickMemory(path_p);
6374 path_q=(PointInfo *) RelinquishMagickMemory(path_q);
6375 polygon_primitive=(PrimitiveInfo *) RelinquishMagickMemory(polygon_primitive);
6376 return(stroke_polygon);
6377}