]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Sun, 27 Feb 2011 23:26:28 +0000 (23:26 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Sun, 27 Feb 2011 23:26:28 +0000 (23:26 +0000)
coders/svg.c

index e6179ccabadc485f3d1560b42a7d2ef998af1ffb..05be3deb337a7a8522871cc53e6cf61a4edcd67f 100644 (file)
@@ -2355,7 +2355,6 @@ static void SVGEndElement(void *context,const xmlChar *name)
                 *text;
 
               text=EscapeString(svg_info->text,'\'');
-              StripString(text);
               MVGPrintf(svg_info->file,"text %g,%g '%s'\n",
                 svg_info->bounds.x-svg_info->center.x,svg_info->bounds.y-
                 svg_info->center.y,text);
@@ -2379,7 +2378,6 @@ static void SVGEndElement(void *context,const xmlChar *name)
                 *text;
 
               text=EscapeString(svg_info->text,'\'');
-              StripString(text);
               MVGPrintf(svg_info->file,"text %g,%g '%s'\n",
                 svg_info->bounds.x,svg_info->bounds.y,text);
               text=DestroyString(text);