]> granicus.if.org Git - imagemagick/commitdiff
Clip path requires a quote
authorCristy <urban-warrior@imagemagick.org>
Sat, 28 Apr 2018 17:35:30 +0000 (13:35 -0400)
committerCristy <urban-warrior@imagemagick.org>
Sat, 28 Apr 2018 17:35:30 +0000 (13:35 -0400)
MagickWand/drawing-wand.c

index 68788e8ae73e964d8e816ec11e4daa74bab50221..03c016861a238ccee3c17a2cab7871153a872a20 100644 (file)
@@ -4112,7 +4112,7 @@ WandExport void DrawPushClipPath(DrawingWand *wand,const char *clip_mask_id)
   if (wand->debug != MagickFalse)
     (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name);
   assert(clip_mask_id != (const char *) NULL);
-  (void) MVGPrintf(wand,"push clip-path %s\n",clip_mask_id);
+  (void) MVGPrintf(wand,"push clip-path \"%s\"\n",clip_mask_id);
   wand->indent_depth++;
 }
 \f