* Respect density when rendering SVG images.
* Set AVI handler to the MPEG coder.
* Compute the proper DPX user data field size.
+ * Do not interpret a format specifier when enclosed in brackets (e.g.
+ rose_tile_%[filename:tile].gif.
2010-05-23 6.6.2.0 Anthony Thyssen <A.Thyssen@griffith...>
* Third Re-write of MorphologyApply() to better handle compound methods.
if (path[1] != ":")
#endif
for (p=component; *p != '\0'; p++)
+ {
+ if ((*p == '%') && (*(p+1) == '['))
+ {
+ for (p++; (*p != ']') && (*p != '\0'); p++) ;
+ if (*p == '\0')
+ break;
+ }
if ((*p == ':') && (IsPathDirectory(path) < 0) &&
(IsPathAccessible(path) == MagickFalse))
{
*q=(*++p);
break;
}
+ }
*subimage='\0';
p=component;
if (*p != '\0')