2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6 % DDDD RRRR AAA W W IIIII N N GGGG %
7 % D D R R A A W W I NN N G %
8 % D D RRRR AAAAA W W I N N N G GG %
9 % D D R R A A W W W I N NN G G %
10 % DDDD R R A A W W IIIII N N GGG %
14 % W W W AAAAA N N N D D %
15 % WW WW A A N NN D D %
19 % MagickWand Image Vector Drawing Methods %
26 % Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
27 % dedicated to making software imaging solutions freely available. %
29 % You may not use this file except in compliance with the License. You may %
30 % obtain a copy of the License at %
32 % http://www.imagemagick.org/script/license.php %
34 % Unless required by applicable law or agreed to in writing, software %
35 % distributed under the License is distributed on an "AS IS" BASIS, %
36 % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
37 % See the License for the specific language governing permissions and %
38 % limitations under the License. %
40 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49 #include "MagickWand/studio.h"
50 #include "MagickWand/MagickWand.h"
51 #include "MagickWand/magick-wand-private.h"
52 #include "MagickWand/wand.h"
53 #include "MagickCore/string-private.h"
58 #define DRAW_BINARY_IMPLEMENTATION 0
60 #define CurrentContext (wand->graphic_context[wand->index])
61 #define DrawingWandId "DrawingWand"
62 #define ThrowDrawException(severity,tag,reason) (void) ThrowMagickException( \
63 wand->exception,GetMagickModule(),severity,tag,"'%s'",reason);
71 PathCloseOperation, /* Z|z (none) */
72 PathCurveToOperation, /* C|c (x1 y1 x2 y2 x y)+ */
73 PathCurveToQuadraticBezierOperation, /* Q|q (x1 y1 x y)+ */
74 PathCurveToQuadraticBezierSmoothOperation, /* T|t (x y)+ */
75 PathCurveToSmoothOperation, /* S|s (x2 y2 x y)+ */
76 PathEllipticArcOperation, /* A|a (rx ry x-axis-rotation large-arc-flag sweep-flag x y)+ */
77 PathLineToHorizontalOperation, /* H|h x+ */
78 PathLineToOperation, /* L|l (x y)+ */
79 PathLineToVerticalOperation, /* V|v y+ */
80 PathMoveToOperation /* M|m (x y)+ */
98 /* Support structures */
105 /* MVG output string and housekeeping */
110 mvg_alloc, /* total allocated memory */
111 mvg_length; /* total MVG length */
114 mvg_width; /* current line width */
116 /* Pattern support */
128 index; /* array index */
134 filter_off; /* true if not filtering attributes */
136 /* Pretty-printing depth */
138 indent_depth; /* number of left-hand pad characters */
140 /* Path operation support */
155 /* Vector table for invoking subordinate renderers */
158 DrawingWand *(*DestroyDrawingWand) (DrawingWand *);
159 void (*DrawAnnotation)(DrawingWand *,const double,const double,
160 const unsigned char *);
161 void (*DrawArc)(DrawingWand *,const double,const double,const double,
162 const double,const double,const double);
163 void (*DrawBezier)(DrawingWand *,const size_t,const PointInfo *);
164 void (*DrawCircle)(DrawingWand *,const double,const double,const double,
166 void (*DrawColor)(DrawingWand *,const double,const double,const PaintMethod);
167 void (*DrawComment)(DrawingWand *,const char *);
168 void (*DrawEllipse)(DrawingWand *,const double,const double,const double,
169 const double,const double,const double);
170 MagickBooleanType (*DrawComposite)(DrawingWand *,const CompositeOperator,
171 const double,const double,const double,const double,const Image *);
172 void (*DrawLine)(DrawingWand *,const double,const double,const double,
174 void (*DrawMatte)(DrawingWand *,const double,const double,const PaintMethod);
175 void (*DrawPathClose)(DrawingWand *);
176 void (*DrawPathCurveToAbsolute)(DrawingWand *,const double,const double,
177 const double,const double,const double,const double);
178 void (*DrawPathCurveToRelative)(DrawingWand *,const double,const double,
179 const double,const double,const double,const double);
180 void (*DrawPathCurveToQuadraticBezierAbsolute)(DrawingWand *,const double,
181 const double,const double,const double);
182 void (*DrawPathCurveToQuadraticBezierRelative)(DrawingWand *,const double,
183 const double,const double,const double);
184 void (*DrawPathCurveToQuadraticBezierSmoothAbsolute)(DrawingWand *,
185 const double,const double);
186 void (*DrawPathCurveToQuadraticBezierSmoothRelative)(DrawingWand *,
187 const double,const double);
188 void (*DrawPathCurveToSmoothAbsolute)(DrawingWand *,const double,
189 const double,const double,const double);
190 void (*DrawPathCurveToSmoothRelative)(DrawingWand *,const double,
191 const double,const double,const double);
192 void (*DrawPathEllipticArcAbsolute)(DrawingWand *,const double,const double,
193 const double,const MagickBooleanType,const MagickBooleanType,const double,
195 void (*DrawPathEllipticArcRelative)(DrawingWand *,const double,const double,
196 const double,const MagickBooleanType,const MagickBooleanType,const double,
198 void (*DrawPathFinish)(DrawingWand *);
199 void (*DrawPathLineToAbsolute)(DrawingWand *,const double,const double);
200 void (*DrawPathLineToRelative)(DrawingWand *,const double,const double);
201 void (*DrawPathLineToHorizontalAbsolute)(DrawingWand *,const double);
202 void (*DrawPathLineToHorizontalRelative)(DrawingWand *,const double);
203 void (*DrawPathLineToVerticalAbsolute)(DrawingWand *,const double);
204 void (*DrawPathLineToVerticalRelative)(DrawingWand *,const double);
205 void (*DrawPathMoveToAbsolute)(DrawingWand *,const double,const double);
206 void (*DrawPathMoveToRelative)(DrawingWand *,const double,const double);
207 void (*DrawPathStart)(DrawingWand *);
208 void (*DrawPoint)(DrawingWand *,const double,const double);
209 void (*DrawPolygon)(DrawingWand *,const size_t,const PointInfo *);
210 void (*DrawPolyline)(DrawingWand *,const size_t,const PointInfo *);
211 void (*DrawPopClipPath)(DrawingWand *);
212 void (*DrawPopDefs)(DrawingWand *);
213 MagickBooleanType (*DrawPopPattern)(DrawingWand *);
214 void (*DrawPushClipPath)(DrawingWand *,const char *);
215 void (*DrawPushDefs)(DrawingWand *);
216 MagickBooleanType (*DrawPushPattern)(DrawingWand *,const char *,const double,
217 const double,const double,const double);
218 void (*DrawRectangle)(DrawingWand *,const double,const double,const double,
220 void (*DrawRoundRectangle)(DrawingWand *,double,double,double,double,
222 void (*DrawAffine)(DrawingWand *,const AffineMatrix *);
223 MagickBooleanType (*DrawSetClipPath)(DrawingWand *,const char *);
224 void (*DrawSetBorderColor)(DrawingWand *,const PixelWand *);
225 void (*DrawSetClipRule)(DrawingWand *,const FillRule);
226 void (*DrawSetClipUnits)(DrawingWand *,const ClipPathUnits);
227 void (*DrawSetFillColor)(DrawingWand *,const PixelWand *);
228 void (*DrawSetFillRule)(DrawingWand *,const FillRule);
229 MagickBooleanType (*DrawSetFillPatternURL)(DrawingWand *,const char *);
230 MagickBooleanType (*DrawSetFont)(DrawingWand *,const char *);
231 MagickBooleanType (*DrawSetFontFamily)(DrawingWand *,const char *);
232 void (*DrawSetTextKerning)(DrawingWand *,const double);
233 void (*DrawSetTextInterwordSpacing)(DrawingWand *,const double);
234 double (*DrawGetTextKerning)(DrawingWand *);
235 double (*DrawGetTextInterwordSpacing)(DrawingWand *);
236 void (*DrawSetFontSize)(DrawingWand *,const double);
237 void (*DrawSetFontStretch)(DrawingWand *,const StretchType);
238 void (*DrawSetFontStyle)(DrawingWand *,const StyleType);
239 void (*DrawSetFontWeight)(DrawingWand *,const size_t);
240 void (*DrawSetGravity)(DrawingWand *,const GravityType);
241 void (*DrawRotate)(DrawingWand *,const double);
242 void (*DrawScale)(DrawingWand *,const double,const double);
243 void (*DrawSkewX)(DrawingWand *,const double);
244 void (*DrawSkewY)(DrawingWand *,const double);
245 void (*DrawSetStrokeAntialias)(DrawingWand *,const MagickBooleanType);
246 void (*DrawSetStrokeColor)(DrawingWand *,const PixelWand *);
247 MagickBooleanType (*DrawSetStrokeDashArray)(DrawingWand *,const double *);
248 void (*DrawSetStrokeDashOffset)(DrawingWand *,const double);
249 void (*DrawSetStrokeLineCap)(DrawingWand *,const LineCap);
250 void (*DrawSetStrokeLineJoin)(DrawingWand *,const LineJoin);
251 void (*DrawSetStrokeMiterLimit)(DrawingWand *,const size_t);
252 MagickBooleanType (*DrawSetStrokePatternURL)(DrawingWand *,const char *);
253 void (*DrawSetStrokeWidth)(DrawingWand *,const double);
254 void (*DrawSetTextAntialias)(DrawingWand *,const MagickBooleanType);
255 void (*DrawSetTextDecoration)(DrawingWand *,const DecorationType);
256 void (*DrawSetTextUnderColor)(DrawingWand *,const PixelWand *);
257 void (*DrawTranslate)(DrawingWand *,const double,const double);
258 void (*DrawSetViewbox)(DrawingWand *,const double,const double,
259 const double,const double);
260 void (*PeekDrawingWand)(DrawingWand *);
261 MagickBooleanType (*PopDrawingWand)(DrawingWand *);
262 MagickBooleanType (*PushDrawingWand)(DrawingWand *);
266 Forward declarations.
269 MvgPrintf(DrawingWand *,const char *,...) wand_attribute((format
271 MvgAutoWrapPrintf(DrawingWand *,const char *,...) wand_attribute((format
275 MvgAppendColor(DrawingWand *,const PixelInfo *);
278 "Printf" for MVG commands
280 static int MvgPrintf(DrawingWand *wand,const char *format,...)
285 if (wand->debug != MagickFalse)
286 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",format);
287 assert(wand != (DrawingWand *) NULL);
288 assert(wand->signature == WandSignature);
289 extent=20UL*MaxTextExtent;
290 if (wand->mvg == (char *) NULL)
292 wand->mvg=(char *) AcquireQuantumMemory(extent,sizeof(*wand->mvg));
293 if (wand->mvg == (char *) NULL)
295 ThrowDrawException(ResourceLimitError,"MemoryAllocationFailed",
299 wand->mvg_alloc=extent;
302 if (wand->mvg_alloc < (wand->mvg_length+10*MaxTextExtent))
304 extent+=wand->mvg_alloc;
305 wand->mvg=(char *) ResizeQuantumMemory(wand->mvg,extent,
307 if (wand->mvg == (char *) NULL)
309 ThrowDrawException(ResourceLimitError,"MemoryAllocationFailed",
313 wand->mvg_alloc=extent;
325 while (wand->mvg_width < wand->indent_depth)
327 wand->mvg[wand->mvg_length]=' ';
331 wand->mvg[wand->mvg_length]='\0';
333 offset=(ssize_t) wand->mvg_alloc-wand->mvg_length-1;
336 va_start(argp,format);
337 #if defined(MAGICKCORE_HAVE_VSNPRINTF)
338 count=vsnprintf(wand->mvg+wand->mvg_length,(size_t) offset,format,argp);
340 count=vsprintf(wand->mvg+wand->mvg_length,format,argp);
344 if ((count < 0) || (count > (int) offset))
345 ThrowDrawException(DrawError,"UnableToPrint",format)
348 wand->mvg_length+=count;
349 wand->mvg_width+=count;
351 wand->mvg[wand->mvg_length]='\0';
352 if ((wand->mvg_length > 1) && (wand->mvg[wand->mvg_length-1] == '\n'))
354 assert((wand->mvg_length+1) < wand->mvg_alloc);
359 static int MvgAutoWrapPrintf(DrawingWand *wand,const char *format,...)
362 buffer[MaxTextExtent];
370 va_start(argp,format);
371 #if defined(MAGICKCORE_HAVE_VSNPRINTF)
372 count=vsnprintf(buffer,sizeof(buffer)-1,format,argp);
374 count=vsprintf(buffer,format,argp);
377 buffer[sizeof(buffer)-1]='\0';
379 ThrowDrawException(DrawError,"UnableToPrint",format)
382 if (((wand->mvg_width + count) > 78) && (buffer[count-1] != '\n'))
383 (void) MvgPrintf(wand, "\n");
384 (void) MvgPrintf(wand,"%s",buffer);
389 static void MvgAppendColor(DrawingWand *wand,const PixelInfo *packet)
391 if ((packet->red == 0) && (packet->green == 0) && (packet->blue == 0) &&
392 (packet->alpha == (Quantum) TransparentAlpha))
393 (void) MvgPrintf(wand,"none");
397 tuple[MaxTextExtent];
402 GetPixelInfo(wand->image,&pixel);
403 pixel.colorspace=sRGBColorspace;
404 pixel.alpha_trait=packet->alpha != OpaqueAlpha ? BlendPixelTrait :
406 pixel.red=(double) packet->red;
407 pixel.green=(double) packet->green;
408 pixel.blue=(double) packet->blue;
409 pixel.alpha=(double) packet->alpha;
410 GetColorTuple(&pixel,MagickTrue,tuple);
411 (void) MvgPrintf(wand,"%s",tuple);
415 static void MvgAppendPointsCommand(DrawingWand *wand,const char *command,
416 const size_t number_coordinates,const PointInfo *coordinates)
424 (void) MvgPrintf(wand,"%s",command);
425 for (i=number_coordinates, coordinate=coordinates; i != 0; i--)
427 (void) MvgAutoWrapPrintf(wand," %g %g",coordinate->x,coordinate->y);
430 (void) MvgPrintf(wand, "\n");
433 static void AdjustAffine(DrawingWand *wand,const AffineMatrix *affine)
435 assert(wand != (DrawingWand *) NULL);
436 assert(wand->signature == WandSignature);
437 if (wand->debug != MagickFalse)
438 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
439 if ((affine->sx != 1.0) || (affine->rx != 0.0) || (affine->ry != 0.0) ||
440 (affine->sy != 1.0) || (affine->tx != 0.0) || (affine->ty != 0.0))
445 current=CurrentContext->affine;
446 CurrentContext->affine.sx=affine->sx*current.sx+affine->ry*current.rx;
447 CurrentContext->affine.rx=affine->rx*current.sx+affine->sy*current.rx;
448 CurrentContext->affine.ry=affine->sx*current.ry+affine->ry*current.sy;
449 CurrentContext->affine.sy=affine->rx*current.ry+affine->sy*current.sy;
450 CurrentContext->affine.tx=affine->sx*current.tx+affine->ry*current.ty+
452 CurrentContext->affine.ty=affine->rx*current.tx+affine->sy*current.ty+
458 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
462 % C l e a r D r a w i n g W a n d %
466 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
468 % ClearDrawingWand() clears resources associated with the drawing wand.
470 % The format of the ClearDrawingWand method is:
472 % void ClearDrawingWand(DrawingWand *wand)
474 % A description of each parameter follows:
476 % o wand: the drawing wand to clear.
479 WandExport void ClearDrawingWand(DrawingWand *wand)
481 assert(wand != (DrawingWand *) NULL);
482 assert(wand->signature == WandSignature);
483 if (wand->debug != MagickFalse)
484 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
485 for ( ; wand->index > 0; wand->index--)
486 CurrentContext=DestroyDrawInfo(CurrentContext);
487 CurrentContext=DestroyDrawInfo(CurrentContext);
488 wand->graphic_context=(DrawInfo **) RelinquishMagickMemory(
489 wand->graphic_context);
490 if (wand->pattern_id != (char *) NULL)
491 wand->pattern_id=DestroyString(wand->pattern_id);
492 wand->mvg=DestroyString(wand->mvg);
493 if ((wand->destroy != MagickFalse) && (wand->image != (Image *) NULL))
494 wand->image=DestroyImage(wand->image);
496 wand->image=(Image *) NULL;
497 wand->mvg=(char *) NULL;
501 wand->pattern_id=(char *) NULL;
502 wand->pattern_offset=0;
503 wand->pattern_bounds.x=0;
504 wand->pattern_bounds.y=0;
505 wand->pattern_bounds.width=0;
506 wand->pattern_bounds.height=0;
508 wand->graphic_context=(DrawInfo **) AcquireMagickMemory(
509 sizeof(*wand->graphic_context));
510 if (wand->graphic_context == (DrawInfo **) NULL)
512 ThrowDrawException(ResourceLimitError,"MemoryAllocationFailed",
516 CurrentContext=CloneDrawInfo((ImageInfo *) NULL,(DrawInfo *) NULL);
517 wand->filter_off=MagickTrue;
518 wand->indent_depth=0;
519 wand->path_operation=PathDefaultOperation;
520 wand->path_mode=DefaultPathMode;
521 wand->image=AcquireImage((const ImageInfo *) NULL,wand->exception);
522 ClearMagickException(wand->exception);
523 wand->destroy=MagickTrue;
524 wand->debug=IsEventLogging();
528 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
532 % C l o n e D r a w i n g W a n d %
536 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
538 % CloneDrawingWand() makes an exact copy of the specified wand.
540 % The format of the CloneDrawingWand method is:
542 % DrawingWand *CloneDrawingWand(const DrawingWand *wand)
544 % A description of each parameter follows:
546 % o wand: the magick wand.
549 WandExport DrawingWand *CloneDrawingWand(const DrawingWand *wand)
557 assert(wand != (DrawingWand *) NULL);
558 assert(wand->signature == WandSignature);
559 if (wand->debug != MagickFalse)
560 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
561 clone_wand=(DrawingWand *) AcquireMagickMemory(sizeof(*clone_wand));
562 if (clone_wand == (DrawingWand *) NULL)
563 ThrowWandFatalException(ResourceLimitFatalError,
564 "MemoryAllocationFailed",GetExceptionMessage(errno));
565 (void) ResetMagickMemory(clone_wand,0,sizeof(*clone_wand));
566 clone_wand->id=AcquireWandId();
567 (void) FormatLocaleString(clone_wand->name,MaxTextExtent,"DrawingWand-%.20g",
568 (double) clone_wand->id);
569 clone_wand->exception=AcquireExceptionInfo();
570 InheritException(clone_wand->exception,wand->exception);
571 clone_wand->mvg=AcquireString(wand->mvg);
572 clone_wand->mvg_length=strlen(clone_wand->mvg);
573 clone_wand->mvg_alloc=wand->mvg_length+1;
574 clone_wand->mvg_width=wand->mvg_width;
575 clone_wand->pattern_id=AcquireString(wand->pattern_id);
576 clone_wand->pattern_offset=wand->pattern_offset;
577 clone_wand->pattern_bounds=wand->pattern_bounds;
578 clone_wand->index=wand->index;
579 clone_wand->graphic_context=(DrawInfo **) AcquireQuantumMemory((size_t)
580 wand->index+1UL,sizeof(*wand->graphic_context));
581 if (clone_wand->graphic_context == (DrawInfo **) NULL)
582 ThrowWandFatalException(ResourceLimitFatalError,"MemoryAllocationFailed",
583 GetExceptionMessage(errno));
584 for (i=0; i <= (ssize_t) wand->index; i++)
585 clone_wand->graphic_context[i]=
586 CloneDrawInfo((ImageInfo *) NULL,wand->graphic_context[i]);
587 clone_wand->filter_off=wand->filter_off;
588 clone_wand->indent_depth=wand->indent_depth;
589 clone_wand->path_operation=wand->path_operation;
590 clone_wand->path_mode=wand->path_mode;
591 clone_wand->image=wand->image;
592 if (wand->image != (Image *) NULL)
593 clone_wand->image=CloneImage(wand->image,0,0,MagickTrue,
594 clone_wand->exception);
595 clone_wand->destroy=MagickTrue;
596 clone_wand->debug=IsEventLogging();
597 if (clone_wand->debug != MagickFalse)
598 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",clone_wand->name);
599 clone_wand->signature=WandSignature;
604 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
608 % D e s t r o y D r a w i n g W a n d %
612 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
614 % DestroyDrawingWand() frees all resources associated with the drawing wand.
615 % Once the drawing wand has been freed, it should not be used and further
616 % unless it re-allocated.
618 % The format of the DestroyDrawingWand method is:
620 % DrawingWand *DestroyDrawingWand(DrawingWand *wand)
622 % A description of each parameter follows:
624 % o wand: the drawing wand to destroy.
627 WandExport DrawingWand *DestroyDrawingWand(DrawingWand *wand)
629 assert(wand != (DrawingWand *) NULL);
630 assert(wand->signature == WandSignature);
631 if (wand->debug != MagickFalse)
632 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
633 for ( ; wand->index > 0; wand->index--)
634 CurrentContext=DestroyDrawInfo(CurrentContext);
635 CurrentContext=DestroyDrawInfo(CurrentContext);
636 wand->graphic_context=(DrawInfo **) RelinquishMagickMemory(
637 wand->graphic_context);
638 if (wand->pattern_id != (char *) NULL)
639 wand->pattern_id=DestroyString(wand->pattern_id);
640 wand->mvg=DestroyString(wand->mvg);
641 if ((wand->destroy != MagickFalse) && (wand->image != (Image *) NULL))
642 wand->image=DestroyImage(wand->image);
643 wand->image=(Image *) NULL;
644 wand->exception=DestroyExceptionInfo(wand->exception);
645 wand->signature=(~WandSignature);
646 RelinquishWandId(wand->id);
647 wand=(DrawingWand *) RelinquishMagickMemory(wand);
652 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
656 % D r a w A f f i n e %
660 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
662 % DrawAffine() adjusts the current affine transformation matrix with
663 % the specified affine transformation matrix. Note that the current affine
664 % transform is adjusted rather than replaced.
666 % The format of the DrawAffine method is:
668 % void DrawAffine(DrawingWand *wand,const AffineMatrix *affine)
670 % A description of each parameter follows:
672 % o wand: Drawing wand
674 % o affine: Affine matrix parameters
677 WandExport void DrawAffine(DrawingWand *wand,const AffineMatrix *affine)
679 assert(wand != (DrawingWand *) NULL);
680 assert(wand->signature == WandSignature);
681 if (wand->debug != MagickFalse)
682 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
683 assert(affine != (const AffineMatrix *) NULL);
684 AdjustAffine(wand,affine);
685 (void) MvgPrintf(wand,"affine %g %g %g %g %g %g\n",
686 affine->sx,affine->rx,affine->ry,affine->sy,affine->tx,affine->ty);
690 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
694 + D r a w A l l o c a t e W a n d %
698 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
700 % DrawAllocateWand() allocates an initial drawing wand which is an opaque
701 % handle required by the remaining drawing methods.
703 % The format of the DrawAllocateWand method is:
705 % DrawingWand DrawAllocateWand(const DrawInfo *draw_info,Image *image)
707 % A description of each parameter follows:
709 % o draw_info: Initial drawing defaults. Set to NULL to use defaults.
711 % o image: the image to draw on.
714 WandExport DrawingWand *DrawAllocateWand(const DrawInfo *draw_info,Image *image)
719 wand=NewDrawingWand();
720 if (draw_info != (const DrawInfo *) NULL)
722 CurrentContext=DestroyDrawInfo(CurrentContext);
723 CurrentContext=CloneDrawInfo((ImageInfo *) NULL,draw_info);
725 if (image != (Image *) NULL)
727 wand->image=DestroyImage(wand->image);
728 wand->destroy=MagickFalse;
735 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
739 % D r a w A n n o t a t i o n %
743 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
745 % DrawAnnotation() draws text on the image.
747 % The format of the DrawAnnotation method is:
749 % void DrawAnnotation(DrawingWand *wand,const double x,
750 % const double y,const unsigned char *text)
752 % A description of each parameter follows:
754 % o wand: the drawing wand.
756 % o x: x ordinate to left of text
758 % o y: y ordinate to text baseline
760 % o text: text to draw
763 WandExport void DrawAnnotation(DrawingWand *wand,const double x,const double y,
764 const unsigned char *text)
769 assert(wand != (DrawingWand *) NULL);
770 assert(wand->signature == WandSignature);
771 if (wand->debug != MagickFalse)
772 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
773 assert(text != (const unsigned char *) NULL);
774 escaped_text=EscapeString((const char *) text,'\'');
775 if (escaped_text != (char *) NULL)
777 (void) MvgPrintf(wand,"text %g %g '%s'\n",x,y,escaped_text);
778 escaped_text=DestroyString(escaped_text);
783 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
791 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
793 % DrawArc() draws an arc falling within a specified bounding rectangle on the
796 % The format of the DrawArc method is:
798 % void DrawArc(DrawingWand *wand,const double sx,const double sy,
799 % const double ex,const double ey,const double sd,const double ed)
801 % A description of each parameter follows:
803 % o wand: the drawing wand.
805 % o sx: starting x ordinate of bounding rectangle
807 % o sy: starting y ordinate of bounding rectangle
809 % o ex: ending x ordinate of bounding rectangle
811 % o ey: ending y ordinate of bounding rectangle
813 % o sd: starting degrees of rotation
815 % o ed: ending degrees of rotation
818 WandExport void DrawArc(DrawingWand *wand,const double sx,const double sy,
819 const double ex,const double ey,const double sd,const double ed)
821 assert(wand != (DrawingWand *) NULL);
822 assert(wand->signature == WandSignature);
823 if (wand->debug != MagickFalse)
824 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
825 (void) MvgPrintf(wand,"arc %g %g %g %g %g %g\n",sx,sy,ex,
830 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
834 % D r a w B e z i e r %
838 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
840 % DrawBezier() draws a bezier curve through a set of points on the image.
842 % The format of the DrawBezier method is:
844 % void DrawBezier(DrawingWand *wand,
845 % const size_t number_coordinates,const PointInfo *coordinates)
847 % A description of each parameter follows:
849 % o wand: the drawing wand.
851 % o number_coordinates: number of coordinates
853 % o coordinates: coordinates
856 WandExport void DrawBezier(DrawingWand *wand,
857 const size_t number_coordinates,const PointInfo *coordinates)
859 assert(wand != (DrawingWand *) NULL);
860 assert(wand->signature == WandSignature);
861 if (wand->debug != MagickFalse)
862 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
863 assert(coordinates != (const PointInfo *) NULL);
864 MvgAppendPointsCommand(wand,"bezier",number_coordinates,coordinates);
868 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
872 % D r a w C i r c l e %
876 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
878 % DrawCircle() draws a circle on the image.
880 % The format of the DrawCircle method is:
882 % void DrawCircle(DrawingWand *wand,const double ox,
883 % const double oy,const double px, const double py)
885 % A description of each parameter follows:
887 % o wand: the drawing wand.
889 % o ox: origin x ordinate
891 % o oy: origin y ordinate
893 % o px: perimeter x ordinate
895 % o py: perimeter y ordinate
898 WandExport void DrawCircle(DrawingWand *wand,const double ox,const double oy,
899 const double px,const double py)
901 assert(wand != (DrawingWand *) NULL);
902 assert(wand->signature == WandSignature);
903 if (wand->debug != MagickFalse)
904 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
905 (void) MvgPrintf(wand,"circle %g %g %g %g\n",ox,oy,px,py);
909 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
913 % D r a w C l e a r E x c e p t i o n %
917 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
919 % DrawClearException() clear any exceptions associated with the wand.
921 % The format of the DrawClearException method is:
923 % MagickBooleanType DrawClearException(DrawWand *wand)
925 % A description of each parameter follows:
927 % o wand: the drawing wand.
930 WandExport MagickBooleanType DrawClearException(DrawingWand *wand)
932 assert(wand != (DrawingWand *) NULL);
933 assert(wand->signature == WandSignature);
934 if (wand->debug != MagickFalse)
935 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
936 ClearMagickException(wand->exception);
941 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
945 % D r a w C o m p o s i t e %
949 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
951 % DrawComposite() composites an image onto the current image, using the
952 % specified composition operator, specified position, and at the specified
955 % The format of the DrawComposite method is:
957 % MagickBooleanType DrawComposite(DrawingWand *wand,
958 % const CompositeOperator compose,const double x,
959 % const double y,const double width,const double height,
960 % MagickWand *magick_wand)
962 % A description of each parameter follows:
964 % o wand: the drawing wand.
966 % o compose: composition operator
968 % o x: x ordinate of top left corner
970 % o y: y ordinate of top left corner
972 % o width: Width to resize image to prior to compositing. Specify zero to
973 % use existing width.
975 % o height: Height to resize image to prior to compositing. Specify zero
976 % to use existing height.
978 % o magick_wand: Image to composite is obtained from this wand.
981 WandExport MagickBooleanType DrawComposite(DrawingWand *wand,
982 const CompositeOperator compose,const double x,const double y,
983 const double width,const double height,MagickWand *magick_wand)
1013 assert(wand != (DrawingWand *) NULL);
1014 assert(wand->signature == WandSignature);
1015 if (wand->debug != MagickFalse)
1016 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1017 assert(magick_wand != (MagickWand *) NULL);
1018 image=GetImageFromMagickWand(magick_wand);
1019 if (image == (Image *) NULL)
1020 return(MagickFalse);
1021 clone_image=CloneImage(image,0,0,MagickTrue,wand->exception);
1022 if (clone_image == (Image *) NULL)
1023 return(MagickFalse);
1024 image_info=AcquireImageInfo();
1025 (void) CopyMagickString(image_info->magick,"MIFF",MaxTextExtent);
1027 blob=(unsigned char *) ImageToBlob(image_info,clone_image,&blob_length,
1029 image_info=DestroyImageInfo(image_info);
1030 clone_image=DestroyImageList(clone_image);
1031 if (blob == (void *) NULL)
1032 return(MagickFalse);
1034 base64=Base64Encode(blob,blob_length,&encoded_length);
1035 blob=(unsigned char *) RelinquishMagickMemory(blob);
1036 if (base64 == (char *) NULL)
1039 buffer[MaxTextExtent];
1041 (void) FormatLocaleString(buffer,MaxTextExtent,"%.20g bytes",(double)
1042 (4L*blob_length/3L+4L));
1043 ThrowDrawException(ResourceLimitWarning,"MemoryAllocationFailed",
1045 return(MagickFalse);
1047 mode=CommandOptionToMnemonic(MagickComposeOptions,(ssize_t) compose);
1048 media_type=MagickToMime(image->magick);
1049 (void) MvgPrintf(wand,"image %s %g %g %g %g 'data:%s;base64,\n",
1050 mode,x,y,width,height,media_type);
1052 for (i=(ssize_t) encoded_length; i > 0; i-=76)
1054 (void) MvgPrintf(wand,"%.76s",p);
1057 (void) MvgPrintf(wand,"\n");
1059 (void) MvgPrintf(wand,"'\n");
1060 media_type=DestroyString(media_type);
1061 base64=DestroyString(base64);
1066 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1070 % D r a w C o l o r %
1074 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1076 % DrawColor() draws color on image using the current fill color, starting at
1077 % specified position, and using specified paint method. The available paint
1080 % PointMethod: Recolors the target pixel
1081 % ReplaceMethod: Recolor any pixel that matches the target pixel.
1082 % FloodfillMethod: Recolors target pixels and matching neighbors.
1083 % ResetMethod: Recolor all pixels.
1085 % The format of the DrawColor method is:
1087 % void DrawColor(DrawingWand *wand,const double x,const double y,
1088 % const PaintMethod paint_method)
1090 % A description of each parameter follows:
1092 % o wand: the drawing wand.
1098 % o paint_method: paint method.
1101 WandExport void DrawColor(DrawingWand *wand,const double x,const double y,
1102 const PaintMethod paint_method)
1104 assert(wand != (DrawingWand *) NULL);
1105 assert(wand->signature == WandSignature);
1106 if (wand->debug != MagickFalse)
1107 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1108 (void) MvgPrintf(wand,"color %g %g '%s'\n",x,y,CommandOptionToMnemonic(
1109 MagickMethodOptions,(ssize_t) paint_method));
1113 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1117 % D r a w C o m m e n t %
1121 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1123 % DrawComment() adds a comment to a vector output stream.
1125 % The format of the DrawComment method is:
1127 % void DrawComment(DrawingWand *wand,const char *comment)
1129 % A description of each parameter follows:
1131 % o wand: the drawing wand.
1133 % o comment: comment text
1136 WandExport void DrawComment(DrawingWand *wand,const char *comment)
1138 (void) MvgPrintf(wand,"#%s\n",comment);
1142 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1146 % D r a w E l l i p s e %
1150 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1152 % DrawEllipse() draws an ellipse on the image.
1154 % The format of the DrawEllipse method is:
1156 % void DrawEllipse(DrawingWand *wand,const double ox,const double oy,
1157 % const double rx,const double ry,const double start,const double end)
1159 % A description of each parameter follows:
1161 % o wand: the drawing wand.
1163 % o ox: origin x ordinate
1165 % o oy: origin y ordinate
1171 % o start: starting rotation in degrees
1173 % o end: ending rotation in degrees
1176 WandExport void DrawEllipse(DrawingWand *wand,const double ox,const double oy,
1177 const double rx,const double ry,const double start,const double end)
1179 assert(wand != (DrawingWand *) NULL);
1180 assert(wand->signature == WandSignature);
1181 if (wand->debug != MagickFalse)
1182 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1183 (void) MvgPrintf(wand,"ellipse %g %g %g %g %g %g\n",ox,oy,
1188 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1192 % D r a w G e t B o r d e r C o l o r %
1196 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1198 % DrawGetBorderColor() returns the border color used for drawing bordered
1201 % The format of the DrawGetBorderColor method is:
1203 % void DrawGetBorderColor(const DrawingWand *wand,
1204 % PixelWand *border_color)
1206 % A description of each parameter follows:
1208 % o wand: the drawing wand.
1210 % o border_color: Return the border color.
1213 WandExport void DrawGetBorderColor(const DrawingWand *wand,
1214 PixelWand *border_color)
1216 assert(wand != (const DrawingWand *) NULL);
1217 assert(wand->signature == WandSignature);
1218 assert(border_color != (PixelWand *) NULL);
1219 if (wand->debug != MagickFalse)
1220 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1221 PixelSetPixelColor(border_color,&CurrentContext->border_color);
1225 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1229 % D r a w G e t C l i p P a t h %
1233 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1235 % DrawGetClipPath() obtains the current clipping path ID. The value returned
1236 % must be deallocated by the user when it is no longer needed.
1238 % The format of the DrawGetClipPath method is:
1240 % char *DrawGetClipPath(const DrawingWand *wand)
1242 % A description of each parameter follows:
1244 % o wand: the drawing wand.
1247 WandExport char *DrawGetClipPath(const DrawingWand *wand)
1249 assert(wand != (const DrawingWand *) NULL);
1250 assert(wand->signature == WandSignature);
1251 if (wand->debug != MagickFalse)
1252 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1253 if (CurrentContext->clip_mask != (char *) NULL)
1254 return((char *) AcquireString(CurrentContext->clip_mask));
1255 return((char *) NULL);
1259 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1263 % D r a w G e t C l i p R u l e %
1267 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1269 % DrawGetClipRule() returns the current polygon fill rule to be used by the
1272 % The format of the DrawGetClipRule method is:
1274 % FillRule DrawGetClipRule(const DrawingWand *wand)
1276 % A description of each parameter follows:
1278 % o wand: the drawing wand.
1281 WandExport FillRule DrawGetClipRule(const DrawingWand *wand)
1283 assert(wand != (const DrawingWand *) NULL);
1284 assert(wand->signature == WandSignature);
1285 if (wand->debug != MagickFalse)
1286 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1287 return(CurrentContext->fill_rule);
1291 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1295 % D r a w G e t C l i p U n i t s %
1299 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1301 % DrawGetClipUnits() returns the interpretation of clip path units.
1303 % The format of the DrawGetClipUnits method is:
1305 % ClipPathUnits DrawGetClipUnits(const DrawingWand *wand)
1307 % A description of each parameter follows:
1309 % o wand: the drawing wand.
1312 WandExport ClipPathUnits DrawGetClipUnits(const DrawingWand *wand)
1314 assert(wand != (const DrawingWand *) NULL);
1315 assert(wand->signature == WandSignature);
1316 if (wand->debug != MagickFalse)
1317 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1318 return(CurrentContext->clip_units);
1322 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1326 % D r a w G e t E x c e p t i o n %
1330 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1332 % DrawGetException() returns the severity, reason, and description of any
1333 % error that occurs when using other methods in this API.
1335 % The format of the DrawGetException method is:
1337 % char *DrawGetException(const DrawWand *wand,
1338 % ExceptionType *severity)
1340 % A description of each parameter follows:
1342 % o wand: the drawing wand.
1344 % o severity: the severity of the error is returned here.
1347 WandExport char *DrawGetException(const DrawingWand *wand,
1348 ExceptionType *severity)
1353 assert(wand != (const DrawingWand *) NULL);
1354 assert(wand->signature == WandSignature);
1355 if (wand->debug != MagickFalse)
1356 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1357 assert(severity != (ExceptionType *) NULL);
1358 *severity=wand->exception->severity;
1359 description=(char *) AcquireQuantumMemory(2UL*MaxTextExtent,
1360 sizeof(*description));
1361 if (description == (char *) NULL)
1362 ThrowWandFatalException(ResourceLimitFatalError,"MemoryAllocationFailed",
1365 if (wand->exception->reason != (char *) NULL)
1366 (void) CopyMagickString(description,GetLocaleExceptionMessage(
1367 wand->exception->severity,wand->exception->reason),
1369 if (wand->exception->description != (char *) NULL)
1371 (void) ConcatenateMagickString(description," (",MaxTextExtent);
1372 (void) ConcatenateMagickString(description,GetLocaleExceptionMessage(
1373 wand->exception->severity,wand->exception->description),
1375 (void) ConcatenateMagickString(description,")",MaxTextExtent);
1377 return(description);
1381 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1385 % P i x e l G e t E x c e p t i o n T y p e %
1389 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1391 % DrawGetExceptionType() the exception type associated with the wand. If
1392 % no exception has occurred, UndefinedExceptionType is returned.
1394 % The format of the DrawGetExceptionType method is:
1396 % ExceptionType DrawGetExceptionType(const DrawWand *wand)
1398 % A description of each parameter follows:
1400 % o wand: the magick wand.
1403 WandExport ExceptionType DrawGetExceptionType(const DrawingWand *wand)
1405 assert(wand != (const DrawingWand *) NULL);
1406 assert(wand->signature == WandSignature);
1407 if (wand->debug != MagickFalse)
1408 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1409 return(wand->exception->severity);
1413 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1417 % D r a w G e t F i l l C o l o r %
1421 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1423 % DrawGetFillColor() returns the fill color used for drawing filled objects.
1425 % The format of the DrawGetFillColor method is:
1427 % void DrawGetFillColor(const DrawingWand *wand,
1428 % PixelWand *fill_color)
1430 % A description of each parameter follows:
1432 % o wand: the drawing wand.
1434 % o fill_color: Return the fill color.
1437 WandExport void DrawGetFillColor(const DrawingWand *wand,PixelWand *fill_color)
1439 assert(wand != (const DrawingWand *) NULL);
1440 assert(wand->signature == WandSignature);
1441 assert(fill_color != (PixelWand *) NULL);
1442 if (wand->debug != MagickFalse)
1443 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1444 PixelSetPixelColor(fill_color,&CurrentContext->fill);
1448 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1452 % D r a w G e t F i l l O p a c i t y %
1456 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1458 % DrawGetFillAlpha() returns the alpha used when drawing using the fill
1459 % color or fill texture. Fully opaque is 1.0.
1461 % The format of the DrawGetFillAlpha method is:
1463 % double DrawGetFillAlpha(const DrawingWand *wand)
1465 % A description of each parameter follows:
1467 % o wand: the drawing wand.
1470 WandExport double DrawGetFillAlpha(const DrawingWand *wand)
1475 assert(wand != (const DrawingWand *) NULL);
1476 assert(wand->signature == WandSignature);
1477 if (wand->debug != MagickFalse)
1478 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1479 alpha=(double) QuantumScale*CurrentContext->fill.alpha;
1484 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1488 % D r a w G e t F i l l R u l e %
1492 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1494 % DrawGetFillRule() returns the fill rule used while drawing polygons.
1496 % The format of the DrawGetFillRule method is:
1498 % FillRule DrawGetFillRule(const DrawingWand *wand)
1500 % A description of each parameter follows:
1502 % o wand: the drawing wand.
1505 WandExport FillRule DrawGetFillRule(const DrawingWand *wand)
1507 assert(wand != (const DrawingWand *) NULL);
1508 assert(wand->signature == WandSignature);
1509 if (wand->debug != MagickFalse)
1510 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1511 return(CurrentContext->fill_rule);
1515 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1519 % D r a w G e t F o n t %
1523 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1525 % DrawGetFont() returns a null-terminaged string specifying the font used
1526 % when annotating with text. The value returned must be freed by the user
1527 % when no longer needed.
1529 % The format of the DrawGetFont method is:
1531 % char *DrawGetFont(const DrawingWand *wand)
1533 % A description of each parameter follows:
1535 % o wand: the drawing wand.
1538 WandExport char *DrawGetFont(const DrawingWand *wand)
1540 assert(wand != (const DrawingWand *) NULL);
1541 assert(wand->signature == WandSignature);
1542 if (wand->debug != MagickFalse)
1543 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1544 if (CurrentContext->font != (char *) NULL)
1545 return(AcquireString(CurrentContext->font));
1546 return((char *) NULL);
1550 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1554 % D r a w G e t F o n t F a m i l y %
1558 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1560 % DrawGetFontFamily() returns the font family to use when annotating with text.
1561 % The value returned must be freed by the user when it is no longer needed.
1563 % The format of the DrawGetFontFamily method is:
1565 % char *DrawGetFontFamily(const DrawingWand *wand)
1567 % A description of each parameter follows:
1569 % o wand: the drawing wand.
1572 WandExport char *DrawGetFontFamily(const DrawingWand *wand)
1574 assert(wand != (const DrawingWand *) NULL);
1575 assert(wand->signature == WandSignature);
1576 if (wand->debug != MagickFalse)
1577 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1578 if (CurrentContext->family != NULL)
1579 return(AcquireString(CurrentContext->family));
1580 return((char *) NULL);
1584 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1588 % D r a w G e t F o n t R e s o l u t i o n %
1592 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1594 % DrawGetFontResolution() gets the image X and Y resolution.
1596 % The format of the DrawGetFontResolution method is:
1598 % MagickBooleanType DrawGetFontResolution(const DrawingWand *wand,
1599 % double *x,double *y)
1601 % A description of each parameter follows:
1603 % o wand: the magick wand.
1605 % o x: the x-resolution.
1607 % o y: the y-resolution.
1610 WandExport MagickBooleanType DrawGetFontResolution(const DrawingWand *wand,
1611 double *x,double *y)
1613 assert(wand != (DrawingWand *) NULL);
1614 assert(wand->signature == WandSignature);
1615 if (wand->debug != MagickFalse)
1616 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1619 if (CurrentContext->density != (char *) NULL)
1627 flags=ParseGeometry(CurrentContext->density,&geometry_info);
1628 *x=geometry_info.rho;
1629 *y=geometry_info.sigma;
1630 if ((flags & SigmaValue) == MagickFalse)
1637 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1641 % D r a w G e t F o n t S i z e %
1645 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1647 % DrawGetFontSize() returns the font pointsize used when annotating with text.
1649 % The format of the DrawGetFontSize method is:
1651 % double DrawGetFontSize(const DrawingWand *wand)
1653 % A description of each parameter follows:
1655 % o wand: the drawing wand.
1658 WandExport double DrawGetFontSize(const DrawingWand *wand)
1660 assert(wand != (const DrawingWand *) NULL);
1661 assert(wand->signature == WandSignature);
1662 if (wand->debug != MagickFalse)
1663 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1664 return(CurrentContext->pointsize);
1668 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1672 % D r a w G e t F o n t S t r e t c h %
1676 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1678 % DrawGetFontStretch() returns the font stretch used when annotating with text.
1680 % The format of the DrawGetFontStretch method is:
1682 % StretchType DrawGetFontStretch(const DrawingWand *wand)
1684 % A description of each parameter follows:
1686 % o wand: the drawing wand.
1689 WandExport StretchType DrawGetFontStretch(const DrawingWand *wand)
1691 assert(wand != (const DrawingWand *) NULL);
1692 assert(wand->signature == WandSignature);
1693 if (wand->debug != MagickFalse)
1694 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1695 return(CurrentContext->stretch);
1699 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1703 % D r a w G e t F o n t S t y l e %
1707 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1709 % DrawGetFontStyle() returns the font style used when annotating with text.
1711 % The format of the DrawGetFontStyle method is:
1713 % StyleType DrawGetFontStyle(const DrawingWand *wand)
1715 % A description of each parameter follows:
1717 % o wand: the drawing wand.
1720 WandExport StyleType DrawGetFontStyle(const DrawingWand *wand)
1722 assert(wand != (const DrawingWand *) NULL);
1723 assert(wand->signature == WandSignature);
1724 if (wand->debug != MagickFalse)
1725 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1726 return(CurrentContext->style);
1730 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1734 % D r a w G e t F o n t W e i g h t %
1738 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1740 % DrawGetFontWeight() returns the font weight used when annotating with text.
1742 % The format of the DrawGetFontWeight method is:
1744 % size_t DrawGetFontWeight(const DrawingWand *wand)
1746 % A description of each parameter follows:
1748 % o wand: the drawing wand.
1751 WandExport size_t DrawGetFontWeight(const DrawingWand *wand)
1753 assert(wand != (const DrawingWand *) NULL);
1754 assert(wand->signature == WandSignature);
1755 if (wand->debug != MagickFalse)
1756 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1757 return(CurrentContext->weight);
1761 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1765 % D r a w G e t G r a v i t y %
1769 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1771 % DrawGetGravity() returns the text placement gravity used when annotating
1774 % The format of the DrawGetGravity method is:
1776 % GravityType DrawGetGravity(const DrawingWand *wand)
1778 % A description of each parameter follows:
1780 % o wand: the drawing wand.
1783 WandExport GravityType DrawGetGravity(const DrawingWand *wand)
1785 assert(wand != (const DrawingWand *) NULL);
1786 assert(wand->signature == WandSignature);
1787 if (wand->debug != MagickFalse)
1788 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1789 return(CurrentContext->gravity);
1793 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1797 % D r a w G e t O p a c i t y %
1801 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1803 % DrawGetAlpha() returns the alpha used when drawing with the fill
1804 % or stroke color or texture. Fully opaque is 1.0.
1806 % The format of the DrawGetAlpha method is:
1808 % double DrawGetAlpha(const DrawingWand *wand)
1810 % A description of each parameter follows:
1812 % o wand: the drawing wand.
1815 WandExport double DrawGetAlpha(const DrawingWand *wand)
1820 assert(wand != (const DrawingWand *) NULL);
1821 assert(wand->signature == WandSignature);
1822 if (wand->debug != MagickFalse)
1823 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1824 alpha=(double) QuantumScale*CurrentContext->alpha;
1829 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1833 % D r a w G e t S t r o k e A n t i a l i a s %
1837 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1839 % DrawGetStrokeAntialias() returns the current stroke antialias setting.
1840 % Stroked outlines are antialiased by default. When antialiasing is disabled
1841 % stroked pixels are thresholded to determine if the stroke color or
1842 % underlying canvas color should be used.
1844 % The format of the DrawGetStrokeAntialias method is:
1846 % MagickBooleanType DrawGetStrokeAntialias(const DrawingWand *wand)
1848 % A description of each parameter follows:
1850 % o wand: the drawing wand.
1853 WandExport MagickBooleanType DrawGetStrokeAntialias(const DrawingWand *wand)
1855 assert(wand != (const DrawingWand *) NULL);
1856 assert(wand->signature == WandSignature);
1857 if (wand->debug != MagickFalse)
1858 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1859 return(CurrentContext->stroke_antialias);
1863 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1867 % D r a w G e t S t r o k e C o l o r %
1871 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1873 % DrawGetStrokeColor() returns the color used for stroking object outlines.
1875 % The format of the DrawGetStrokeColor method is:
1877 % void DrawGetStrokeColor(const DrawingWand *wand,
1878 % PixelWand *stroke_color)
1880 % A description of each parameter follows:
1882 % o wand: the drawing wand.
1884 % o stroke_color: Return the stroke color.
1887 WandExport void DrawGetStrokeColor(const DrawingWand *wand,
1888 PixelWand *stroke_color)
1890 assert(wand != (const DrawingWand *) NULL);
1891 assert(wand->signature == WandSignature);
1892 assert(stroke_color != (PixelWand *) NULL);
1893 if (wand->debug != MagickFalse)
1894 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1895 PixelSetPixelColor(stroke_color,&CurrentContext->stroke);
1899 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1903 % D r a w G e t S t r o k e D a s h A r r a y %
1907 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1909 % DrawGetStrokeDashArray() returns an array representing the pattern of
1910 % dashes and gaps used to stroke paths (see DrawSetStrokeDashArray). The
1911 % array must be freed once it is no longer required by the user.
1913 % The format of the DrawGetStrokeDashArray method is:
1915 % double *DrawGetStrokeDashArray(const DrawingWand *wand,
1916 % size_t *number_elements)
1918 % A description of each parameter follows:
1920 % o wand: the drawing wand.
1922 % o number_elements: address to place number of elements in dash array
1925 WandExport double *DrawGetStrokeDashArray(const DrawingWand *wand,
1926 size_t *number_elements)
1931 register const double
1943 assert(wand != (const DrawingWand *) NULL);
1944 assert(wand->signature == WandSignature);
1945 if (wand->debug != MagickFalse)
1946 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1947 assert(number_elements != (size_t *) NULL);
1949 p=CurrentContext->dash_pattern;
1950 if (p != (const double *) NULL)
1951 while (fabs(*p++) >= MagickEpsilon)
1954 dash_array=(double *) NULL;
1957 dash_array=(double *) AcquireQuantumMemory((size_t) n,
1958 sizeof(*dash_array));
1959 p=CurrentContext->dash_pattern;
1961 for (i=0; i < (ssize_t) n; i++)
1968 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1972 % D r a w G e t S t r o k e D a s h O f f s e t %
1976 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1978 % DrawGetStrokeDashOffset() returns the offset into the dash pattern to
1981 % The format of the DrawGetStrokeDashOffset method is:
1983 % double DrawGetStrokeDashOffset(const DrawingWand *wand)
1985 % A description of each parameter follows:
1987 % o wand: the drawing wand.
1990 WandExport double DrawGetStrokeDashOffset(const DrawingWand *wand)
1992 assert(wand != (const DrawingWand *) NULL);
1993 assert(wand->signature == WandSignature);
1994 if (wand->debug != MagickFalse)
1995 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
1996 return(CurrentContext->dash_offset);
2000 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2004 % D r a w G e t S t r o k e L i n e C a p %
2008 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2010 % DrawGetStrokeLineCap() returns the shape to be used at the end of
2011 % open subpaths when they are stroked. Values of LineCap are
2012 % UndefinedCap, ButtCap, RoundCap, and SquareCap.
2014 % The format of the DrawGetStrokeLineCap method is:
2016 % LineCap DrawGetStrokeLineCap(const DrawingWand *wand)
2018 % A description of each parameter follows:
2020 % o wand: the drawing wand.
2023 WandExport LineCap DrawGetStrokeLineCap(const DrawingWand *wand)
2025 assert(wand != (const DrawingWand *) NULL);
2026 assert(wand->signature == WandSignature);
2027 if (wand->debug != MagickFalse)
2028 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2029 return(CurrentContext->linecap);
2033 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2037 % D r a w G e t S t r o k e L i n e J o i n %
2041 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2043 % DrawGetStrokeLineJoin() returns the shape to be used at the
2044 % corners of paths (or other vector shapes) when they are
2045 % stroked. Values of LineJoin are UndefinedJoin, MiterJoin, RoundJoin,
2048 % The format of the DrawGetStrokeLineJoin method is:
2050 % LineJoin DrawGetStrokeLineJoin(const DrawingWand *wand)
2052 % A description of each parameter follows:
2054 % o wand: the drawing wand.
2057 WandExport LineJoin DrawGetStrokeLineJoin(const DrawingWand *wand)
2059 assert(wand != (const DrawingWand *) NULL);
2060 assert(wand->signature == WandSignature);
2061 if (wand->debug != MagickFalse)
2062 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2063 return(CurrentContext->linejoin);
2067 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2071 % D r a w G e t S t r o k e M i t e r L i m i t %
2075 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2077 % DrawGetStrokeMiterLimit() returns the miter limit. When two line
2078 % segments meet at a sharp angle and miter joins have been specified for
2079 % 'lineJoin', it is possible for the miter to extend far beyond the
2080 % thickness of the line stroking the path. The miterLimit' imposes a
2081 % limit on the ratio of the miter length to the 'lineWidth'.
2083 % The format of the DrawGetStrokeMiterLimit method is:
2085 % size_t DrawGetStrokeMiterLimit(const DrawingWand *wand)
2087 % A description of each parameter follows:
2089 % o wand: the drawing wand.
2092 WandExport size_t DrawGetStrokeMiterLimit(const DrawingWand *wand)
2094 assert(wand != (const DrawingWand *) NULL);
2095 assert(wand->signature == WandSignature);
2096 if (wand->debug != MagickFalse)
2097 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2098 return CurrentContext->miterlimit;
2102 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2106 % D r a w G e t S t r o k e O p a c i t y %
2110 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2112 % DrawGetStrokeAlpha() returns the alpha of stroked object outlines.
2114 % The format of the DrawGetStrokeAlpha method is:
2116 % double DrawGetStrokeAlpha(const DrawingWand *wand)
2118 % A description of each parameter follows:
2120 % o wand: the drawing wand.
2123 WandExport double DrawGetStrokeAlpha(const DrawingWand *wand)
2128 assert(wand != (const DrawingWand *) NULL);
2129 assert(wand->signature == WandSignature);
2130 if (wand->debug != MagickFalse)
2131 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2132 alpha=(double) QuantumScale*CurrentContext->stroke.alpha;
2137 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2141 % D r a w G e t S t r o k e W i d t h %
2145 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2147 % DrawGetStrokeWidth() returns the width of the stroke used to draw object
2150 % The format of the DrawGetStrokeWidth method is:
2152 % double DrawGetStrokeWidth(const DrawingWand *wand)
2154 % A description of each parameter follows:
2156 % o wand: the drawing wand.
2159 WandExport double DrawGetStrokeWidth(const DrawingWand *wand)
2161 assert(wand != (const DrawingWand *) NULL);
2162 assert(wand->signature == WandSignature);
2163 if (wand->debug != MagickFalse)
2164 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2165 return(CurrentContext->stroke_width);
2169 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2173 % D r a w G e t T e x t A l i g n m e n t %
2177 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2179 % DrawGetTextAlignment() returns the alignment applied when annotating with
2182 % The format of the DrawGetTextAlignment method is:
2184 % AlignType DrawGetTextAlignment(const DrawingWand *wand)
2186 % A description of each parameter follows:
2188 % o wand: the drawing wand.
2191 WandExport AlignType DrawGetTextAlignment(const DrawingWand *wand)
2193 assert(wand != (const DrawingWand *) NULL);
2194 assert(wand->signature == WandSignature);
2195 if (wand->debug != MagickFalse)
2196 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2197 return(CurrentContext->align);
2201 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2205 % D r a w G e t T e x t A n t i a l i a s %
2209 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2211 % DrawGetTextAntialias() returns the current text antialias setting, which
2212 % determines whether text is antialiased. Text is antialiased by default.
2214 % The format of the DrawGetTextAntialias method is:
2216 % MagickBooleanType DrawGetTextAntialias(const DrawingWand *wand)
2218 % A description of each parameter follows:
2220 % o wand: the drawing wand.
2223 WandExport MagickBooleanType DrawGetTextAntialias(const DrawingWand *wand)
2225 assert(wand != (const DrawingWand *) NULL);
2226 assert(wand->signature == WandSignature);
2227 if (wand->debug != MagickFalse)
2228 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2229 return(CurrentContext->text_antialias);
2233 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2237 % D r a w G e t T e x t D e c o r a t i o n %
2241 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2243 % DrawGetTextDecoration() returns the decoration applied when annotating with
2246 % The format of the DrawGetTextDecoration method is:
2248 % DecorationType DrawGetTextDecoration(const DrawingWand *wand)
2250 % A description of each parameter follows:
2252 % o wand: the drawing wand.
2255 WandExport DecorationType DrawGetTextDecoration(const DrawingWand *wand)
2257 assert(wand != (const DrawingWand *) NULL);
2258 assert(wand->signature == WandSignature);
2259 if (wand->debug != MagickFalse)
2260 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2261 return(CurrentContext->decorate);
2265 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2269 % D r a w G e t T e x t E n c o d i n g %
2273 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2275 % DrawGetTextEncoding() returns a null-terminated string which specifies the
2276 % code set used for text annotations. The string must be freed by the user
2277 % once it is no longer required.
2279 % The format of the DrawGetTextEncoding method is:
2281 % char *DrawGetTextEncoding(const DrawingWand *wand)
2283 % A description of each parameter follows:
2285 % o wand: the drawing wand.
2288 WandExport char *DrawGetTextEncoding(const DrawingWand *wand)
2290 assert(wand != (const DrawingWand *) NULL);
2291 assert(wand->signature == WandSignature);
2292 if (wand->debug != MagickFalse)
2293 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2294 if (CurrentContext->encoding != (char *) NULL)
2295 return((char *) AcquireString(CurrentContext->encoding));
2296 return((char *) NULL);
2300 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2304 % D r a w G e t T e x t K e r n i n g %
2308 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2310 % DrawGetTextKerning() gets the spacing between characters in text.
2312 % The format of the DrawSetFontKerning method is:
2314 % double DrawGetTextKerning(DrawingWand *wand)
2316 % A description of each parameter follows:
2318 % o wand: the drawing wand.
2321 WandExport double DrawGetTextKerning(DrawingWand *wand)
2323 assert(wand != (DrawingWand *) NULL);
2324 assert(wand->signature == WandSignature);
2326 if (wand->debug != MagickFalse)
2327 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2328 return(CurrentContext->kerning);
2332 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2336 % D r a w G e t T e x t I n t e r l i n e S p a c i n g %
2340 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2342 % DrawGetTextInterlineSpacing() gets the spacing between lines in text.
2344 % The format of the DrawGetTextInterlineSpacing method is:
2346 % double DrawGetTextInterlineSpacing(DrawingWand *wand)
2348 % A description of each parameter follows:
2350 % o wand: the drawing wand.
2353 WandExport double DrawGetTextInterlineSpacing(DrawingWand *wand)
2355 assert(wand != (DrawingWand *) NULL);
2356 assert(wand->signature == WandSignature);
2357 if (wand->debug != MagickFalse)
2358 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2359 return(CurrentContext->interline_spacing);
2363 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2367 % D r a w G e t T e x t I n t e r w o r d S p a c i n g %
2371 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2373 % DrawGetTextInterwordSpacing() gets the spacing between words in text.
2375 % The format of the DrawSetFontKerning method is:
2377 % double DrawGetTextInterwordSpacing(DrawingWand *wand)
2379 % A description of each parameter follows:
2381 % o wand: the drawing wand.
2384 WandExport double DrawGetTextInterwordSpacing(DrawingWand *wand)
2386 assert(wand != (DrawingWand *) NULL);
2387 assert(wand->signature == WandSignature);
2388 if (wand->debug != MagickFalse)
2389 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2390 return(CurrentContext->interword_spacing);
2394 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2398 % D r a w G e t V e c t o r G r a p h i c s %
2402 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2404 % DrawGetVectorGraphics() returns a null-terminated string which specifies the
2405 % vector graphics generated by any graphics calls made since the wand was
2406 % instantiated. The string must be freed by the user once it is no longer
2409 % The format of the DrawGetVectorGraphics method is:
2411 % char *DrawGetVectorGraphics(DrawingWand *wand)
2413 % A description of each parameter follows:
2415 % o wand: the drawing wand.
2418 WandExport char *DrawGetVectorGraphics(DrawingWand *wand)
2421 value[MaxTextExtent],
2434 assert(wand != (const DrawingWand *) NULL);
2435 assert(wand->signature == WandSignature);
2436 if (wand->debug != MagickFalse)
2437 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2438 xml_info=NewXMLTreeTag("drawing-wand");
2439 if (xml_info == (XMLTreeInfo *) NULL)
2440 return(char *) NULL;
2441 GetPixelInfo(wand->image,&pixel);
2442 child=AddChildToXMLTree(xml_info,"clip-path",0);
2443 if (child != (XMLTreeInfo *) NULL)
2444 (void) SetXMLTreeContent(child,CurrentContext->clip_mask);
2445 child=AddChildToXMLTree(xml_info,"clip-units",0);
2446 if (child != (XMLTreeInfo *) NULL)
2448 (void) CopyMagickString(value,CommandOptionToMnemonic(
2449 MagickClipPathOptions,(ssize_t) CurrentContext->clip_units),
2451 (void) SetXMLTreeContent(child,value);
2453 child=AddChildToXMLTree(xml_info,"decorate",0);
2454 if (child != (XMLTreeInfo *) NULL)
2456 (void) CopyMagickString(value,CommandOptionToMnemonic(
2457 MagickDecorateOptions,(ssize_t) CurrentContext->decorate),
2459 (void) SetXMLTreeContent(child,value);
2461 child=AddChildToXMLTree(xml_info,"encoding",0);
2462 if (child != (XMLTreeInfo *) NULL)
2463 (void) SetXMLTreeContent(child,CurrentContext->encoding);
2464 child=AddChildToXMLTree(xml_info,"fill",0);
2465 if (child != (XMLTreeInfo *) NULL)
2467 if (CurrentContext->fill.alpha != OpaqueAlpha)
2468 pixel.alpha_trait=CurrentContext->fill.alpha != OpaqueAlpha ?
2469 BlendPixelTrait : UndefinedPixelTrait;
2470 pixel=CurrentContext->fill;
2471 GetColorTuple(&pixel,MagickTrue,value);
2472 (void) SetXMLTreeContent(child,value);
2474 child=AddChildToXMLTree(xml_info,"fill-alpha",0);
2475 if (child != (XMLTreeInfo *) NULL)
2477 (void) FormatLocaleString(value,MaxTextExtent,"%g",
2478 (double) QuantumScale*CurrentContext->fill.alpha);
2479 (void) SetXMLTreeContent(child,value);
2481 child=AddChildToXMLTree(xml_info,"fill-rule",0);
2482 if (child != (XMLTreeInfo *) NULL)
2484 (void) CopyMagickString(value,CommandOptionToMnemonic(
2485 MagickFillRuleOptions,(ssize_t) CurrentContext->fill_rule),
2487 (void) SetXMLTreeContent(child,value);
2489 child=AddChildToXMLTree(xml_info,"font",0);
2490 if (child != (XMLTreeInfo *) NULL)
2491 (void) SetXMLTreeContent(child,CurrentContext->font);
2492 child=AddChildToXMLTree(xml_info,"font-family",0);
2493 if (child != (XMLTreeInfo *) NULL)
2494 (void) SetXMLTreeContent(child,CurrentContext->family);
2495 child=AddChildToXMLTree(xml_info,"font-size",0);
2496 if (child != (XMLTreeInfo *) NULL)
2498 (void) FormatLocaleString(value,MaxTextExtent,"%g",
2499 CurrentContext->pointsize);
2500 (void) SetXMLTreeContent(child,value);
2502 child=AddChildToXMLTree(xml_info,"font-stretch",0);
2503 if (child != (XMLTreeInfo *) NULL)
2505 (void) CopyMagickString(value,CommandOptionToMnemonic(
2506 MagickStretchOptions,(ssize_t) CurrentContext->stretch),MaxTextExtent);
2507 (void) SetXMLTreeContent(child,value);
2509 child=AddChildToXMLTree(xml_info,"font-style",0);
2510 if (child != (XMLTreeInfo *) NULL)
2512 (void) CopyMagickString(value,CommandOptionToMnemonic(
2513 MagickStyleOptions,(ssize_t) CurrentContext->style),MaxTextExtent);
2514 (void) SetXMLTreeContent(child,value);
2516 child=AddChildToXMLTree(xml_info,"font-weight",0);
2517 if (child != (XMLTreeInfo *) NULL)
2519 (void) FormatLocaleString(value,MaxTextExtent,"%.20g",(double)
2520 CurrentContext->weight);
2521 (void) SetXMLTreeContent(child,value);
2523 child=AddChildToXMLTree(xml_info,"gravity",0);
2524 if (child != (XMLTreeInfo *) NULL)
2526 (void) CopyMagickString(value,CommandOptionToMnemonic(
2527 MagickGravityOptions,(ssize_t) CurrentContext->gravity),MaxTextExtent);
2528 (void) SetXMLTreeContent(child,value);
2530 child=AddChildToXMLTree(xml_info,"stroke",0);
2531 if (child != (XMLTreeInfo *) NULL)
2533 if (CurrentContext->stroke.alpha != OpaqueAlpha)
2534 pixel.alpha_trait=CurrentContext->stroke.alpha != OpaqueAlpha ?
2535 BlendPixelTrait : UndefinedPixelTrait;
2536 pixel=CurrentContext->stroke;
2537 GetColorTuple(&pixel,MagickTrue,value);
2538 (void) SetXMLTreeContent(child,value);
2540 child=AddChildToXMLTree(xml_info,"stroke-antialias",0);
2541 if (child != (XMLTreeInfo *) NULL)
2543 (void) FormatLocaleString(value,MaxTextExtent,"%d",
2544 CurrentContext->stroke_antialias != MagickFalse ? 1 : 0);
2545 (void) SetXMLTreeContent(child,value);
2547 child=AddChildToXMLTree(xml_info,"stroke-dasharray",0);
2548 if ((child != (XMLTreeInfo *) NULL) &&
2549 (CurrentContext->dash_pattern != (double *) NULL))
2554 dash_pattern=AcquireString((char *) NULL);
2555 for (i=0; fabs(CurrentContext->dash_pattern[i]) >= MagickEpsilon; i++)
2558 (void) ConcatenateString(&dash_pattern,",");
2559 (void) FormatLocaleString(value,MaxTextExtent,"%g",
2560 CurrentContext->dash_pattern[i]);
2561 (void) ConcatenateString(&dash_pattern,value);
2563 (void) SetXMLTreeContent(child,dash_pattern);
2564 dash_pattern=DestroyString(dash_pattern);
2566 child=AddChildToXMLTree(xml_info,"stroke-dashoffset",0);
2567 if (child != (XMLTreeInfo *) NULL)
2569 (void) FormatLocaleString(value,MaxTextExtent,"%g",
2570 CurrentContext->dash_offset);
2571 (void) SetXMLTreeContent(child,value);
2573 child=AddChildToXMLTree(xml_info,"stroke-linecap",0);
2574 if (child != (XMLTreeInfo *) NULL)
2576 (void) CopyMagickString(value,CommandOptionToMnemonic(MagickLineCapOptions,
2577 (ssize_t) CurrentContext->linecap),MaxTextExtent);
2578 (void) SetXMLTreeContent(child,value);
2580 child=AddChildToXMLTree(xml_info,"stroke-linejoin",0);
2581 if (child != (XMLTreeInfo *) NULL)
2583 (void) CopyMagickString(value,CommandOptionToMnemonic(
2584 MagickLineJoinOptions,(ssize_t) CurrentContext->linejoin),
2586 (void) SetXMLTreeContent(child,value);
2588 child=AddChildToXMLTree(xml_info,"stroke-miterlimit",0);
2589 if (child != (XMLTreeInfo *) NULL)
2591 (void) FormatLocaleString(value,MaxTextExtent,"%.20g",(double)
2592 CurrentContext->miterlimit);
2593 (void) SetXMLTreeContent(child,value);
2595 child=AddChildToXMLTree(xml_info,"stroke-alpha",0);
2596 if (child != (XMLTreeInfo *) NULL)
2598 (void) FormatLocaleString(value,MaxTextExtent,"%g",
2599 (double) QuantumScale*CurrentContext->stroke.alpha);
2600 (void) SetXMLTreeContent(child,value);
2602 child=AddChildToXMLTree(xml_info,"stroke-width",0);
2603 if (child != (XMLTreeInfo *) NULL)
2605 (void) FormatLocaleString(value,MaxTextExtent,"%g",
2606 CurrentContext->stroke_width);
2607 (void) SetXMLTreeContent(child,value);
2609 child=AddChildToXMLTree(xml_info,"text-align",0);
2610 if (child != (XMLTreeInfo *) NULL)
2612 (void) CopyMagickString(value,CommandOptionToMnemonic(MagickAlignOptions,
2613 (ssize_t) CurrentContext->align),MaxTextExtent);
2614 (void) SetXMLTreeContent(child,value);
2616 child=AddChildToXMLTree(xml_info,"text-antialias",0);
2617 if (child != (XMLTreeInfo *) NULL)
2619 (void) FormatLocaleString(value,MaxTextExtent,"%d",
2620 CurrentContext->text_antialias != MagickFalse ? 1 : 0);
2621 (void) SetXMLTreeContent(child,value);
2623 child=AddChildToXMLTree(xml_info,"text-undercolor",0);
2624 if (child != (XMLTreeInfo *) NULL)
2626 if (CurrentContext->undercolor.alpha != OpaqueAlpha)
2627 pixel.alpha_trait=CurrentContext->undercolor.alpha != OpaqueAlpha ?
2628 BlendPixelTrait : UndefinedPixelTrait;
2629 pixel=CurrentContext->undercolor;
2630 GetColorTuple(&pixel,MagickTrue,value);
2631 (void) SetXMLTreeContent(child,value);
2633 child=AddChildToXMLTree(xml_info,"vector-graphics",0);
2634 if (child != (XMLTreeInfo *) NULL)
2635 (void) SetXMLTreeContent(child,wand->mvg);
2636 xml=XMLTreeInfoToXML(xml_info);
2637 xml_info=DestroyXMLTree(xml_info);
2642 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2646 % D r a w G e t T e x t U n d e r C o l o r %
2650 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2652 % DrawGetTextUnderColor() returns the color of a background rectangle
2653 % to place under text annotations.
2655 % The format of the DrawGetTextUnderColor method is:
2657 % void DrawGetTextUnderColor(const DrawingWand *wand,
2658 % PixelWand *under_color)
2660 % A description of each parameter follows:
2662 % o wand: the drawing wand.
2664 % o under_color: Return the under color.
2667 WandExport void DrawGetTextUnderColor(const DrawingWand *wand,
2668 PixelWand *under_color)
2670 assert(wand != (const DrawingWand *) NULL);
2671 assert(wand->signature == WandSignature);
2672 assert(under_color != (PixelWand *) NULL);
2673 if (wand->debug != MagickFalse)
2674 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2675 PixelSetPixelColor(under_color,&CurrentContext->undercolor);
2679 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2687 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2689 % DrawLine() draws a line on the image using the current stroke color,
2690 % stroke alpha, and stroke width.
2692 % The format of the DrawLine method is:
2694 % void DrawLine(DrawingWand *wand,const double sx,const double sy,
2695 % const double ex,const double ey)
2697 % A description of each parameter follows:
2699 % o wand: the drawing wand.
2701 % o sx: starting x ordinate
2703 % o sy: starting y ordinate
2705 % o ex: ending x ordinate
2707 % o ey: ending y ordinate
2710 WandExport void DrawLine(DrawingWand *wand,const double sx,const double sy,
2711 const double ex,const double ey)
2713 assert(wand != (DrawingWand *) NULL);
2714 assert(wand->signature == WandSignature);
2715 if (wand->debug != MagickFalse)
2716 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2717 (void) MvgPrintf(wand,"line %g %g %g %g\n",sx,sy,ex,ey);
2721 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2725 % D r a w M a t t e %
2729 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2731 % DrawMatte() paints on the image's alpha channel in order to set effected
2732 % pixels to transparent.
2733 % to influence the alpha of pixels. The available paint
2736 % PointMethod: Select the target pixel
2737 % ReplaceMethod: Select any pixel that matches the target pixel.
2738 % FloodfillMethod: Select the target pixel and matching neighbors.
2739 % FillToBorderMethod: Select the target pixel and neighbors not matching
2741 % ResetMethod: Select all pixels.
2743 % The format of the DrawMatte method is:
2745 % void DrawMatte(DrawingWand *wand,const double x,const double y,
2746 % const PaintMethod paint_method)
2748 % A description of each parameter follows:
2750 % o wand: the drawing wand.
2756 % o paint_method: paint method.
2759 WandExport void DrawMatte(DrawingWand *wand,const double x,const double y,
2760 const PaintMethod paint_method)
2762 assert(wand != (DrawingWand *) NULL);
2763 assert(wand->signature == WandSignature);
2764 if (wand->debug != MagickFalse)
2765 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2766 (void) MvgPrintf(wand,"matte %g %g '%s'\n",x,y,CommandOptionToMnemonic(
2767 MagickMethodOptions,(ssize_t) paint_method));
2771 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2775 % D r a w P a t h C l o s e %
2779 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2781 % DrawPathClose() adds a path element to the current path which closes the
2782 % current subpath by drawing a straight line from the current point to the
2783 % current subpath's most recent starting point (usually, the most recent
2786 % The format of the DrawPathClose method is:
2788 % void DrawPathClose(DrawingWand *wand)
2790 % A description of each parameter follows:
2792 % o wand: the drawing wand.
2795 WandExport void DrawPathClose(DrawingWand *wand)
2797 assert(wand != (DrawingWand *) NULL);
2798 assert(wand->signature == WandSignature);
2799 if (wand->debug != MagickFalse)
2800 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2801 (void) MvgAutoWrapPrintf(wand,"%s",wand->path_mode == AbsolutePathMode ?
2806 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2810 % D r a w P a t h C u r v e T o A b s o l u t e %
2814 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2816 % DrawPathCurveToAbsolute() draws a cubic Bezier curve from the current
2817 % point to (x,y) using (x1,y1) as the control point at the beginning of
2818 % the curve and (x2,y2) as the control point at the end of the curve using
2819 % absolute coordinates. At the end of the command, the new current point
2820 % becomes the final (x,y) coordinate pair used in the polybezier.
2822 % The format of the DrawPathCurveToAbsolute method is:
2824 % void DrawPathCurveToAbsolute(DrawingWand *wand,const double x1,
2825 % const double y1,const double x2,const double y2,const double x,
2828 % A description of each parameter follows:
2830 % o wand: the drawing wand.
2832 % o x1: x ordinate of control point for curve beginning
2834 % o y1: y ordinate of control point for curve beginning
2836 % o x2: x ordinate of control point for curve ending
2838 % o y2: y ordinate of control point for curve ending
2840 % o x: x ordinate of the end of the curve
2842 % o y: y ordinate of the end of the curve
2846 static void DrawPathCurveTo(DrawingWand *wand,const PathMode mode,
2847 const double x1,const double y1,const double x2,const double y2,
2848 const double x,const double y)
2850 assert(wand != (DrawingWand *) NULL);
2851 assert(wand->signature == WandSignature);
2852 if (wand->debug != MagickFalse)
2853 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2854 if ((wand->path_operation != PathCurveToOperation) ||
2855 (wand->path_mode != mode))
2857 wand->path_operation=PathCurveToOperation;
2858 wand->path_mode=mode;
2859 (void) MvgAutoWrapPrintf(wand, "%c%g %g %g %g %g %g",
2860 mode == AbsolutePathMode ? 'C' : 'c',x1,y1,x2,y2,x,y);
2863 (void) MvgAutoWrapPrintf(wand," %g %g %g %g %g %g",x1,y1,
2867 WandExport void DrawPathCurveToAbsolute(DrawingWand *wand,const double x1,
2868 const double y1,const double x2,const double y2,const double x,const double y)
2870 assert(wand != (DrawingWand *) NULL);
2871 assert(wand->signature == WandSignature);
2872 if (wand->debug != MagickFalse)
2873 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2874 DrawPathCurveTo(wand,AbsolutePathMode,x1,y1,x2,y2,x,y);
2878 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2882 % D r a w P a t h C u r v e T o R e l a t i v e %
2886 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2888 % DrawPathCurveToRelative() draws a cubic Bezier curve from the current
2889 % point to (x,y) using (x1,y1) as the control point at the beginning of
2890 % the curve and (x2,y2) as the control point at the end of the curve using
2891 % relative coordinates. At the end of the command, the new current point
2892 % becomes the final (x,y) coordinate pair used in the polybezier.
2894 % The format of the DrawPathCurveToRelative method is:
2896 % void DrawPathCurveToRelative(DrawingWand *wand,const double x1,
2897 % const double y1,const double x2,const double y2,const double x,
2900 % A description of each parameter follows:
2902 % o wand: the drawing wand.
2904 % o x1: x ordinate of control point for curve beginning
2906 % o y1: y ordinate of control point for curve beginning
2908 % o x2: x ordinate of control point for curve ending
2910 % o y2: y ordinate of control point for curve ending
2912 % o x: x ordinate of the end of the curve
2914 % o y: y ordinate of the end of the curve
2917 WandExport void DrawPathCurveToRelative(DrawingWand *wand,const double x1,
2918 const double y1,const double x2,const double y2,const double x,const double y)
2920 assert(wand != (DrawingWand *) NULL);
2921 assert(wand->signature == WandSignature);
2922 if (wand->debug != MagickFalse)
2923 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2924 DrawPathCurveTo(wand,RelativePathMode,x1,y1,x2,y2,x,y);
2928 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2932 % D r a w P a t h C u r v e T o Q u a d r a t i c B e z i e r A b s o l u t e %
2936 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2938 % DrawPathCurveToQuadraticBezierAbsolute() draws a quadratic Bezier curve
2939 % from the current point to (x,y) using (x1,y1) as the control point using
2940 % absolute coordinates. At the end of the command, the new current point
2941 % becomes the final (x,y) coordinate pair used in the polybezier.
2943 % The format of the DrawPathCurveToQuadraticBezierAbsolute method is:
2945 % void DrawPathCurveToQuadraticBezierAbsolute(DrawingWand *wand,
2946 % const double x1,const double y1,onst double x,const double y)
2948 % A description of each parameter follows:
2950 % o wand: the drawing wand.
2952 % o x1: x ordinate of the control point
2954 % o y1: y ordinate of the control point
2956 % o x: x ordinate of final point
2958 % o y: y ordinate of final point
2962 static void DrawPathCurveToQuadraticBezier(DrawingWand *wand,
2963 const PathMode mode,const double x1,double y1,const double x,const double y)
2965 assert(wand != (DrawingWand *) NULL);
2966 assert(wand->signature == WandSignature);
2967 if (wand->debug != MagickFalse)
2968 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2969 if ((wand->path_operation != PathCurveToQuadraticBezierOperation) ||
2970 (wand->path_mode != mode))
2972 wand->path_operation=PathCurveToQuadraticBezierOperation;
2973 wand->path_mode=mode;
2974 (void) MvgAutoWrapPrintf(wand, "%c%g %g %g %g",
2975 mode == AbsolutePathMode ? 'Q' : 'q',x1,y1,x,y);
2978 (void) MvgAutoWrapPrintf(wand," %g %g %g %g",x1,y1,x,y);
2981 WandExport void DrawPathCurveToQuadraticBezierAbsolute(DrawingWand *wand,
2982 const double x1,const double y1,const double x,const double y)
2984 assert(wand != (DrawingWand *) NULL);
2985 assert(wand->signature == WandSignature);
2986 if (wand->debug != MagickFalse)
2987 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
2988 DrawPathCurveToQuadraticBezier(wand,AbsolutePathMode,x1,y1,x,y);
2992 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2996 % D r a w P a t h C u r v e T o Q u a d r a t i c B e z i e r R e l a t i v e
3000 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3002 % DrawPathCurveToQuadraticBezierRelative() draws a quadratic Bezier curve
3003 % from the current point to (x,y) using (x1,y1) as the control point using
3004 % relative coordinates. At the end of the command, the new current point
3005 % becomes the final (x,y) coordinate pair used in the polybezier.
3007 % The format of the DrawPathCurveToQuadraticBezierRelative method is:
3009 % void DrawPathCurveToQuadraticBezierRelative(DrawingWand *wand,
3010 % const double x1,const double y1,const double x,const double y)
3012 % A description of each parameter follows:
3014 % o wand: the drawing wand.
3016 % o x1: x ordinate of the control point
3018 % o y1: y ordinate of the control point
3020 % o x: x ordinate of final point
3022 % o y: y ordinate of final point
3025 WandExport void DrawPathCurveToQuadraticBezierRelative(DrawingWand *wand,
3026 const double x1,const double y1,const double x,const double y)
3028 assert(wand != (DrawingWand *) NULL);
3029 assert(wand->signature == WandSignature);
3030 if (wand->debug != MagickFalse)
3031 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3032 DrawPathCurveToQuadraticBezier(wand,RelativePathMode,x1,y1,x,y);
3036 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3040 % D r a w P a t h C u r v e T o Q u a d r a t i c B e z i e r S m o o t h %
3044 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3046 % DrawPathCurveToQuadraticBezierSmoothAbsolute() draws a quadratic
3047 % Bezier curve (using absolute coordinates) from the current point to
3048 % (x,y). The control point is assumed to be the reflection of the
3049 % control point on the previous command relative to the current
3050 % point. (If there is no previous command or if the previous command was
3051 % not a DrawPathCurveToQuadraticBezierAbsolute,
3052 % DrawPathCurveToQuadraticBezierRelative,
3053 % DrawPathCurveToQuadraticBezierSmoothAbsolute or
3054 % DrawPathCurveToQuadraticBezierSmoothRelative, assume the control point
3055 % is coincident with the current point.). At the end of the command, the
3056 % new current point becomes the final (x,y) coordinate pair used in the
3059 % The format of the DrawPathCurveToQuadraticBezierSmoothAbsolute method is:
3061 % void DrawPathCurveToQuadraticBezierSmoothAbsolute(
3062 % DrawingWand *wand,const double x,const double y)
3064 % A description of each parameter follows:
3066 % o wand: the drawing wand.
3068 % o x: x ordinate of final point
3070 % o y: y ordinate of final point
3074 static void DrawPathCurveToQuadraticBezierSmooth(DrawingWand *wand,
3075 const PathMode mode,const double x,const double y)
3077 assert(wand != (DrawingWand *) NULL);
3078 assert(wand->signature == WandSignature);
3079 if (wand->debug != MagickFalse)
3080 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3081 if ((wand->path_operation != PathCurveToQuadraticBezierSmoothOperation) ||
3082 (wand->path_mode != mode))
3084 wand->path_operation=PathCurveToQuadraticBezierSmoothOperation;
3085 wand->path_mode=mode;
3086 (void) MvgAutoWrapPrintf(wand,"%c%g %g",mode == AbsolutePathMode ?
3090 (void) MvgAutoWrapPrintf(wand," %g %g",x,y);
3093 WandExport void DrawPathCurveToQuadraticBezierSmoothAbsolute(DrawingWand *wand,
3094 const double x,const double y)
3096 assert(wand != (DrawingWand *) NULL);
3097 assert(wand->signature == WandSignature);
3098 if (wand->debug != MagickFalse)
3099 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3100 DrawPathCurveToQuadraticBezierSmooth(wand,AbsolutePathMode,x,y);
3104 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3108 % D r a w P a t h C u r v e T o Q u a d r a t i c B e z i e r S m o o t h %
3112 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3114 % DrawPathCurveToQuadraticBezierSmoothRelative() draws a quadratic Bezier
3115 % curve (using relative coordinates) from the current point to (x,y). The
3116 % control point is assumed to be the reflection of the control point on the
3117 % previous command relative to the current point. (If there is no previous
3118 % command or if the previous command was not a
3119 % DrawPathCurveToQuadraticBezierAbsolute,
3120 % DrawPathCurveToQuadraticBezierRelative,
3121 % DrawPathCurveToQuadraticBezierSmoothAbsolute or
3122 % DrawPathCurveToQuadraticBezierSmoothRelative, assume the control point is
3123 % coincident with the current point.). At the end of the command, the new
3124 % current point becomes the final (x,y) coordinate pair used in the polybezier.
3126 % The format of the DrawPathCurveToQuadraticBezierSmoothRelative method is:
3128 % void DrawPathCurveToQuadraticBezierSmoothRelative(DrawingWand *wand,
3129 % const double x,const double y)
3131 % A description of each parameter follows:
3133 % o wand: the drawing wand.
3135 % o x: x ordinate of final point
3137 % o y: y ordinate of final point
3140 WandExport void DrawPathCurveToQuadraticBezierSmoothRelative(DrawingWand *wand,
3141 const double x,const double y)
3143 DrawPathCurveToQuadraticBezierSmooth(wand,RelativePathMode,x,y);
3147 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3151 % D r a w P a t h C u r v e T o S m o o t h A b s o l u t e %
3155 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3157 % DrawPathCurveToSmoothAbsolute() draws a cubic Bezier curve from the
3158 % current point to (x,y) using absolute coordinates. The first control
3159 % point is assumed to be the reflection of the second control point on
3160 % the previous command relative to the current point. (If there is no
3161 % previous command or if the previous command was not an
3162 % DrawPathCurveToAbsolute, DrawPathCurveToRelative,
3163 % DrawPathCurveToSmoothAbsolute or DrawPathCurveToSmoothRelative, assume
3164 % the first control point is coincident with the current point.) (x2,y2)
3165 % is the second control point (i.e., the control point at the end of the
3166 % curve). At the end of the command, the new current point becomes the
3167 % final (x,y) coordinate pair used in the polybezier.
3169 % The format of the DrawPathCurveToSmoothAbsolute method is:
3171 % void DrawPathCurveToSmoothAbsolute(DrawingWand *wand,
3172 % const double x2,const double y2,const double x,const double y)
3174 % A description of each parameter follows:
3176 % o wand: the drawing wand.
3178 % o x2: x ordinate of second control point
3180 % o y2: y ordinate of second control point
3182 % o x: x ordinate of termination point
3184 % o y: y ordinate of termination point
3188 static void DrawPathCurveToSmooth(DrawingWand *wand,const PathMode mode,
3189 const double x2,const double y2,const double x,const double y)
3191 assert(wand != (DrawingWand *) NULL);
3192 assert(wand->signature == WandSignature);
3193 if (wand->debug != MagickFalse)
3194 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3195 if ((wand->path_operation != PathCurveToSmoothOperation) ||
3196 (wand->path_mode != mode))
3198 wand->path_operation=PathCurveToSmoothOperation;
3199 wand->path_mode=mode;
3200 (void) MvgAutoWrapPrintf(wand,"%c%g %g %g %g",
3201 mode == AbsolutePathMode ? 'S' : 's',x2,y2,x,y);
3204 (void) MvgAutoWrapPrintf(wand," %g %g %g %g",x2,y2,x,y);
3207 WandExport void DrawPathCurveToSmoothAbsolute(DrawingWand *wand,const double x2,
3208 const double y2,const double x,const double y)
3210 assert(wand != (DrawingWand *) NULL);
3211 assert(wand->signature == WandSignature);
3212 if (wand->debug != MagickFalse)
3213 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3214 DrawPathCurveToSmooth(wand,AbsolutePathMode,x2,y2,x,y);
3218 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3222 % D r a w P a t h C u r v e T o S m o o t h R e l a t i v e %
3226 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3228 % DrawPathCurveToSmoothRelative() draws a cubic Bezier curve from the current
3229 % point to (x,y) using relative coordinates. The first control point is
3230 % assumed to be the reflection of the second control point on the previous
3231 % command relative to the current point. (If there is no previous command or
3232 % if the previous command was not an DrawPathCurveToAbsolute,
3233 % DrawPathCurveToRelative, DrawPathCurveToSmoothAbsolute or
3234 % DrawPathCurveToSmoothRelative, assume the first control point is coincident
3235 % with the current point.) (x2,y2) is the second control point (i.e., the
3236 % control point at the end of the curve). At the end of the command, the new
3237 % current point becomes the final (x,y) coordinate pair used in the polybezier.
3239 % The format of the DrawPathCurveToSmoothRelative method is:
3241 % void DrawPathCurveToSmoothRelative(DrawingWand *wand,
3242 % const double x2,const double y2,const double x,const double y)
3244 % A description of each parameter follows:
3246 % o wand: the drawing wand.
3248 % o x2: x ordinate of second control point
3250 % o y2: y ordinate of second control point
3252 % o x: x ordinate of termination point
3254 % o y: y ordinate of termination point
3257 WandExport void DrawPathCurveToSmoothRelative(DrawingWand *wand,const double x2,
3258 const double y2,const double x,const double y)
3260 assert(wand != (DrawingWand *) NULL);
3261 assert(wand->signature == WandSignature);
3262 if (wand->debug != MagickFalse)
3263 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3264 DrawPathCurveToSmooth(wand,RelativePathMode,x2,y2,x,y);
3268 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3272 % D r a w P a t h E l l i p t i c A r c A b s o l u t e %
3276 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3278 % DrawPathEllipticArcAbsolute() draws an elliptical arc from the current point
3279 % to (x, y) using absolute coordinates. The size and orientation of the
3280 % ellipse are defined by two radii (rx, ry) and an xAxisRotation, which
3281 % indicates how the ellipse as a whole is rotated relative to the current
3282 % coordinate system. The center (cx, cy) of the ellipse is calculated
3283 % automagically to satisfy the constraints imposed by the other parameters.
3284 % largeArcFlag and sweepFlag contribute to the automatic calculations and help
3285 % determine how the arc is drawn. If largeArcFlag is true then draw the larger
3286 % of the available arcs. If sweepFlag is true, then draw the arc matching a
3287 % clock-wise rotation.
3289 % The format of the DrawPathEllipticArcAbsolute method is:
3291 % void DrawPathEllipticArcAbsolute(DrawingWand *wand,
3292 % const double rx,const double ry,const double x_axis_rotation,
3293 % const MagickBooleanType large_arc_flag,
3294 % const MagickBooleanType sweep_flag,const double x,const double y)
3296 % A description of each parameter follows:
3298 % o wand: the drawing wand.
3304 % o x_axis_rotation: indicates how the ellipse as a whole is rotated
3305 % relative to the current coordinate system
3307 % o large_arc_flag: If non-zero (true) then draw the larger of the
3310 % o sweep_flag: If non-zero (true) then draw the arc matching a
3311 % clock-wise rotation
3316 static void DrawPathEllipticArc(DrawingWand *wand, const PathMode mode,
3317 const double rx,const double ry,const double x_axis_rotation,
3318 const MagickBooleanType large_arc_flag,const MagickBooleanType sweep_flag,
3319 const double x,const double y)
3321 assert(wand != (DrawingWand *) NULL);
3322 assert(wand->signature == WandSignature);
3323 if (wand->debug != MagickFalse)
3324 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3325 if ((wand->path_operation != PathEllipticArcOperation) ||
3326 (wand->path_mode != mode))
3328 wand->path_operation=PathEllipticArcOperation;
3329 wand->path_mode=mode;
3330 (void) MvgAutoWrapPrintf(wand, "%c%g %g %g %u %u %g %g",
3331 mode == AbsolutePathMode ? 'A' : 'a',rx,ry,x_axis_rotation,
3332 large_arc_flag,sweep_flag,x,y);
3335 (void) MvgAutoWrapPrintf(wand," %g %g %g %u %u %g %g",rx,ry,
3336 x_axis_rotation,large_arc_flag,sweep_flag,x,y);
3339 WandExport void DrawPathEllipticArcAbsolute(DrawingWand *wand,const double rx,
3340 const double ry,const double x_axis_rotation,
3341 const MagickBooleanType large_arc_flag,const MagickBooleanType sweep_flag,
3342 const double x,const double y)
3344 assert(wand != (DrawingWand *) NULL);
3345 assert(wand->signature == WandSignature);
3346 if (wand->debug != MagickFalse)
3347 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3348 DrawPathEllipticArc(wand,AbsolutePathMode,rx,ry,x_axis_rotation,
3349 large_arc_flag,sweep_flag,x,y);
3353 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3357 % D r a w P a t h E l l i p t i c A r c R e l a t i v e %
3361 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3363 % DrawPathEllipticArcRelative() draws an elliptical arc from the current point
3364 % to (x, y) using relative coordinates. The size and orientation of the
3365 % ellipse are defined by two radii (rx, ry) and an xAxisRotation, which
3366 % indicates how the ellipse as a whole is rotated relative to the current
3367 % coordinate system. The center (cx, cy) of the ellipse is calculated
3368 % automagically to satisfy the constraints imposed by the other parameters.
3369 % largeArcFlag and sweepFlag contribute to the automatic calculations and help
3370 % determine how the arc is drawn. If largeArcFlag is true then draw the larger
3371 % of the available arcs. If sweepFlag is true, then draw the arc matching a
3372 % clock-wise rotation.
3374 % The format of the DrawPathEllipticArcRelative method is:
3376 % void DrawPathEllipticArcRelative(DrawingWand *wand,
3377 % const double rx,const double ry,const double x_axis_rotation,
3378 % const MagickBooleanType large_arc_flag,
3379 % const MagickBooleanType sweep_flag,const double x,const double y)
3381 % A description of each parameter follows:
3383 % o wand: the drawing wand.
3389 % o x_axis_rotation: indicates how the ellipse as a whole is rotated
3390 % relative to the current coordinate system
3392 % o large_arc_flag: If non-zero (true) then draw the larger of the
3395 % o sweep_flag: If non-zero (true) then draw the arc matching a
3396 % clock-wise rotation
3399 WandExport void DrawPathEllipticArcRelative(DrawingWand *wand,const double rx,
3400 const double ry,const double x_axis_rotation,
3401 const MagickBooleanType large_arc_flag,const MagickBooleanType sweep_flag,
3402 const double x,const double y)
3404 DrawPathEllipticArc(wand,RelativePathMode,rx,ry,x_axis_rotation,
3405 large_arc_flag,sweep_flag,x,y);
3409 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3413 % D r a w P a t h F i n i s h %
3417 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3419 % DrawPathFinish() terminates the current path.
3421 % The format of the DrawPathFinish method is:
3423 % void DrawPathFinish(DrawingWand *wand)
3425 % A description of each parameter follows:
3427 % o wand: the drawing wand.
3430 WandExport void DrawPathFinish(DrawingWand *wand)
3432 assert(wand != (DrawingWand *) NULL);
3433 assert(wand->signature == WandSignature);
3434 if (wand->debug != MagickFalse)
3435 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3436 (void) MvgPrintf(wand,"'\n");
3437 wand->path_operation=PathDefaultOperation;
3438 wand->path_mode=DefaultPathMode;
3442 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3446 % D r a w P a t h L i n e T o A b s o l u t e %
3450 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3452 % DrawPathLineToAbsolute() draws a line path from the current point to the
3453 % given coordinate using absolute coordinates. The coordinate then becomes
3454 % the new current point.
3456 % The format of the DrawPathLineToAbsolute method is:
3458 % void DrawPathLineToAbsolute(DrawingWand *wand,const double x,
3461 % A description of each parameter follows:
3463 % o wand: the drawing wand.
3465 % o x: target x ordinate
3467 % o y: target y ordinate
3470 static void DrawPathLineTo(DrawingWand *wand,const PathMode mode,
3471 const double x,const double y)
3473 assert(wand != (DrawingWand *) NULL);
3474 assert(wand->signature == WandSignature);
3475 if (wand->debug != MagickFalse)
3476 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3477 if ((wand->path_operation != PathLineToOperation) ||
3478 (wand->path_mode != mode))
3480 wand->path_operation=PathLineToOperation;
3481 wand->path_mode=mode;
3482 (void) MvgAutoWrapPrintf(wand,"%c%g %g",mode == AbsolutePathMode ?
3486 (void) MvgAutoWrapPrintf(wand," %g %g",x,y);
3489 WandExport void DrawPathLineToAbsolute(DrawingWand *wand,const double x,
3492 assert(wand != (DrawingWand *) NULL);
3493 assert(wand->signature == WandSignature);
3494 if (wand->debug != MagickFalse)
3495 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3496 DrawPathLineTo(wand,AbsolutePathMode,x,y);
3500 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3504 % D r a w P a t h L i n e T o R e l a t i v e %
3508 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3510 % DrawPathLineToRelative() draws a line path from the current point to the
3511 % given coordinate using relative coordinates. The coordinate then becomes
3512 % the new current point.
3514 % The format of the DrawPathLineToRelative method is:
3516 % void DrawPathLineToRelative(DrawingWand *wand,const double x,
3519 % A description of each parameter follows:
3521 % o wand: the drawing wand.
3523 % o x: target x ordinate
3525 % o y: target y ordinate
3528 WandExport void DrawPathLineToRelative(DrawingWand *wand,const double x,
3531 assert(wand != (DrawingWand *) NULL);
3532 assert(wand->signature == WandSignature);
3533 if (wand->debug != MagickFalse)
3534 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3535 DrawPathLineTo(wand,RelativePathMode,x,y);
3539 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3543 % D r a w P a t h L i n e T o H o r i z o n t a l A b s o l u t e %
3547 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3549 % DrawPathLineToHorizontalAbsolute() draws a horizontal line path from the
3550 % current point to the target point using absolute coordinates. The target
3551 % point then becomes the new current point.
3553 % The format of the DrawPathLineToHorizontalAbsolute method is:
3555 % void DrawPathLineToHorizontalAbsolute(DrawingWand *wand,const double x)
3557 % A description of each parameter follows:
3559 % o wand: the drawing wand.
3561 % o x: target x ordinate
3565 static void DrawPathLineToHorizontal(DrawingWand *wand,const PathMode mode,
3568 assert(wand != (DrawingWand *) NULL);
3569 assert(wand->signature == WandSignature);
3570 if (wand->debug != MagickFalse)
3571 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3572 if ((wand->path_operation != PathLineToHorizontalOperation) ||
3573 (wand->path_mode != mode))
3575 wand->path_operation=PathLineToHorizontalOperation;
3576 wand->path_mode=mode;
3577 (void) MvgAutoWrapPrintf(wand,"%c%g",mode == AbsolutePathMode ?
3581 (void) MvgAutoWrapPrintf(wand," %g",x);
3584 WandExport void DrawPathLineToHorizontalAbsolute(DrawingWand *wand,
3587 assert(wand != (DrawingWand *) NULL);
3588 assert(wand->signature == WandSignature);
3589 if (wand->debug != MagickFalse)
3590 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3591 DrawPathLineToHorizontal(wand,AbsolutePathMode,x);
3595 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3599 % D r a w P a t h L i n e T o H o r i z o n t a l R e l a t i v e %
3603 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3605 % DrawPathLineToHorizontalRelative() draws a horizontal line path from the
3606 % current point to the target point using relative coordinates. The target
3607 % point then becomes the new current point.
3609 % The format of the DrawPathLineToHorizontalRelative method is:
3611 % void DrawPathLineToHorizontalRelative(DrawingWand *wand,
3614 % A description of each parameter follows:
3616 % o wand: the drawing wand.
3618 % o x: target x ordinate
3621 WandExport void DrawPathLineToHorizontalRelative(DrawingWand *wand,
3624 DrawPathLineToHorizontal(wand,RelativePathMode,x);
3628 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3632 % D r a w P a t h L i n e T o V e r t i c a l A b s o l u t e %
3636 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3638 % DrawPathLineToVerticalAbsolute() draws a vertical line path from the
3639 % current point to the target point using absolute coordinates. The target
3640 % point then becomes the new current point.
3642 % The format of the DrawPathLineToVerticalAbsolute method is:
3644 % void DrawPathLineToVerticalAbsolute(DrawingWand *wand,
3647 % A description of each parameter follows:
3649 % o wand: the drawing wand.
3651 % o y: target y ordinate
3655 static void DrawPathLineToVertical(DrawingWand *wand,const PathMode mode,
3658 assert(wand != (DrawingWand *) NULL);
3659 assert(wand->signature == WandSignature);
3660 if (wand->debug != MagickFalse)
3661 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3662 if ((wand->path_operation != PathLineToVerticalOperation) ||
3663 (wand->path_mode != mode))
3665 wand->path_operation=PathLineToVerticalOperation;
3666 wand->path_mode=mode;
3667 (void) MvgAutoWrapPrintf(wand,"%c%g",mode == AbsolutePathMode ?
3671 (void) MvgAutoWrapPrintf(wand," %g",y);
3674 WandExport void DrawPathLineToVerticalAbsolute(DrawingWand *wand,const double y)
3676 assert(wand != (DrawingWand *) NULL);
3677 assert(wand->signature == WandSignature);
3678 if (wand->debug != MagickFalse)
3679 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3680 DrawPathLineToVertical(wand,AbsolutePathMode,y);
3684 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3688 % D r a w P a t h L i n e T o V e r t i c a l R e l a t i v e %
3692 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3694 % DrawPathLineToVerticalRelative() draws a vertical line path from the
3695 % current point to the target point using relative coordinates. The target
3696 % point then becomes the new current point.
3698 % The format of the DrawPathLineToVerticalRelative method is:
3700 % void DrawPathLineToVerticalRelative(DrawingWand *wand,
3703 % A description of each parameter follows:
3705 % o wand: the drawing wand.
3707 % o y: target y ordinate
3710 WandExport void DrawPathLineToVerticalRelative(DrawingWand *wand,const double y)
3712 assert(wand != (DrawingWand *) NULL);
3713 assert(wand->signature == WandSignature);
3714 if (wand->debug != MagickFalse)
3715 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3716 DrawPathLineToVertical(wand,RelativePathMode,y);
3719 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3723 % D r a w P a t h M o v e T o A b s o l u t e %
3727 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3729 % DrawPathMoveToAbsolute() starts a new sub-path at the given coordinate
3730 % using absolute coordinates. The current point then becomes the
3731 % specified coordinate.
3733 % The format of the DrawPathMoveToAbsolute method is:
3735 % void DrawPathMoveToAbsolute(DrawingWand *wand,const double x,
3738 % A description of each parameter follows:
3740 % o wand: the drawing wand.
3742 % o x: target x ordinate
3744 % o y: target y ordinate
3748 static void DrawPathMoveTo(DrawingWand *wand,const PathMode mode,const double x,
3751 assert(wand != (DrawingWand *) NULL);
3752 assert(wand->signature == WandSignature);
3753 if (wand->debug != MagickFalse)
3754 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3755 if ((wand->path_operation != PathMoveToOperation) ||
3756 (wand->path_mode != mode))
3758 wand->path_operation=PathMoveToOperation;
3759 wand->path_mode=mode;
3760 (void) MvgAutoWrapPrintf(wand,"%c%g %g",mode == AbsolutePathMode ?
3764 (void) MvgAutoWrapPrintf(wand," %g %g",x,y);
3767 WandExport void DrawPathMoveToAbsolute(DrawingWand *wand,const double x,
3770 assert(wand != (DrawingWand *) NULL);
3771 assert(wand->signature == WandSignature);
3772 if (wand->debug != MagickFalse)
3773 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3774 DrawPathMoveTo(wand,AbsolutePathMode,x,y);
3778 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3782 % D r a w P a t h M o v e T o R e l a t i v e %
3786 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3788 % DrawPathMoveToRelative() starts a new sub-path at the given coordinate using
3789 % relative coordinates. The current point then becomes the specified
3792 % The format of the DrawPathMoveToRelative method is:
3794 % void DrawPathMoveToRelative(DrawingWand *wand,const double x,
3797 % A description of each parameter follows:
3799 % o wand: the drawing wand.
3801 % o x: target x ordinate
3803 % o y: target y ordinate
3806 WandExport void DrawPathMoveToRelative(DrawingWand *wand,const double x,
3809 assert(wand != (DrawingWand *) NULL);
3810 assert(wand->signature == WandSignature);
3811 if (wand->debug != MagickFalse)
3812 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3813 DrawPathMoveTo(wand,RelativePathMode,x,y);
3817 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3821 % D r a w P a t h S t a r t %
3825 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3827 % DrawPathStart() declares the start of a path drawing list which is terminated
3828 % by a matching DrawPathFinish() command. All other DrawPath commands must
3829 % be enclosed between a DrawPathStart() and a DrawPathFinish() command. This
3830 % is because path drawing commands are subordinate commands and they do not
3831 % function by themselves.
3833 % The format of the DrawPathStart method is:
3835 % void DrawPathStart(DrawingWand *wand)
3837 % A description of each parameter follows:
3839 % o wand: the drawing wand.
3842 WandExport void DrawPathStart(DrawingWand *wand)
3844 assert(wand != (DrawingWand *) NULL);
3845 assert(wand->signature == WandSignature);
3846 if (wand->debug != MagickFalse)
3847 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3848 (void) MvgPrintf(wand,"path '");
3849 wand->path_operation=PathDefaultOperation;
3850 wand->path_mode=DefaultPathMode;
3854 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3858 % D r a w P o i n t %
3862 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3864 % DrawPoint() draws a point using the current fill color.
3866 % The format of the DrawPoint method is:
3868 % void DrawPoint(DrawingWand *wand,const double x,const double y)
3870 % A description of each parameter follows:
3872 % o wand: the drawing wand.
3874 % o x: target x coordinate
3876 % o y: target y coordinate
3879 WandExport void DrawPoint(DrawingWand *wand,const double x,const double y)
3881 assert(wand != (DrawingWand *) NULL);
3882 assert(wand->signature == WandSignature);
3883 if (wand->debug != MagickFalse)
3884 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3885 (void) MvgPrintf(wand,"point %g %g\n",x,y);
3889 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3893 % D r a w P o l y g o n %
3897 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3899 % DrawPolygon() draws a polygon using the current stroke, stroke width, and
3900 % fill color or texture, using the specified array of coordinates.
3902 % The format of the DrawPolygon method is:
3904 % void DrawPolygon(DrawingWand *wand,
3905 % const size_t number_coordinates,const PointInfo *coordinates)
3907 % A description of each parameter follows:
3909 % o wand: the drawing wand.
3911 % o number_coordinates: number of coordinates
3913 % o coordinates: coordinate array
3916 WandExport void DrawPolygon(DrawingWand *wand,
3917 const size_t number_coordinates,const PointInfo *coordinates)
3919 assert(wand != (DrawingWand *) NULL);
3920 assert(wand->signature == WandSignature);
3921 if (wand->debug != MagickFalse)
3922 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3923 MvgAppendPointsCommand(wand,"polygon",number_coordinates,coordinates);
3927 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3931 % D r a w P o l y l i n e %
3935 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3937 % DrawPolyline() draws a polyline using the current stroke, stroke width, and
3938 % fill color or texture, using the specified array of coordinates.
3940 % The format of the DrawPolyline method is:
3942 % void DrawPolyline(DrawingWand *wand,
3943 % const size_t number_coordinates,const PointInfo *coordinates)
3945 % A description of each parameter follows:
3947 % o wand: the drawing wand.
3949 % o number_coordinates: number of coordinates
3951 % o coordinates: coordinate array
3954 WandExport void DrawPolyline(DrawingWand *wand,
3955 const size_t number_coordinates,const PointInfo *coordinates)
3957 assert(wand != (DrawingWand *) NULL);
3958 assert(wand->signature == WandSignature);
3959 if (wand->debug != MagickFalse)
3960 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3961 MvgAppendPointsCommand(wand,"polyline",number_coordinates,coordinates);
3965 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3969 % D r a w P o p C l i p P a t h %
3973 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3975 % DrawPopClipPath() terminates a clip path definition.
3977 % The format of the DrawPopClipPath method is:
3979 % void DrawPopClipPath(DrawingWand *wand)
3981 % A description of each parameter follows:
3983 % o wand: the drawing wand.
3986 WandExport void DrawPopClipPath(DrawingWand *wand)
3988 assert(wand != (DrawingWand *) NULL);
3989 assert(wand->signature == WandSignature);
3990 if (wand->debug != MagickFalse)
3991 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
3992 if (wand->indent_depth > 0)
3993 wand->indent_depth--;
3994 (void) MvgPrintf(wand,"pop clip-path\n");
3998 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4002 % D r a w P o p D e f s %
4006 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4008 % DrawPopDefs() terminates a definition list.
4010 % The format of the DrawPopDefs method is:
4012 % void DrawPopDefs(DrawingWand *wand)
4014 % A description of each parameter follows:
4016 % o wand: the drawing wand.
4019 WandExport void DrawPopDefs(DrawingWand *wand)
4021 assert(wand != (DrawingWand *) NULL);
4022 assert(wand->signature == WandSignature);
4023 if (wand->debug != MagickFalse)
4024 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4025 if (wand->indent_depth > 0)
4026 wand->indent_depth--;
4027 (void) MvgPrintf(wand,"pop defs\n");
4031 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4035 % D r a w P o p P a t t e r n %
4039 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4041 % DrawPopPattern() terminates a pattern definition.
4043 % The format of the DrawPopPattern method is:
4045 % MagickBooleanType DrawPopPattern(DrawingWand *wand)
4047 % A description of each parameter follows:
4049 % o wand: the drawing wand.
4052 WandExport MagickBooleanType DrawPopPattern(DrawingWand *wand)
4055 geometry[MaxTextExtent],
4058 assert(wand != (DrawingWand *) NULL);
4059 assert(wand->signature == WandSignature);
4060 if (wand->debug != MagickFalse)
4061 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4062 if (wand->image == (Image *) NULL)
4063 ThrowDrawException(WandError,"ContainsNoImages",wand->name);
4064 if (wand->pattern_id == (const char *) NULL)
4066 ThrowDrawException(DrawWarning,"NotCurrentlyPushingPatternDefinition",
4068 return(MagickFalse);
4070 (void) FormatLocaleString(key,MaxTextExtent,"%s",wand->pattern_id);
4071 (void) SetImageArtifact(wand->image,key,wand->mvg+wand->pattern_offset);
4072 (void) FormatLocaleString(geometry,MaxTextExtent,"%.20gx%.20g%+.20g%+.20g",
4073 (double) wand->pattern_bounds.width,(double) wand->pattern_bounds.height,
4074 (double) wand->pattern_bounds.x,(double) wand->pattern_bounds.y);
4075 (void) SetImageArtifact(wand->image,key,geometry);
4076 wand->pattern_id=DestroyString(wand->pattern_id);
4077 wand->pattern_offset=0;
4078 wand->pattern_bounds.x=0;
4079 wand->pattern_bounds.y=0;
4080 wand->pattern_bounds.width=0;
4081 wand->pattern_bounds.height=0;
4082 wand->filter_off=MagickTrue;
4083 if (wand->indent_depth > 0)
4084 wand->indent_depth--;
4085 (void) MvgPrintf(wand,"pop pattern\n");
4090 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4094 % D r a w P u s h C l i p P a t h %
4098 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4100 % DrawPushClipPath() starts a clip path definition which is comprized of any
4101 % number of drawing commands and terminated by a DrawPopClipPath() command.
4103 % The format of the DrawPushClipPath method is:
4105 % void DrawPushClipPath(DrawingWand *wand,const char *clip_mask_id)
4107 % A description of each parameter follows:
4109 % o wand: the drawing wand.
4111 % o clip_mask_id: string identifier to associate with the clip path for
4115 WandExport void DrawPushClipPath(DrawingWand *wand,const char *clip_mask_id)
4117 assert(wand != (DrawingWand *) NULL);
4118 assert(wand->signature == WandSignature);
4119 if (wand->debug != MagickFalse)
4120 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4121 assert(clip_mask_id != (const char *) NULL);
4122 (void) MvgPrintf(wand,"push clip-path %s\n",clip_mask_id);
4123 wand->indent_depth++;
4127 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4131 % D r a w P u s h D e f s %
4135 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4137 % DrawPushDefs() indicates that commands up to a terminating DrawPopDefs()
4138 % command create named elements (e.g. clip-paths, textures, etc.) which
4139 % may safely be processed earlier for the sake of efficiency.
4141 % The format of the DrawPushDefs method is:
4143 % void DrawPushDefs(DrawingWand *wand)
4145 % A description of each parameter follows:
4147 % o wand: the drawing wand.
4150 WandExport void DrawPushDefs(DrawingWand *wand)
4152 assert(wand != (DrawingWand *) NULL);
4153 assert(wand->signature == WandSignature);
4154 if (wand->debug != MagickFalse)
4155 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4156 (void) MvgPrintf(wand,"push defs\n");
4157 wand->indent_depth++;
4161 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4165 % D r a w P u s h P a t t e r n %
4169 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4171 % DrawPushPattern() indicates that subsequent commands up to a
4172 % DrawPopPattern() command comprise the definition of a named pattern.
4173 % The pattern space is assigned top left corner coordinates, a width
4174 % and height, and becomes its own drawing space. Anything which can
4175 % be drawn may be used in a pattern definition.
4176 % Named patterns may be used as stroke or brush definitions.
4178 % The format of the DrawPushPattern method is:
4180 % MagickBooleanType DrawPushPattern(DrawingWand *wand,
4181 % const char *pattern_id,const double x,const double y,
4182 % const double width,const double height)
4184 % A description of each parameter follows:
4186 % o wand: the drawing wand.
4188 % o pattern_id: pattern identification for later reference
4190 % o x: x ordinate of top left corner
4192 % o y: y ordinate of top left corner
4194 % o width: width of pattern space
4196 % o height: height of pattern space
4199 WandExport MagickBooleanType DrawPushPattern(DrawingWand *wand,
4200 const char *pattern_id,const double x,const double y,const double width,
4201 const double height)
4203 assert(wand != (DrawingWand *) NULL);
4204 assert(wand->signature == WandSignature);
4205 if (wand->debug != MagickFalse)
4206 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4207 assert(pattern_id != (const char *) NULL);
4208 if (wand->pattern_id != NULL)
4210 ThrowDrawException(DrawError,"AlreadyPushingPatternDefinition",
4212 return(MagickFalse);
4214 wand->filter_off=MagickTrue;
4215 (void) MvgPrintf(wand,"push pattern %s %g %g %g %g\n",pattern_id,
4217 wand->indent_depth++;
4218 wand->pattern_id=AcquireString(pattern_id);
4219 wand->pattern_bounds.x=(ssize_t) ceil(x-0.5);
4220 wand->pattern_bounds.y=(ssize_t) ceil(y-0.5);
4221 wand->pattern_bounds.width=(size_t) floor(width+0.5);
4222 wand->pattern_bounds.height=(size_t) floor(height+0.5);
4223 wand->pattern_offset=wand->mvg_length;
4228 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4232 % D r a w R e c t a n g l e %
4236 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4238 % DrawRectangle() draws a rectangle given two coordinates and using the
4239 % current stroke, stroke width, and fill settings.
4241 % The format of the DrawRectangle method is:
4243 % void DrawRectangle(DrawingWand *wand,const double x1,
4244 % const double y1,const double x2,const double y2)
4246 % A description of each parameter follows:
4248 % o x1: x ordinate of first coordinate
4250 % o y1: y ordinate of first coordinate
4252 % o x2: x ordinate of second coordinate
4254 % o y2: y ordinate of second coordinate
4257 WandExport void DrawRectangle(DrawingWand *wand,const double x1,const double y1,
4258 const double x2,const double y2)
4260 assert(wand != (DrawingWand *) NULL);
4261 assert(wand->signature == WandSignature);
4262 if (wand->debug != MagickFalse)
4263 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4264 (void) MvgPrintf(wand,"rectangle %g %g %g %g\n",x1,y1,x2,y2);
4268 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4272 + D r a w R e n d e r %
4276 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4278 % DrawRender() renders all preceding drawing commands onto the image.
4280 % The format of the DrawRender method is:
4282 % MagickBooleanType DrawRender(DrawingWand *wand)
4284 % A description of each parameter follows:
4286 % o wand: the drawing wand.
4289 WandExport MagickBooleanType DrawRender(DrawingWand *wand)
4294 assert(wand != (const DrawingWand *) NULL);
4295 assert(wand->signature == WandSignature);
4296 if (wand->debug != MagickFalse)
4297 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4298 CurrentContext->primitive=wand->mvg;
4299 if (wand->debug != MagickFalse)
4300 (void) LogMagickEvent(DrawEvent,GetMagickModule(),"MVG:\n'%s'\n",wand->mvg);
4301 if (wand->image == (Image *) NULL)
4302 ThrowDrawException(WandError,"ContainsNoImages",wand->name);
4303 status=DrawImage(wand->image,CurrentContext,wand->exception);
4304 CurrentContext->primitive=(char *) NULL;
4309 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4313 % D r a w R e s e t V e c t o r G r a p h i c s %
4317 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4319 % DrawResetVectorGraphics() resets the vector graphics associated with the
4322 % The format of the DrawResetVectorGraphics method is:
4324 % void DrawResetVectorGraphics(DrawingWand *wand)
4326 % A description of each parameter follows:
4328 % o wand: the drawing wand.
4331 WandExport void DrawResetVectorGraphics(DrawingWand *wand)
4333 assert(wand != (DrawingWand *) NULL);
4334 assert(wand->signature == WandSignature);
4335 if (wand->debug != MagickFalse)
4336 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4337 if (wand->mvg != (char *) NULL)
4338 wand->mvg=DestroyString(wand->mvg);
4345 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4349 % D r a w R o t a t e %
4353 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4355 % DrawRotate() applies the specified rotation to the current coordinate space.
4357 % The format of the DrawRotate method is:
4359 % void DrawRotate(DrawingWand *wand,const double degrees)
4361 % A description of each parameter follows:
4363 % o wand: the drawing wand.
4365 % o degrees: degrees of rotation
4368 WandExport void DrawRotate(DrawingWand *wand,const double degrees)
4370 assert(wand != (DrawingWand *) NULL);
4371 assert(wand->signature == WandSignature);
4372 if (wand->debug != MagickFalse)
4373 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4374 (void) MvgPrintf(wand,"rotate %g\n",degrees);
4378 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4382 % D r a w R o u n d R e c t a n g l e %
4386 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4388 % DrawRoundRectangle() draws a rounted rectangle given two coordinates,
4389 % x & y corner radiuses and using the current stroke, stroke width,
4390 % and fill settings.
4392 % The format of the DrawRoundRectangle method is:
4394 % void DrawRoundRectangle(DrawingWand *wand,double x1,double y1,
4395 % double x2,double y2,double rx,double ry)
4397 % A description of each parameter follows:
4399 % o wand: the drawing wand.
4401 % o x1: x ordinate of first coordinate
4403 % o y1: y ordinate of first coordinate
4405 % o x2: x ordinate of second coordinate
4407 % o y2: y ordinate of second coordinate
4409 % o rx: radius of corner in horizontal direction
4411 % o ry: radius of corner in vertical direction
4414 WandExport void DrawRoundRectangle(DrawingWand *wand,double x1,double y1,
4415 double x2,double y2,double rx,double ry)
4417 assert(wand != (DrawingWand *) NULL);
4418 assert(wand->signature == WandSignature);
4419 if (wand->debug != MagickFalse)
4420 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4421 (void) MvgPrintf(wand,"roundrectangle %g %g %g %g %g %g\n",
4426 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4430 % D r a w S c a l e %
4434 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4436 % DrawScale() adjusts the scaling factor to apply in the horizontal and
4437 % vertical directions to the current coordinate space.
4439 % The format of the DrawScale method is:
4441 % void DrawScale(DrawingWand *wand,const double x,const double y)
4443 % A description of each parameter follows:
4445 % o wand: the drawing wand.
4447 % o x: horizontal scale factor
4449 % o y: vertical scale factor
4452 WandExport void DrawScale(DrawingWand *wand,const double x,const double y)
4454 assert(wand != (DrawingWand *) NULL);
4455 assert(wand->signature == WandSignature);
4456 if (wand->debug != MagickFalse)
4457 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4458 (void) MvgPrintf(wand,"scale %g %g\n",x,y);
4462 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4466 % D r a w S e t B o r d e r C o l o r %
4470 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4472 % DrawSetBorderColor() sets the border color to be used for drawing bordered
4475 % The format of the DrawSetBorderColor method is:
4477 % void DrawSetBorderColor(DrawingWand *wand,const PixelWand *border_wand)
4479 % A description of each parameter follows:
4481 % o wand: the drawing wand.
4483 % o border_wand: border wand.
4486 WandExport void DrawSetBorderColor(DrawingWand *wand,
4487 const PixelWand *border_wand)
4494 assert(wand != (DrawingWand *) NULL);
4495 assert(wand->signature == WandSignature);
4496 if (wand->debug != MagickFalse)
4497 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4498 assert(border_wand != (const PixelWand *) NULL);
4499 PixelGetQuantumPacket(border_wand,&border_color);
4500 new_border=border_color;
4501 current_border=(&CurrentContext->border_color);
4502 if ((wand->filter_off != MagickFalse) ||
4503 (IsPixelInfoEquivalent(current_border,&new_border) == MagickFalse))
4505 CurrentContext->border_color=new_border;
4506 (void) MvgPrintf(wand,"border-color '");
4507 MvgAppendColor(wand,&border_color);
4508 (void) MvgPrintf(wand,"'\n");
4513 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4517 % D r a w S e t C l i p P a t h %
4521 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4523 % DrawSetClipPath() associates a named clipping path with the image. Only
4524 % the areas drawn on by the clipping path will be modified as ssize_t as it
4525 % remains in effect.
4527 % The format of the DrawSetClipPath method is:
4529 % MagickBooleanType DrawSetClipPath(DrawingWand *wand,
4530 % const char *clip_mask)
4532 % A description of each parameter follows:
4534 % o wand: the drawing wand.
4536 % o clip_mask: name of clipping path to associate with image
4539 WandExport MagickBooleanType DrawSetClipPath(DrawingWand *wand,
4540 const char *clip_mask)
4542 if (wand->debug != MagickFalse)
4543 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",clip_mask);
4544 assert(wand != (DrawingWand *) NULL);
4545 assert(wand->signature == WandSignature);
4546 assert(clip_mask != (const char *) NULL);
4547 if ((CurrentContext->clip_mask == (const char *) NULL) ||
4548 (wand->filter_off != MagickFalse) ||
4549 (LocaleCompare(CurrentContext->clip_mask,clip_mask) != 0))
4551 (void) CloneString(&CurrentContext->clip_mask,clip_mask);
4552 #if DRAW_BINARY_IMPLEMENTATION
4553 if (wand->image == (Image *) NULL)
4554 ThrowDrawException(WandError,"ContainsNoImages",wand->name);
4555 (void) DrawClipPath(wand->image,CurrentContext,CurrentContext->clip_mask);
4557 (void) MvgPrintf(wand,"clip-path url(#%s)\n",clip_mask);
4563 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4567 % D r a w S e t C l i p R u l e %
4571 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4573 % DrawSetClipRule() set the polygon fill rule to be used by the clipping path.
4575 % The format of the DrawSetClipRule method is:
4577 % void DrawSetClipRule(DrawingWand *wand,const FillRule fill_rule)
4579 % A description of each parameter follows:
4581 % o wand: the drawing wand.
4583 % o fill_rule: fill rule (EvenOddRule or NonZeroRule)
4586 WandExport void DrawSetClipRule(DrawingWand *wand,const FillRule fill_rule)
4588 assert(wand != (DrawingWand *) NULL);
4589 assert(wand->signature == WandSignature);
4590 if (wand->debug != MagickFalse)
4591 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4592 if ((wand->filter_off != MagickFalse) ||
4593 (CurrentContext->fill_rule != fill_rule))
4595 CurrentContext->fill_rule=fill_rule;
4596 (void) MvgPrintf(wand, "clip-rule '%s'\n",CommandOptionToMnemonic(
4597 MagickFillRuleOptions,(ssize_t) fill_rule));
4602 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4606 % D r a w S e t C l i p U n i t s %
4610 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4612 % DrawSetClipUnits() sets the interpretation of clip path units.
4614 % The format of the DrawSetClipUnits method is:
4616 % void DrawSetClipUnits(DrawingWand *wand,
4617 % const ClipPathUnits clip_units)
4619 % A description of each parameter follows:
4621 % o wand: the drawing wand.
4623 % o clip_units: units to use (UserSpace, UserSpaceOnUse, or
4624 % ObjectBoundingBox)
4627 WandExport void DrawSetClipUnits(DrawingWand *wand,
4628 const ClipPathUnits clip_units)
4630 assert(wand != (DrawingWand *) NULL);
4631 assert(wand->signature == WandSignature);
4632 if (wand->debug != MagickFalse)
4633 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4634 if ((wand->filter_off != MagickFalse) ||
4635 (CurrentContext->clip_units != clip_units))
4637 CurrentContext->clip_units=clip_units;
4638 if (clip_units == ObjectBoundingBox)
4643 GetAffineMatrix(&affine);
4644 affine.sx=CurrentContext->bounds.x2;
4645 affine.sy=CurrentContext->bounds.y2;
4646 affine.tx=CurrentContext->bounds.x1;
4647 affine.ty=CurrentContext->bounds.y1;
4648 AdjustAffine(wand,&affine);
4650 (void) MvgPrintf(wand, "clip-units '%s'\n",CommandOptionToMnemonic(
4651 MagickClipPathOptions,(ssize_t) clip_units));
4656 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4660 % D r a w S e t F i l l C o l o r %
4664 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4666 % DrawSetFillColor() sets the fill color to be used for drawing filled objects.
4668 % The format of the DrawSetFillColor method is:
4670 % void DrawSetFillColor(DrawingWand *wand,const PixelWand *fill_wand)
4672 % A description of each parameter follows:
4674 % o wand: the drawing wand.
4676 % o fill_wand: fill wand.
4679 WandExport void DrawSetFillColor(DrawingWand *wand,const PixelWand *fill_wand)
4686 assert(wand != (DrawingWand *) NULL);
4687 assert(wand->signature == WandSignature);
4688 if (wand->debug != MagickFalse)
4689 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4690 assert(fill_wand != (const PixelWand *) NULL);
4691 PixelGetQuantumPacket(fill_wand,&fill_color);
4692 new_fill=fill_color;
4693 current_fill=(&CurrentContext->fill);
4694 if ((wand->filter_off != MagickFalse) ||
4695 (IsPixelInfoEquivalent(current_fill,&new_fill) == MagickFalse))
4697 CurrentContext->fill=new_fill;
4698 (void) MvgPrintf(wand,"fill '");
4699 MvgAppendColor(wand,&fill_color);
4700 (void) MvgPrintf(wand,"'\n");
4705 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4709 % D r a w S e t F i l l O p a c i t y %
4713 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4715 % DrawSetFillAlpha() sets the alpha to use when drawing using the fill
4716 % color or fill texture. Fully opaque is 1.0.
4718 % The format of the DrawSetFillAlpha method is:
4720 % void DrawSetFillAlpha(DrawingWand *wand,const double fill_alpha)
4722 % A description of each parameter follows:
4724 % o wand: the drawing wand.
4726 % o fill_alpha: fill alpha
4729 WandExport void DrawSetFillAlpha(DrawingWand *wand,const double fill_alpha)
4734 assert(wand != (DrawingWand *) NULL);
4735 assert(wand->signature == WandSignature);
4736 if (wand->debug != MagickFalse)
4737 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4738 alpha=(double) ClampToQuantum(QuantumRange*(1.0-fill_alpha));
4739 if ((wand->filter_off != MagickFalse) ||
4740 (CurrentContext->fill.alpha != alpha))
4742 CurrentContext->fill.alpha=alpha;
4743 (void) MvgPrintf(wand,"fill-alpha %g\n",fill_alpha);
4748 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4752 % D r a w S e t F o n t R e s o l u t i o n %
4756 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4758 % DrawSetFontResolution() sets the image resolution.
4760 % The format of the DrawSetFontResolution method is:
4762 % MagickBooleanType DrawSetFontResolution(DrawingWand *wand,
4763 % const double x_resolution,const double y_resolution)
4765 % A description of each parameter follows:
4767 % o wand: the magick wand.
4769 % o x_resolution: the image x resolution.
4771 % o y_resolution: the image y resolution.
4774 WandExport MagickBooleanType DrawSetFontResolution(DrawingWand *wand,
4775 const double x_resolution,const double y_resolution)
4778 density[MaxTextExtent];
4780 assert(wand != (DrawingWand *) NULL);
4781 assert(wand->signature == WandSignature);
4782 if (wand->debug != MagickFalse)
4783 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4784 (void) FormatLocaleString(density,MaxTextExtent,"%gx%g",x_resolution,
4786 (void) CloneString(&CurrentContext->density,density);
4791 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4795 % D r a w S e t O p a c i t y %
4799 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4801 % DrawSetAlpha() sets the alpha to use when drawing using the fill or
4802 % stroke color or texture. Fully opaque is 1.0.
4804 % The format of the DrawSetAlpha method is:
4806 % void DrawSetAlpha(DrawingWand *wand,const double alpha)
4808 % A description of each parameter follows:
4810 % o wand: the drawing wand.
4812 % o alpha: fill alpha
4815 WandExport void DrawSetAlpha(DrawingWand *wand,const double alpha)
4820 assert(wand != (DrawingWand *) NULL);
4821 assert(wand->signature == WandSignature);
4822 if (wand->debug != MagickFalse)
4823 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4824 quantum_alpha=ClampToQuantum(QuantumRange*(1.0-alpha));
4825 if ((wand->filter_off != MagickFalse) ||
4826 (CurrentContext->alpha != quantum_alpha))
4828 CurrentContext->alpha=(Quantum) alpha;
4829 (void) MvgPrintf(wand,"alpha %g\n",alpha);
4834 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4838 % D r a w S e t F i l l P a t t e r n U R L %
4842 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4844 % DrawSetFillPatternURL() sets the URL to use as a fill pattern for filling
4845 % objects. Only local URLs ("#identifier") are supported at this time. These
4846 % local URLs are normally created by defining a named fill pattern with
4847 % DrawPushPattern/DrawPopPattern.
4849 % The format of the DrawSetFillPatternURL method is:
4851 % MagickBooleanType DrawSetFillPatternURL(DrawingWand *wand,
4852 % const char *fill_url)
4854 % A description of each parameter follows:
4856 % o wand: the drawing wand.
4858 % o fill_url: URL to use to obtain fill pattern.
4861 WandExport MagickBooleanType DrawSetFillPatternURL(DrawingWand *wand,
4862 const char *fill_url)
4865 pattern[MaxTextExtent],
4866 pattern_spec[MaxTextExtent];
4868 assert(wand != (DrawingWand *) NULL);
4869 assert(wand->signature == WandSignature);
4870 if (wand->debug != MagickFalse)
4871 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",fill_url);
4872 if (wand->image == (Image *) NULL)
4873 ThrowDrawException(WandError,"ContainsNoImages",wand->name);
4874 assert(fill_url != (const char *) NULL);
4875 if (*fill_url != '#')
4877 ThrowDrawException(DrawError,"NotARelativeURL",fill_url);
4878 return(MagickFalse);
4880 (void) FormatLocaleString(pattern,MaxTextExtent,"%s",fill_url+1);
4881 if (GetImageArtifact(wand->image,pattern) == (const char *) NULL)
4883 ThrowDrawException(DrawError,"URLNotFound",fill_url)
4884 return(MagickFalse);
4886 (void) FormatLocaleString(pattern_spec,MaxTextExtent,"url(%s)",fill_url);
4887 #if DRAW_BINARY_IMPLEMENTATION
4888 DrawPatternPath(wand->image,CurrentContext,pattern_spec,
4889 &CurrentContext->fill_pattern);
4891 if (CurrentContext->fill.alpha != (Quantum) TransparentAlpha)
4892 CurrentContext->fill.alpha=(double) CurrentContext->alpha;
4893 (void) MvgPrintf(wand,"fill %s\n",pattern_spec);
4898 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4902 % D r a w S e t F i l l R u l e %
4906 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4908 % DrawSetFillRule() sets the fill rule to use while drawing polygons.
4910 % The format of the DrawSetFillRule method is:
4912 % void DrawSetFillRule(DrawingWand *wand,const FillRule fill_rule)
4914 % A description of each parameter follows:
4916 % o wand: the drawing wand.
4918 % o fill_rule: fill rule (EvenOddRule or NonZeroRule)
4921 WandExport void DrawSetFillRule(DrawingWand *wand,const FillRule fill_rule)
4923 assert(wand != (DrawingWand *) NULL);
4924 assert(wand->signature == WandSignature);
4925 if (wand->debug != MagickFalse)
4926 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4927 if ((wand->filter_off != MagickFalse) ||
4928 (CurrentContext->fill_rule != fill_rule))
4930 CurrentContext->fill_rule=fill_rule;
4931 (void) MvgPrintf(wand, "fill-rule '%s'\n",CommandOptionToMnemonic(
4932 MagickFillRuleOptions,(ssize_t) fill_rule));
4937 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4941 % D r a w S e t F o n t %
4945 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4947 % DrawSetFont() sets the fully-sepecified font to use when annotating with
4950 % The format of the DrawSetFont method is:
4952 % MagickBooleanType DrawSetFont(DrawingWand *wand,const char *font_name)
4954 % A description of each parameter follows:
4956 % o wand: the drawing wand.
4958 % o font_name: font name
4961 WandExport MagickBooleanType DrawSetFont(DrawingWand *wand,
4962 const char *font_name)
4964 assert(wand != (DrawingWand *) NULL);
4965 assert(wand->signature == WandSignature);
4966 if (wand->debug != MagickFalse)
4967 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
4968 assert(font_name != (const char *) NULL);
4969 if ((wand->filter_off != MagickFalse) ||
4970 (CurrentContext->font == (char *) NULL) ||
4971 (LocaleCompare(CurrentContext->font,font_name) != 0))
4973 (void) CloneString(&CurrentContext->font,font_name);
4974 (void) MvgPrintf(wand,"font '%s'\n",font_name);
4980 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4984 % D r a w S e t F o n t F a m i l y %
4988 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4990 % DrawSetFontFamily() sets the font family to use when annotating with text.
4992 % The format of the DrawSetFontFamily method is:
4994 % MagickBooleanType DrawSetFontFamily(DrawingWand *wand,
4995 % const char *font_family)
4997 % A description of each parameter follows:
4999 % o wand: the drawing wand.
5001 % o font_family: font family
5004 WandExport MagickBooleanType DrawSetFontFamily(DrawingWand *wand,
5005 const char *font_family)
5007 assert(wand != (DrawingWand *) NULL);
5008 assert(wand->signature == WandSignature);
5009 if (wand->debug != MagickFalse)
5010 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5011 assert(font_family != (const char *) NULL);
5012 if ((wand->filter_off != MagickFalse) ||
5013 (CurrentContext->family == (const char *) NULL) ||
5014 (LocaleCompare(CurrentContext->family,font_family) != 0))
5016 (void) CloneString(&CurrentContext->family,font_family);
5017 (void) MvgPrintf(wand,"font-family '%s'\n",font_family);
5023 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5027 % D r a w S e t F o n t S i z e %
5031 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5033 % DrawSetFontSize() sets the font pointsize to use when annotating with text.
5035 % The format of the DrawSetFontSize method is:
5037 % void DrawSetFontSize(DrawingWand *wand,const double pointsize)
5039 % A description of each parameter follows:
5041 % o wand: the drawing wand.
5043 % o pointsize: text pointsize
5046 WandExport void DrawSetFontSize(DrawingWand *wand,const double pointsize)
5048 assert(wand != (DrawingWand *) NULL);
5049 assert(wand->signature == WandSignature);
5050 if (wand->debug != MagickFalse)
5051 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5052 if ((wand->filter_off != MagickFalse) ||
5053 (fabs(CurrentContext->pointsize-pointsize) >= MagickEpsilon))
5055 CurrentContext->pointsize=pointsize;
5056 (void) MvgPrintf(wand,"font-size %g\n",pointsize);
5061 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5065 % D r a w S e t F o n t S t r e t c h %
5069 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5071 % DrawSetFontStretch() sets the font stretch to use when annotating with text.
5072 % The AnyStretch enumeration acts as a wild-card "don't care" option.
5074 % The format of the DrawSetFontStretch method is:
5076 % void DrawSetFontStretch(DrawingWand *wand,
5077 % const StretchType font_stretch)
5079 % A description of each parameter follows:
5081 % o wand: the drawing wand.
5083 % o font_stretch: font stretch (NormalStretch, UltraCondensedStretch,
5084 % CondensedStretch, SemiCondensedStretch,
5085 % SemiExpandedStretch, ExpandedStretch,
5086 % ExtraExpandedStretch, UltraExpandedStretch, AnyStretch)
5089 WandExport void DrawSetFontStretch(DrawingWand *wand,
5090 const StretchType font_stretch)
5092 assert(wand != (DrawingWand *) NULL);
5093 assert(wand->signature == WandSignature);
5094 if (wand->debug != MagickFalse)
5095 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5096 if ((wand->filter_off != MagickFalse) ||
5097 (CurrentContext->stretch != font_stretch))
5099 CurrentContext->stretch=font_stretch;
5100 (void) MvgPrintf(wand, "font-stretch '%s'\n",CommandOptionToMnemonic(
5101 MagickStretchOptions,(ssize_t) font_stretch));
5106 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5110 % D r a w S e t F o n t S t y l e %
5114 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5116 % DrawSetFontStyle() sets the font style to use when annotating with text.
5117 % The AnyStyle enumeration acts as a wild-card "don't care" option.
5119 % The format of the DrawSetFontStyle method is:
5121 % void DrawSetFontStyle(DrawingWand *wand,const StyleType style)
5123 % A description of each parameter follows:
5125 % o wand: the drawing wand.
5127 % o style: font style (NormalStyle, ItalicStyle, ObliqueStyle, AnyStyle)
5130 WandExport void DrawSetFontStyle(DrawingWand *wand,const StyleType style)
5132 assert(wand != (DrawingWand *) NULL);
5133 assert(wand->signature == WandSignature);
5134 if (wand->debug != MagickFalse)
5135 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5136 if ((wand->filter_off != MagickFalse) ||
5137 (CurrentContext->style != style))
5139 CurrentContext->style=style;
5140 (void) MvgPrintf(wand, "font-style '%s'\n",CommandOptionToMnemonic(
5141 MagickStyleOptions,(ssize_t) style));
5146 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5150 % D r a w S e t F o n t W e i g h t %
5154 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5156 % DrawSetFontWeight() sets the font weight to use when annotating with text.
5158 % The format of the DrawSetFontWeight method is:
5160 % void DrawSetFontWeight(DrawingWand *wand,
5161 % const size_t font_weight)
5163 % A description of each parameter follows:
5165 % o wand: the drawing wand.
5167 % o font_weight: font weight (valid range 100-900)
5170 WandExport void DrawSetFontWeight(DrawingWand *wand,
5171 const size_t font_weight)
5173 assert(wand != (DrawingWand *) NULL);
5174 assert(wand->signature == WandSignature);
5175 if (wand->debug != MagickFalse)
5176 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5177 if ((wand->filter_off != MagickFalse) ||
5178 (CurrentContext->weight != font_weight))
5180 CurrentContext->weight=font_weight;
5181 (void) MvgPrintf(wand,"font-weight %.20g\n",(double) font_weight);
5186 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5190 % D r a w S e t G r a v i t y %
5194 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5196 % DrawSetGravity() sets the text placement gravity to use when annotating
5199 % The format of the DrawSetGravity method is:
5201 % void DrawSetGravity(DrawingWand *wand,const GravityType gravity)
5203 % A description of each parameter follows:
5205 % o wand: the drawing wand.
5207 % o gravity: positioning gravity (NorthWestGravity, NorthGravity,
5208 % NorthEastGravity, WestGravity, CenterGravity,
5209 % EastGravity, SouthWestGravity, SouthGravity,
5213 WandExport void DrawSetGravity(DrawingWand *wand,const GravityType gravity)
5215 assert(wand != (DrawingWand *) NULL);
5216 assert(wand->signature == WandSignature);
5217 if (wand->debug != MagickFalse)
5218 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5219 if ((wand->filter_off != MagickFalse) ||
5220 (CurrentContext->gravity != gravity) || (gravity != ForgetGravity))
5222 CurrentContext->gravity=gravity;
5223 (void) MvgPrintf(wand,"gravity '%s'\n",CommandOptionToMnemonic(
5224 MagickGravityOptions,(ssize_t) gravity));
5229 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5233 % D r a w S e t S t r o k e C o l o r %
5237 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5239 % DrawSetStrokeColor() sets the color used for stroking object outlines.
5241 % The format of the DrawSetStrokeColor method is:
5243 % void DrawSetStrokeColor(DrawingWand *wand,
5244 % const PixelWand *stroke_wand)
5246 % A description of each parameter follows:
5248 % o wand: the drawing wand.
5250 % o stroke_wand: stroke wand.
5253 WandExport void DrawSetStrokeColor(DrawingWand *wand,
5254 const PixelWand *stroke_wand)
5261 assert(wand != (DrawingWand *) NULL);
5262 assert(wand->signature == WandSignature);
5263 if (wand->debug != MagickFalse)
5264 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5265 assert(stroke_wand != (const PixelWand *) NULL);
5266 PixelGetQuantumPacket(stroke_wand,&stroke_color);
5267 new_stroke=stroke_color;
5268 current_stroke=(&CurrentContext->stroke);
5269 if ((wand->filter_off != MagickFalse) ||
5270 (IsPixelInfoEquivalent(current_stroke,&new_stroke) == MagickFalse))
5272 CurrentContext->stroke=new_stroke;
5273 (void) MvgPrintf(wand,"stroke '");
5274 MvgAppendColor(wand,&stroke_color);
5275 (void) MvgPrintf(wand,"'\n");
5280 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5284 % D r a w S e t S t r o k e P a t t e r n U R L %
5288 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5290 % DrawSetStrokePatternURL() sets the pattern used for stroking object outlines.
5292 % The format of the DrawSetStrokePatternURL method is:
5294 % MagickBooleanType DrawSetStrokePatternURL(DrawingWand *wand,
5295 % const char *stroke_url)
5297 % A description of each parameter follows:
5299 % o wand: the drawing wand.
5301 % o stroke_url: URL specifying pattern ID (e.g. "#pattern_id")
5304 WandExport MagickBooleanType DrawSetStrokePatternURL(DrawingWand *wand,
5305 const char *stroke_url)
5308 pattern[MaxTextExtent],
5309 pattern_spec[MaxTextExtent];
5311 assert(wand != (DrawingWand *) NULL);
5312 assert(wand->signature == WandSignature);
5313 if (wand->debug != MagickFalse)
5314 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5315 if (wand->image == (Image *) NULL)
5316 ThrowDrawException(WandError,"ContainsNoImages",wand->name);
5317 assert(stroke_url != NULL);
5318 if (stroke_url[0] != '#')
5319 ThrowDrawException(DrawError,"NotARelativeURL",stroke_url);
5320 (void) FormatLocaleString(pattern,MaxTextExtent,"%s",stroke_url+1);
5321 if (GetImageArtifact(wand->image,pattern) == (const char *) NULL)
5323 ThrowDrawException(DrawError,"URLNotFound",stroke_url)
5324 return(MagickFalse);
5326 (void) FormatLocaleString(pattern_spec,MaxTextExtent,"url(%s)",stroke_url);
5327 #if DRAW_BINARY_IMPLEMENTATION
5328 DrawPatternPath(wand->image,CurrentContext,pattern_spec,
5329 &CurrentContext->stroke_pattern);
5331 if (CurrentContext->stroke.alpha != (Quantum) TransparentAlpha)
5332 CurrentContext->stroke.alpha=(double) CurrentContext->alpha;
5333 (void) MvgPrintf(wand,"stroke %s\n",pattern_spec);
5338 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5342 % D r a w S e t S t r o k e A n t i a l i a s %
5346 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5348 % DrawSetStrokeAntialias() controls whether stroked outlines are antialiased.
5349 % Stroked outlines are antialiased by default. When antialiasing is disabled
5350 % stroked pixels are thresholded to determine if the stroke color or
5351 % underlying canvas color should be used.
5353 % The format of the DrawSetStrokeAntialias method is:
5355 % void DrawSetStrokeAntialias(DrawingWand *wand,
5356 % const MagickBooleanType stroke_antialias)
5358 % A description of each parameter follows:
5360 % o wand: the drawing wand.
5362 % o stroke_antialias: set to false (zero) to disable antialiasing
5365 WandExport void DrawSetStrokeAntialias(DrawingWand *wand,
5366 const MagickBooleanType stroke_antialias)
5368 assert(wand != (DrawingWand *) NULL);
5369 assert(wand->signature == WandSignature);
5370 if (wand->debug != MagickFalse)
5371 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5372 if ((wand->filter_off != MagickFalse) ||
5373 (CurrentContext->stroke_antialias != stroke_antialias))
5375 CurrentContext->stroke_antialias=stroke_antialias;
5376 (void) MvgPrintf(wand,"stroke-antialias %i\n",stroke_antialias != 0 ?
5382 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5386 % D r a w S e t S t r o k e D a s h A r r a y %
5390 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5392 % DrawSetStrokeDashArray() specifies the pattern of dashes and gaps used to
5393 % stroke paths. The stroke dash array represents an array of numbers that
5394 % specify the lengths of alternating dashes and gaps in pixels. If an odd
5395 % number of values is provided, then the list of values is repeated to yield
5396 % an even number of values. To remove an existing dash array, pass a zero
5397 % number_elements argument and null dash_array. A typical stroke dash array
5398 % might contain the members 5 3 2.
5400 % The format of the DrawSetStrokeDashArray method is:
5402 % MagickBooleanType DrawSetStrokeDashArray(DrawingWand *wand,
5403 % const size_t number_elements,const double *dash_array)
5405 % A description of each parameter follows:
5407 % o wand: the drawing wand.
5409 % o number_elements: number of elements in dash array
5411 % o dash_array: dash array values
5414 WandExport MagickBooleanType DrawSetStrokeDashArray(DrawingWand *wand,
5415 const size_t number_elements,const double *dash_array)
5420 register const double
5433 assert(wand != (DrawingWand *) NULL);
5434 assert(wand->signature == WandSignature);
5435 if (wand->debug != MagickFalse)
5436 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5437 n_new=number_elements;
5440 q=CurrentContext->dash_pattern;
5441 if (q != (const double *) NULL)
5442 while (fabs(*q++) < MagickEpsilon)
5444 if ((n_old == 0) && (n_new == 0))
5450 if ((CurrentContext->dash_pattern != (double *) NULL) &&
5451 (dash_array != (double *) NULL))
5454 q=CurrentContext->dash_pattern;
5455 for (i=0; i < (ssize_t) n_new; i++)
5457 if (fabs((*p)-(*q)) >= MagickEpsilon)
5466 if ((wand->filter_off != MagickFalse) || (update != MagickFalse))
5468 if (CurrentContext->dash_pattern != (double *) NULL)
5469 CurrentContext->dash_pattern=(double *)
5470 RelinquishMagickMemory(CurrentContext->dash_pattern);
5473 CurrentContext->dash_pattern=(double *) AcquireQuantumMemory((size_t)
5474 n_new+1UL,sizeof(*CurrentContext->dash_pattern));
5475 if (!CurrentContext->dash_pattern)
5477 ThrowDrawException(ResourceLimitError,"MemoryAllocationFailed",
5479 return(MagickFalse);
5481 q=CurrentContext->dash_pattern;
5483 for (i=0; i < (ssize_t) n_new; i++)
5487 (void) MvgPrintf(wand,"stroke-dasharray ");
5489 (void) MvgPrintf(wand,"none\n");
5493 (void) MvgPrintf(wand,"%g",*p++);
5494 for (i=1; i < (ssize_t) n_new; i++)
5495 (void) MvgPrintf(wand,",%g",*p++);
5496 (void) MvgPrintf(wand,"\n");
5503 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5507 % D r a w S e t S t r o k e D a s h O f f s e t %
5511 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5513 % DrawSetStrokeDashOffset() specifies the offset into the dash pattern to
5516 % The format of the DrawSetStrokeDashOffset method is:
5518 % void DrawSetStrokeDashOffset(DrawingWand *wand,
5519 % const double dash_offset)
5521 % A description of each parameter follows:
5523 % o wand: the drawing wand.
5525 % o dash_offset: dash offset
5528 WandExport void DrawSetStrokeDashOffset(DrawingWand *wand,
5529 const double dash_offset)
5531 assert(wand != (DrawingWand *) NULL);
5532 assert(wand->signature == WandSignature);
5533 if (wand->debug != MagickFalse)
5534 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5535 if ((wand->filter_off != MagickFalse) ||
5536 (fabs(CurrentContext->dash_offset-dash_offset) >= MagickEpsilon))
5538 CurrentContext->dash_offset=dash_offset;
5539 (void) MvgPrintf(wand,"stroke-dashoffset %g\n",dash_offset);
5544 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5548 % D r a w S e t S t r o k e L i n e C a p %
5552 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5554 % DrawSetStrokeLineCap() specifies the shape to be used at the end of
5555 % open subpaths when they are stroked. Values of LineCap are
5556 % UndefinedCap, ButtCap, RoundCap, and SquareCap.
5558 % The format of the DrawSetStrokeLineCap method is:
5560 % void DrawSetStrokeLineCap(DrawingWand *wand,
5561 % const LineCap linecap)
5563 % A description of each parameter follows:
5565 % o wand: the drawing wand.
5567 % o linecap: linecap style
5570 WandExport void DrawSetStrokeLineCap(DrawingWand *wand,const LineCap linecap)
5572 assert(wand != (DrawingWand *) NULL);
5573 assert(wand->signature == WandSignature);
5574 if (wand->debug != MagickFalse)
5575 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5576 if ((wand->filter_off != MagickFalse) ||
5577 (CurrentContext->linecap != linecap))
5579 CurrentContext->linecap=linecap;
5580 (void) MvgPrintf(wand,"stroke-linecap '%s'\n",CommandOptionToMnemonic(
5581 MagickLineCapOptions,(ssize_t) linecap));
5586 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5590 % D r a w S e t S t r o k e L i n e J o i n %
5594 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5596 % DrawSetStrokeLineJoin() specifies the shape to be used at the corners of
5597 % paths (or other vector shapes) when they are stroked. Values of LineJoin are
5598 % UndefinedJoin, MiterJoin, RoundJoin, and BevelJoin.
5600 % The format of the DrawSetStrokeLineJoin method is:
5602 % void DrawSetStrokeLineJoin(DrawingWand *wand,
5603 % const LineJoin linejoin)
5605 % A description of each parameter follows:
5607 % o wand: the drawing wand.
5609 % o linejoin: line join style
5612 WandExport void DrawSetStrokeLineJoin(DrawingWand *wand,const LineJoin linejoin)
5614 assert(wand != (DrawingWand *) NULL);
5615 assert(wand->signature == WandSignature);
5616 if (wand->debug != MagickFalse)
5617 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5618 if ((wand->filter_off != MagickFalse) ||
5619 (CurrentContext->linejoin != linejoin))
5621 CurrentContext->linejoin=linejoin;
5622 (void) MvgPrintf(wand, "stroke-linejoin '%s'\n",CommandOptionToMnemonic(
5623 MagickLineJoinOptions,(ssize_t) linejoin));
5628 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5632 % D r a w S e t S t r o k e M i t e r L i m i t %
5636 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5638 % DrawSetStrokeMiterLimit() specifies the miter limit. When two line
5639 % segments meet at a sharp angle and miter joins have been specified for
5640 % 'lineJoin', it is possible for the miter to extend far beyond the
5641 % thickness of the line stroking the path. The miterLimit' imposes a
5642 % limit on the ratio of the miter length to the 'lineWidth'.
5644 % The format of the DrawSetStrokeMiterLimit method is:
5646 % void DrawSetStrokeMiterLimit(DrawingWand *wand,
5647 % const size_t miterlimit)
5649 % A description of each parameter follows:
5651 % o wand: the drawing wand.
5653 % o miterlimit: miter limit
5656 WandExport void DrawSetStrokeMiterLimit(DrawingWand *wand,
5657 const size_t miterlimit)
5659 assert(wand != (DrawingWand *) NULL);
5660 assert(wand->signature == WandSignature);
5661 if (wand->debug != MagickFalse)
5662 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5663 if (CurrentContext->miterlimit != miterlimit)
5665 CurrentContext->miterlimit=miterlimit;
5666 (void) MvgPrintf(wand,"stroke-miterlimit %.20g\n",(double) miterlimit);
5671 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5675 % D r a w S e t S t r o k e O p a c i t y %
5679 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5681 % DrawSetStrokeAlpha() specifies the alpha of stroked object outlines.
5683 % The format of the DrawSetStrokeAlpha method is:
5685 % void DrawSetStrokeAlpha(DrawingWand *wand,
5686 % const double stroke_alpha)
5688 % A description of each parameter follows:
5690 % o wand: the drawing wand.
5692 % o stroke_alpha: stroke alpha. The value 1.0 is opaque.
5695 WandExport void DrawSetStrokeAlpha(DrawingWand *wand,
5696 const double stroke_alpha)
5701 assert(wand != (DrawingWand *) NULL);
5702 assert(wand->signature == WandSignature);
5703 if (wand->debug != MagickFalse)
5704 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5705 alpha=(double) ClampToQuantum(QuantumRange*(1.0-stroke_alpha));
5706 if ((wand->filter_off != MagickFalse) ||
5707 (CurrentContext->stroke.alpha != alpha))
5709 CurrentContext->stroke.alpha=alpha;
5710 (void) MvgPrintf(wand,"stroke-alpha %g\n",stroke_alpha);
5715 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5719 % D r a w S e t S t r o k e W i d t h %
5723 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5725 % DrawSetStrokeWidth() sets the width of the stroke used to draw object
5728 % The format of the DrawSetStrokeWidth method is:
5730 % void DrawSetStrokeWidth(DrawingWand *wand,
5731 % const double stroke_width)
5733 % A description of each parameter follows:
5735 % o wand: the drawing wand.
5737 % o stroke_width: stroke width
5740 WandExport void DrawSetStrokeWidth(DrawingWand *wand,const double stroke_width)
5742 assert(wand != (DrawingWand *) NULL);
5743 assert(wand->signature == WandSignature);
5744 if (wand->debug != MagickFalse)
5745 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5746 if ((wand->filter_off != MagickFalse) ||
5747 (fabs(CurrentContext->stroke_width-stroke_width) >= MagickEpsilon))
5749 CurrentContext->stroke_width=stroke_width;
5750 (void) MvgPrintf(wand,"stroke-width %g\n",stroke_width);
5755 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5759 % D r a w S e t T e x t A l i g n m e n t %
5763 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5765 % DrawSetTextAlignment() specifies a text alignment to be applied when
5766 % annotating with text.
5768 % The format of the DrawSetTextAlignment method is:
5770 % void DrawSetTextAlignment(DrawingWand *wand,const AlignType alignment)
5772 % A description of each parameter follows:
5774 % o wand: the drawing wand.
5776 % o alignment: text alignment. One of UndefinedAlign, LeftAlign,
5777 % CenterAlign, or RightAlign.
5780 WandExport void DrawSetTextAlignment(DrawingWand *wand,
5781 const AlignType alignment)
5783 assert(wand != (DrawingWand *) NULL);
5784 assert(wand->signature == WandSignature);
5785 if (wand->debug != MagickFalse)
5786 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5787 if ((wand->filter_off != MagickFalse) ||
5788 (CurrentContext->align != alignment))
5790 CurrentContext->align=alignment;
5791 (void) MvgPrintf(wand,"text-align '%s'\n",CommandOptionToMnemonic(
5792 MagickAlignOptions,(ssize_t) alignment));
5797 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5801 % D r a w S e t T e x t A n t i a l i a s %
5805 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5807 % DrawSetTextAntialias() controls whether text is antialiased. Text is
5808 % antialiased by default.
5810 % The format of the DrawSetTextAntialias method is:
5812 % void DrawSetTextAntialias(DrawingWand *wand,
5813 % const MagickBooleanType text_antialias)
5815 % A description of each parameter follows:
5817 % o wand: the drawing wand.
5819 % o text_antialias: antialias boolean. Set to false (0) to disable
5823 WandExport void DrawSetTextAntialias(DrawingWand *wand,
5824 const MagickBooleanType text_antialias)
5826 assert(wand != (DrawingWand *) NULL);
5827 assert(wand->signature == WandSignature);
5828 if (wand->debug != MagickFalse)
5829 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5830 if ((wand->filter_off != MagickFalse) ||
5831 (CurrentContext->text_antialias != text_antialias))
5833 CurrentContext->text_antialias=text_antialias;
5834 (void) MvgPrintf(wand,"text-antialias %i\n",text_antialias != 0 ? 1 : 0);
5839 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5843 % D r a w S e t T e x t D e c o r a t i o n %
5847 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5849 % DrawSetTextDecoration() specifies a decoration to be applied when
5850 % annotating with text.
5852 % The format of the DrawSetTextDecoration method is:
5854 % void DrawSetTextDecoration(DrawingWand *wand,
5855 % const DecorationType decoration)
5857 % A description of each parameter follows:
5859 % o wand: the drawing wand.
5861 % o decoration: text decoration. One of NoDecoration, UnderlineDecoration,
5862 % OverlineDecoration, or LineThroughDecoration
5865 WandExport void DrawSetTextDecoration(DrawingWand *wand,
5866 const DecorationType decoration)
5868 assert(wand != (DrawingWand *) NULL);
5869 assert(wand->signature == WandSignature);
5870 if (wand->debug != MagickFalse)
5871 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5872 if ((wand->filter_off != MagickFalse) ||
5873 (CurrentContext->decorate != decoration))
5875 CurrentContext->decorate=decoration;
5876 (void) MvgPrintf(wand,"decorate '%s'\n",CommandOptionToMnemonic(
5877 MagickDecorateOptions,(ssize_t) decoration));
5882 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5886 % D r a w S e t T e x t E n c o d i n g %
5890 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5892 % DrawSetTextEncoding() specifies the code set to use for text
5893 % annotations. The only character encoding which may be specified
5894 % at this time is "UTF-8" for representing Unicode as a sequence of
5895 % bytes. Specify an empty string to set text encoding to the system's
5896 % default. Successful text annotation using Unicode may require fonts
5897 % designed to support Unicode.
5899 % The format of the DrawSetTextEncoding method is:
5901 % void DrawSetTextEncoding(DrawingWand *wand,const char *encoding)
5903 % A description of each parameter follows:
5905 % o wand: the drawing wand.
5907 % o encoding: character string specifying text encoding
5910 WandExport void DrawSetTextEncoding(DrawingWand *wand,const char *encoding)
5912 assert(wand != (DrawingWand *) NULL);
5913 assert(wand->signature == WandSignature);
5914 if (wand->debug != MagickFalse)
5915 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5916 assert(encoding != (char *) NULL);
5917 if ((wand->filter_off != MagickFalse) ||
5918 (CurrentContext->encoding == (char *) NULL) ||
5919 (LocaleCompare(CurrentContext->encoding,encoding) != 0))
5921 (void) CloneString(&CurrentContext->encoding,encoding);
5922 (void) MvgPrintf(wand,"encoding '%s'\n",encoding);
5927 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5931 % D r a w S e t T e x t K e r n i n g %
5935 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5937 % DrawSetTextKerning() sets the spacing between characters in text.
5939 % The format of the DrawSetTextKerning method is:
5941 % void DrawSetTextKerning(DrawingWand *wand,const double kerning)
5943 % A description of each parameter follows:
5945 % o wand: the drawing wand.
5947 % o kerning: text kerning
5950 WandExport void DrawSetTextKerning(DrawingWand *wand,const double kerning)
5952 assert(wand != (DrawingWand *) NULL);
5953 assert(wand->signature == WandSignature);
5955 if (wand->debug != MagickFalse)
5956 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5957 if ((wand->filter_off != MagickFalse) &&
5958 ((CurrentContext->kerning-kerning) >= MagickEpsilon))
5960 CurrentContext->kerning=kerning;
5961 (void) MvgPrintf(wand,"kerning %lf\n",kerning);
5966 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5970 % D r a w S e t T e x t I n t e r L i n e S p a c i n g %
5974 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5976 % DrawSetTextInterlineSpacing() sets the spacing between line in text.
5978 % The format of the DrawSetInterlineSpacing method is:
5980 % void DrawSetTextInterlineSpacing(DrawingWand *wand,
5981 % const double interline_spacing)
5983 % A description of each parameter follows:
5985 % o wand: the drawing wand.
5987 % o interline_spacing: text line spacing
5990 WandExport void DrawSetTextInterlineSpacing(DrawingWand *wand,
5991 const double interline_spacing)
5993 assert(wand != (DrawingWand *) NULL);
5994 assert(wand->signature == WandSignature);
5996 if (wand->debug != MagickFalse)
5997 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
5998 if ((wand->filter_off != MagickFalse) &&
5999 ((CurrentContext->interline_spacing-interline_spacing) >= MagickEpsilon))
6001 CurrentContext->interline_spacing=interline_spacing;
6002 (void) MvgPrintf(wand,"interline-spacing %lf\n",interline_spacing);
6007 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6011 % D r a w S e t T e x t I n t e r w o r d S p a c i n g %
6015 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6017 % DrawSetTextInterwordSpacing() sets the spacing between words in text.
6019 % The format of the DrawSetInterwordSpacing method is:
6021 % void DrawSetTextInterwordSpacing(DrawingWand *wand,
6022 % const double interword_spacing)
6024 % A description of each parameter follows:
6026 % o wand: the drawing wand.
6028 % o interword_spacing: text word spacing
6031 WandExport void DrawSetTextInterwordSpacing(DrawingWand *wand,
6032 const double interword_spacing)
6034 assert(wand != (DrawingWand *) NULL);
6035 assert(wand->signature == WandSignature);
6037 if (wand->debug != MagickFalse)
6038 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6039 if ((wand->filter_off != MagickFalse) &&
6040 ((CurrentContext->interword_spacing-interword_spacing) >= MagickEpsilon))
6042 CurrentContext->interword_spacing=interword_spacing;
6043 (void) MvgPrintf(wand,"interword-spacing %lf\n",interword_spacing);
6048 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6052 % D r a w S e t T e x t U n d e r C o l o r %
6056 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6058 % DrawSetTextUnderColor() specifies the color of a background rectangle
6059 % to place under text annotations.
6061 % The format of the DrawSetTextUnderColor method is:
6063 % void DrawSetTextUnderColor(DrawingWand *wand,
6064 % const PixelWand *under_wand)
6066 % A description of each parameter follows:
6068 % o wand: the drawing wand.
6070 % o under_wand: text under wand.
6073 WandExport void DrawSetTextUnderColor(DrawingWand *wand,
6074 const PixelWand *under_wand)
6079 assert(wand != (DrawingWand *) NULL);
6080 assert(wand->signature == WandSignature);
6081 if (wand->debug != MagickFalse)
6082 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6083 assert(under_wand != (const PixelWand *) NULL);
6084 PixelGetQuantumPacket(under_wand,&under_color);
6085 if ((wand->filter_off != MagickFalse) ||
6086 (IsPixelInfoEquivalent(&CurrentContext->undercolor,&under_color) == MagickFalse))
6088 CurrentContext->undercolor=under_color;
6089 (void) MvgPrintf(wand,"text-undercolor '");
6090 MvgAppendColor(wand,&under_color);
6091 (void) MvgPrintf(wand,"'\n");
6096 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6100 % D r a w S e t V e c t o r G r a p h i c s %
6104 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6106 % DrawSetVectorGraphics() sets the vector graphics associated with the
6107 % specified wand. Use this method with DrawGetVectorGraphics() as a method
6108 % to persist the vector graphics state.
6110 % The format of the DrawSetVectorGraphics method is:
6112 % MagickBooleanType DrawSetVectorGraphics(DrawingWand *wand,
6115 % A description of each parameter follows:
6117 % o wand: the drawing wand.
6119 % o xml: the drawing wand XML.
6123 static inline MagickBooleanType IsPoint(const char *point)
6131 value=strtol(point,&p,10);
6133 return(p != point ? MagickTrue : MagickFalse);
6136 WandExport MagickBooleanType DrawSetVectorGraphics(DrawingWand *wand,
6146 assert(wand != (DrawingWand *) NULL);
6147 assert(wand->signature == WandSignature);
6148 if (wand->debug != MagickFalse)
6149 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6150 CurrentContext=DestroyDrawInfo(CurrentContext);
6151 CurrentContext=CloneDrawInfo((ImageInfo *) NULL,(DrawInfo *) NULL);
6152 if (xml == (const char *) NULL)
6153 return(MagickFalse);
6154 xml_info=NewXMLTree(xml,wand->exception);
6155 if (xml_info == (XMLTreeInfo *) NULL)
6156 return(MagickFalse);
6157 child=GetXMLTreeChild(xml_info,"clip-path");
6158 if (child != (XMLTreeInfo *) NULL)
6159 (void) CloneString(&CurrentContext->clip_mask,GetXMLTreeContent(child));
6160 child=GetXMLTreeChild(xml_info,"clip-units");
6161 if (child != (XMLTreeInfo *) NULL)
6163 value=GetXMLTreeContent(child);
6164 if (value != (const char *) NULL)
6165 CurrentContext->clip_units=(ClipPathUnits) ParseCommandOption(
6166 MagickClipPathOptions,MagickFalse,value);
6168 child=GetXMLTreeChild(xml_info,"decorate");
6169 if (child != (XMLTreeInfo *) NULL)
6171 value=GetXMLTreeContent(child);
6172 if (value != (const char *) NULL)
6173 CurrentContext->decorate=(DecorationType) ParseCommandOption(
6174 MagickDecorateOptions,MagickFalse,value);
6176 child=GetXMLTreeChild(xml_info,"encoding");
6177 if (child != (XMLTreeInfo *) NULL)
6178 (void) CloneString(&CurrentContext->encoding,GetXMLTreeContent(child));
6179 child=GetXMLTreeChild(xml_info,"fill");
6180 if (child != (XMLTreeInfo *) NULL)
6182 value=GetXMLTreeContent(child);
6183 if (value != (const char *) NULL)
6184 (void) QueryColorCompliance(value,AllCompliance,&CurrentContext->fill,
6187 child=GetXMLTreeChild(xml_info,"fill-alpha");
6188 if (child != (XMLTreeInfo *) NULL)
6190 value=GetXMLTreeContent(child);
6191 if (value != (const char *) NULL)
6192 CurrentContext->fill.alpha=(double) ClampToQuantum(QuantumRange*
6193 (1.0-StringToDouble(value,(char **) NULL)));
6195 child=GetXMLTreeChild(xml_info,"fill-rule");
6196 if (child != (XMLTreeInfo *) NULL)
6198 value=GetXMLTreeContent(child);
6199 if (value != (const char *) NULL)
6200 CurrentContext->fill_rule=(FillRule) ParseCommandOption(
6201 MagickFillRuleOptions,MagickFalse,value);
6203 child=GetXMLTreeChild(xml_info,"font");
6204 if (child != (XMLTreeInfo *) NULL)
6205 (void) CloneString(&CurrentContext->font,GetXMLTreeContent(child));
6206 child=GetXMLTreeChild(xml_info,"font-family");
6207 if (child != (XMLTreeInfo *) NULL)
6208 (void) CloneString(&CurrentContext->family,GetXMLTreeContent(child));
6209 child=GetXMLTreeChild(xml_info,"font-size");
6210 if (child != (XMLTreeInfo *) NULL)
6212 value=GetXMLTreeContent(child);
6213 if (value != (const char *) NULL)
6214 CurrentContext->pointsize=StringToDouble(value,(char **) NULL);
6216 child=GetXMLTreeChild(xml_info,"font-stretch");
6217 if (child != (XMLTreeInfo *) NULL)
6219 value=GetXMLTreeContent(child);
6220 if (value != (const char *) NULL)
6221 CurrentContext->stretch=(StretchType) ParseCommandOption(
6222 MagickStretchOptions,MagickFalse,value);
6224 child=GetXMLTreeChild(xml_info,"font-style");
6225 if (child != (XMLTreeInfo *) NULL)
6227 value=GetXMLTreeContent(child);
6228 if (value != (const char *) NULL)
6229 CurrentContext->style=(StyleType) ParseCommandOption(MagickStyleOptions,
6232 child=GetXMLTreeChild(xml_info,"font-weight");
6233 if (child != (XMLTreeInfo *) NULL)
6235 value=GetXMLTreeContent(child);
6236 if (value != (const char *) NULL)
6237 CurrentContext->weight=StringToUnsignedLong(value);
6239 child=GetXMLTreeChild(xml_info,"gravity");
6240 if (child != (XMLTreeInfo *) NULL)
6242 value=GetXMLTreeContent(child);
6243 if (value != (const char *) NULL)
6244 CurrentContext->gravity=(GravityType) ParseCommandOption(
6245 MagickGravityOptions,MagickFalse,value);
6247 child=GetXMLTreeChild(xml_info,"stroke");
6248 if (child != (XMLTreeInfo *) NULL)
6250 value=GetXMLTreeContent(child);
6251 if (value != (const char *) NULL)
6252 (void) QueryColorCompliance(value,AllCompliance,&CurrentContext->stroke,
6255 child=GetXMLTreeChild(xml_info,"stroke-antialias");
6256 if (child != (XMLTreeInfo *) NULL)
6258 value=GetXMLTreeContent(child);
6259 if (value != (const char *) NULL)
6260 CurrentContext->stroke_antialias=StringToLong(value) != 0 ? MagickTrue :
6263 child=GetXMLTreeChild(xml_info,"stroke-dasharray");
6264 if (child != (XMLTreeInfo *) NULL)
6267 token[MaxTextExtent];
6278 value=GetXMLTreeContent(child);
6279 if (value != (const char *) NULL)
6281 if (CurrentContext->dash_pattern != (double *) NULL)
6282 CurrentContext->dash_pattern=(double *) RelinquishMagickMemory(
6283 CurrentContext->dash_pattern);
6285 if (IsPoint(q) != MagickFalse)
6291 GetMagickToken(p,&p,token);
6293 GetMagickToken(p,&p,token);
6294 for (x=0; IsPoint(token) != MagickFalse; x++)
6296 GetMagickToken(p,&p,token);
6298 GetMagickToken(p,&p,token);
6300 CurrentContext->dash_pattern=(double *) AcquireQuantumMemory(
6301 (size_t) (2UL*x)+1UL,sizeof(*CurrentContext->dash_pattern));
6302 if (CurrentContext->dash_pattern == (double *) NULL)
6303 ThrowWandFatalException(ResourceLimitFatalError,
6304 "MemoryAllocationFailed",wand->name);
6305 for (j=0; j < x; j++)
6307 GetMagickToken(q,&q,token);
6309 GetMagickToken(q,&q,token);
6310 CurrentContext->dash_pattern[j]=StringToDouble(token,
6313 if ((x & 0x01) != 0)
6314 for ( ; j < (2*x); j++)
6315 CurrentContext->dash_pattern[j]=
6316 CurrentContext->dash_pattern[j-x];
6317 CurrentContext->dash_pattern[j]=0.0;
6321 child=GetXMLTreeChild(xml_info,"stroke-dashoffset");
6322 if (child != (XMLTreeInfo *) NULL)
6324 value=GetXMLTreeContent(child);
6325 if (value != (const char *) NULL)
6326 CurrentContext->dash_offset=StringToDouble(value,(char **) NULL);
6328 child=GetXMLTreeChild(xml_info,"stroke-linecap");
6329 if (child != (XMLTreeInfo *) NULL)
6331 value=GetXMLTreeContent(child);
6332 if (value != (const char *) NULL)
6333 CurrentContext->linecap=(LineCap) ParseCommandOption(
6334 MagickLineCapOptions,MagickFalse,value);
6336 child=GetXMLTreeChild(xml_info,"stroke-linejoin");
6337 if (child != (XMLTreeInfo *) NULL)
6339 value=GetXMLTreeContent(child);
6340 if (value != (const char *) NULL)
6341 CurrentContext->linejoin=(LineJoin) ParseCommandOption(
6342 MagickLineJoinOptions,MagickFalse,value);
6344 child=GetXMLTreeChild(xml_info,"stroke-miterlimit");
6345 if (child != (XMLTreeInfo *) NULL)
6347 value=GetXMLTreeContent(child);
6348 if (value != (const char *) NULL)
6349 CurrentContext->miterlimit=StringToUnsignedLong(value);
6351 child=GetXMLTreeChild(xml_info,"stroke-alpha");
6352 if (child != (XMLTreeInfo *) NULL)
6354 value=GetXMLTreeContent(child);
6355 if (value != (const char *) NULL)
6356 CurrentContext->stroke.alpha=(double) ClampToQuantum(QuantumRange*
6357 (1.0-StringToDouble(value,(char **) NULL)));
6359 child=GetXMLTreeChild(xml_info,"stroke-width");
6360 if (child != (XMLTreeInfo *) NULL)
6362 value=GetXMLTreeContent(child);
6363 if (value != (const char *) NULL)
6364 CurrentContext->stroke_width=StringToDouble(value,(char **) NULL);
6366 child=GetXMLTreeChild(xml_info,"text-align");
6367 if (child != (XMLTreeInfo *) NULL)
6369 value=GetXMLTreeContent(child);
6370 if (value != (const char *) NULL)
6371 CurrentContext->align=(AlignType) ParseCommandOption(MagickAlignOptions,
6374 child=GetXMLTreeChild(xml_info,"text-antialias");
6375 if (child != (XMLTreeInfo *) NULL)
6377 value=GetXMLTreeContent(child);
6378 if (value != (const char *) NULL)
6379 CurrentContext->text_antialias=StringToLong(value) != 0 ? MagickTrue :
6382 child=GetXMLTreeChild(xml_info,"text-undercolor");
6383 if (child != (XMLTreeInfo *) NULL)
6385 value=GetXMLTreeContent(child);
6386 if (value != (const char *) NULL)
6387 (void) QueryColorCompliance(value,AllCompliance,
6388 &CurrentContext->undercolor,wand->exception);
6390 child=GetXMLTreeChild(xml_info,"vector-graphics");
6391 if (child != (XMLTreeInfo *) NULL)
6393 (void) CloneString(&wand->mvg,GetXMLTreeContent(child));
6394 wand->mvg_length=strlen(wand->mvg);
6395 wand->mvg_alloc=wand->mvg_length+1;
6397 xml_info=DestroyXMLTree(xml_info);
6402 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6406 % D r a w S k e w X %
6410 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6412 % DrawSkewX() skews the current coordinate system in the horizontal
6415 % The format of the DrawSkewX method is:
6417 % void DrawSkewX(DrawingWand *wand,const double degrees)
6419 % A description of each parameter follows:
6421 % o wand: the drawing wand.
6423 % o degrees: number of degrees to skew the coordinates
6426 WandExport void DrawSkewX(DrawingWand *wand,const double degrees)
6428 assert(wand != (DrawingWand *) NULL);
6429 assert(wand->signature == WandSignature);
6430 if (wand->debug != MagickFalse)
6431 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6432 (void) MvgPrintf(wand,"skewX %g\n",degrees);
6436 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6440 % D r a w S k e w Y %
6444 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6446 % DrawSkewY() skews the current coordinate system in the vertical
6449 % The format of the DrawSkewY method is:
6451 % void DrawSkewY(DrawingWand *wand,const double degrees)
6453 % A description of each parameter follows:
6455 % o wand: the drawing wand.
6457 % o degrees: number of degrees to skew the coordinates
6460 WandExport void DrawSkewY(DrawingWand *wand,const double degrees)
6462 assert(wand != (DrawingWand *) NULL);
6463 assert(wand->signature == WandSignature);
6464 if (wand->debug != MagickFalse)
6465 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6466 (void) MvgPrintf(wand,"skewY %g\n",degrees);
6470 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6474 % D r a w T r a n s l a t e %
6478 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6480 % DrawTranslate() applies a translation to the current coordinate
6481 % system which moves the coordinate system origin to the specified
6484 % The format of the DrawTranslate method is:
6486 % void DrawTranslate(DrawingWand *wand,const double x,
6489 % A description of each parameter follows:
6491 % o wand: the drawing wand.
6493 % o x: new x ordinate for coordinate system origin
6495 % o y: new y ordinate for coordinate system origin
6498 WandExport void DrawTranslate(DrawingWand *wand,const double x,const double y)
6500 assert(wand != (DrawingWand *) NULL);
6501 assert(wand->signature == WandSignature);
6502 if (wand->debug != MagickFalse)
6503 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6504 (void) MvgPrintf(wand,"translate %g %g\n",x,y);
6508 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6512 % D r a w S e t V i e w b o x %
6516 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6518 % DrawSetViewbox() sets the overall canvas size to be recorded with the
6519 % drawing vector data. Usually this will be specified using the same
6520 % size as the canvas image. When the vector data is saved to SVG or MVG
6521 % formats, the viewbox is use to specify the size of the canvas image that
6522 % a viewer will render the vector data on.
6524 % The format of the DrawSetViewbox method is:
6526 % void DrawSetViewbox(DrawingWand *wand,const double x1,const double y1,
6527 % const double x2,const double y2)
6529 % A description of each parameter follows:
6531 % o wand: the drawing wand.
6533 % o x1: left x ordinate
6535 % o y1: top y ordinate
6537 % o x2: right x ordinate
6539 % o y2: bottom y ordinate
6542 WandExport void DrawSetViewbox(DrawingWand *wand,const double x1,
6543 const double y1,const double x2,const double y2)
6545 assert(wand != (DrawingWand *) NULL);
6546 assert(wand->signature == WandSignature);
6547 if (wand->debug != MagickFalse)
6548 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6549 (void) MvgPrintf(wand,"viewbox %.20g %.20g %.20g %.20g\n",x1,y1,x2,y2);
6553 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6557 % I s D r a w i n g W a n d %
6561 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6563 % IsDrawingWand() returns MagickTrue if the wand is verified as a drawing wand.
6565 % The format of the IsDrawingWand method is:
6567 % MagickBooleanType IsDrawingWand(const DrawingWand *wand)
6569 % A description of each parameter follows:
6571 % o wand: the drawing wand.
6574 WandExport MagickBooleanType IsDrawingWand(const DrawingWand *wand)
6576 if (wand == (const DrawingWand *) NULL)
6577 return(MagickFalse);
6578 if (wand->signature != WandSignature)
6579 return(MagickFalse);
6580 if (LocaleNCompare(wand->name,DrawingWandId,strlen(DrawingWandId)) != 0)
6581 return(MagickFalse);
6586 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6590 % N e w D r a w i n g W a n d %
6594 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6596 % NewDrawingWand() returns a drawing wand required for all other methods in
6599 % The format of the NewDrawingWand method is:
6601 % DrawingWand *NewDrawingWand(void)
6604 WandExport DrawingWand *NewDrawingWand(void)
6615 quantum=GetMagickQuantumDepth(&depth);
6616 if (depth != MAGICKCORE_QUANTUM_DEPTH)
6617 ThrowWandFatalException(WandError,"QuantumDepthMismatch",quantum);
6618 wand=(DrawingWand *) AcquireMagickMemory(sizeof(*wand));
6619 if (wand == (DrawingWand *) NULL)
6620 ThrowWandFatalException(ResourceLimitFatalError,"MemoryAllocationFailed",
6621 GetExceptionMessage(errno));
6622 (void) ResetMagickMemory(wand,0,sizeof(*wand));
6623 wand->id=AcquireWandId();
6624 (void) FormatLocaleString(wand->name,MaxTextExtent,"%s-%.20g",DrawingWandId,
6626 if (wand->debug != MagickFalse)
6627 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6628 wand->mvg=(char *) NULL;
6632 wand->pattern_id=(char *) NULL;
6633 wand->pattern_offset=0;
6634 wand->pattern_bounds.x=0;
6635 wand->pattern_bounds.y=0;
6636 wand->pattern_bounds.width=0;
6637 wand->pattern_bounds.height=0;
6639 wand->graphic_context=(DrawInfo **) AcquireMagickMemory(sizeof(
6640 *wand->graphic_context));
6641 if (wand->graphic_context == (DrawInfo **) NULL)
6642 ThrowWandFatalException(ResourceLimitFatalError,"MemoryAllocationFailed",
6643 GetExceptionMessage(errno));
6644 wand->filter_off=MagickTrue;
6645 wand->indent_depth=0;
6646 wand->path_operation=PathDefaultOperation;
6647 wand->path_mode=DefaultPathMode;
6648 wand->exception=AcquireExceptionInfo();
6649 wand->image=AcquireImage((const ImageInfo *) NULL,wand->exception);
6650 wand->destroy=MagickTrue;
6651 wand->debug=IsEventLogging();
6652 wand->signature=WandSignature;
6653 CurrentContext=CloneDrawInfo((ImageInfo *) NULL,(DrawInfo *) NULL);
6658 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6662 % P e e k D r a w i n g W a n d %
6666 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6668 % PeekDrawingWand() returns the current drawing wand.
6670 % The format of the PeekDrawingWand method is:
6672 % DrawInfo *PeekDrawingWand(const DrawingWand *wand)
6674 % A description of each parameter follows:
6676 % o wand: the drawing wand.
6679 WandExport DrawInfo *PeekDrawingWand(const DrawingWand *wand)
6684 assert(wand != (const DrawingWand *) NULL);
6685 assert(wand->signature == WandSignature);
6686 if (wand->debug != MagickFalse)
6687 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6688 draw_info=CloneDrawInfo((ImageInfo *) NULL,CurrentContext);
6689 GetAffineMatrix(&draw_info->affine);
6690 (void) CloneString(&draw_info->primitive,wand->mvg);
6695 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6699 % P o p D r a w i n g W a n d %
6703 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6705 % PopDrawingWand() destroys the current drawing wand and returns to the
6706 % previously pushed drawing wand. Multiple drawing wands may exist. It is an
6707 % error to attempt to pop more drawing wands than have been pushed, and it is
6708 % proper form to pop all drawing wands which have been pushed.
6710 % The format of the PopDrawingWand method is:
6712 % MagickBooleanType PopDrawingWand(DrawingWand *wand)
6714 % A description of each parameter follows:
6716 % o wand: the drawing wand.
6719 WandExport MagickBooleanType PopDrawingWand(DrawingWand *wand)
6721 assert(wand != (DrawingWand *) NULL);
6722 assert(wand->signature == WandSignature);
6723 if (wand->debug != MagickFalse)
6724 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6725 if (wand->index == 0)
6727 ThrowDrawException(DrawError,"UnbalancedGraphicContextPushPop",wand->name)
6728 return(MagickFalse);
6731 Destroy clip path if not same in preceding wand.
6733 #if DRAW_BINARY_IMPLEMENTATION
6734 if (wand->image == (Image *) NULL)
6735 ThrowDrawException(WandError,"ContainsNoImages",wand->name);
6736 if (CurrentContext->clip_mask != (char *) NULL)
6737 if (LocaleCompare(CurrentContext->clip_mask,
6738 wand->graphic_context[wand->index-1]->clip_mask) != 0)
6739 (void) SetImageMask(wand->image,(Image *) NULL);
6741 CurrentContext=DestroyDrawInfo(CurrentContext);
6743 if (wand->indent_depth > 0)
6744 wand->indent_depth--;
6745 (void) MvgPrintf(wand,"pop graphic-context\n");
6750 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6754 % P u s h D r a w i n g W a n d %
6758 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6760 % PushDrawingWand() clones the current drawing wand to create a new drawing
6761 % wand. The original drawing wand(s) may be returned to by invoking
6762 % PopDrawingWand(). The drawing wands are stored on a drawing wand stack.
6763 % For every Pop there must have already been an equivalent Push.
6765 % The format of the PushDrawingWand method is:
6767 % MagickBooleanType PushDrawingWand(DrawingWand *wand)
6769 % A description of each parameter follows:
6771 % o wand: the drawing wand.
6774 WandExport MagickBooleanType PushDrawingWand(DrawingWand *wand)
6776 assert(wand != (DrawingWand *) NULL);
6777 assert(wand->signature == WandSignature);
6778 if (wand->debug != MagickFalse)
6779 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
6781 wand->graphic_context=(DrawInfo **) ResizeQuantumMemory(wand->graphic_context,
6782 (size_t) wand->index+1UL,sizeof(*wand->graphic_context));
6783 if (wand->graphic_context == (DrawInfo **) NULL)
6785 ThrowDrawException(ResourceLimitError,"MemoryAllocationFailed",
6787 return(MagickFalse);
6789 CurrentContext=CloneDrawInfo((ImageInfo *) NULL,
6790 wand->graphic_context[wand->index-1]);
6791 (void) MvgPrintf(wand,"push graphic-context\n");
6792 wand->indent_depth++;