+2011-05-16 6.6.9-10 Cristy <quetzlzacatenango@image...>
+ * Don't use comma as a separator for stroked text (reference
+ http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18742).
+
2011-05-15 6.6.9-9 Cristy <quetzlzacatenango@image...>
* New version 6.6.9-9.
2011-05-14 6.6.9-9 Cristy <quetzlzacatenango@image...>
* The -scale option now considers the alpha channel when scaling.
- * Don't use comma as a separator for stroked text (reference
- http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18742).
* Fix transient bug for HSL to RGB and back.
2011-05-12 6.6.9-9 Glenn Randers-Pehrson <glennrp@image...>
n=ReadBlob(image,MaxTextExtent,message);
if (n > 0)
{
+ const char
+ *locale;
+
svg_info->parser=xmlCreatePushParserCtxt(sax_handler,svg_info,(char *)
message,n,image->filename);
+ locale=setlocale(LC_NUMERIC,"C");
while ((n=ReadBlob(image,MaxTextExtent,message)) != 0)
{
status=xmlParseChunk(svg_info->parser,(char *) message,(int) n,0);
if (status != 0)
break;
}
+ (void) setlocale(LC_NUMERIC,locale);
}
(void) xmlParseChunk(svg_info->parser,(char *) message,0,1);
xmlFreeParserCtxt(svg_info->parser);