*/
option=GetImageOption(image_info,"filename");
if (option == (const char *) NULL)
- property=InterpretImageProperties(image_info,image,image_info->filename,
- exception);
+ property=InterpretImageProperties((ImageInfo *) image_info,image,
+ image_info->filename,exception);
else
if (LocaleNCompare(option,"caption:",8) == 0)
- property=InterpretImageProperties(image_info,image,option+8,exception);
+ property=InterpretImageProperties((ImageInfo *) image_info,image,option+8,
+ exception);
else
- property=InterpretImageProperties(image_info,image,option,exception);
+ property=InterpretImageProperties((ImageInfo *) image_info,image,option,
+ exception);
(void) SetImageProperty(image,"caption",property,exception);
property=DestroyString(property);
caption=ConstantString(GetImageProperty(image,"caption",exception));
char
*text;
- text=InterpretImageProperties(image_info,image,format,exception);
+ text=InterpretImageProperties((ImageInfo *) image_info,image,format,
+ exception);
if (text != (char *) NULL)
{
(void) WriteBlobString(image,text);
assert(exception->signature == MagickSignature);
image=AcquireImage(image_info,exception);
(void) ResetImagePage(image,"0x0+0+0");
- property=InterpretImageProperties(image_info,image,image_info->filename,
- exception);
+ property=InterpretImageProperties((ImageInfo *) image_info,image,
+ image_info->filename,exception);
(void) SetImageProperty(image,"label",property,exception);
property=DestroyString(property);
label=GetImageProperty(image,"label",exception);
*/
option=GetImageOption(image_info,"filename");
if (option == (const char *) NULL)
- property=InterpretImageProperties(image_info,image,image_info->filename,
- exception);
+ property=InterpretImageProperties((ImageInfo *) image_info,image,
+ image_info->filename,exception);
else
if (LocaleNCompare(option,"pango:",6) == 0)
- property=InterpretImageProperties(image_info,image,option+6,exception);
+ property=InterpretImageProperties((ImageInfo *) image_info,image,option+6,
+ exception);
else
- property=InterpretImageProperties(image_info,image,option,exception);
+ property=InterpretImageProperties((ImageInfo *) image_info,image,option,
+ exception);
(void) SetImageProperty(image,"caption",property,exception);
property=DestroyString(property);
caption=ConstantString(GetImageProperty(image,"caption",exception));