+2009-11-26 6.5.8-1 Dr. Ingo Bremer <bremer@wias-...>
+ * Escape single quote in when writing the UIL format.
+
2009-11-25 6.5.8-1 Jee Teck <jee.teck@cteca...>
- * The mogridy program +opaque option now recognizes its required argument.
+ * The mogrify program +opaque option now recognizes its required argument.
2009-11-19 6.5.8-0 Cristy <quetzlzacatenango@image...>
* Add magick/morphlogy.{c,h} source templates.
basename[MaxTextExtent],
buffer[MaxTextExtent],
name[MaxTextExtent],
- symbol[MaxTextExtent];
+ *symbol;
ExceptionInfo
*exception;
/*
UIL header.
*/
+ symbol=AcquireString("");
(void) WriteBlobString(image,"/* UIL */\n");
GetPathComponent(image->filename,BasePath,basename);
(void) FormatMagickString(buffer,MaxTextExtent,
symbol[j]=Cixel[k];
}
symbol[j]='\0';
+ (void) SubstituteString(&symbol,"'","''");
if (LocaleCompare(name,"None") == 0)
(void) FormatMagickString(buffer,MaxTextExtent,
" background color = '%s'",symbol);
if (status == MagickFalse)
break;
}
+ symbol=DestroyString(symbol);
(void) CloseBlob(image);
return(MagickTrue);
}