Lines Matching refs:property
111 % MagickDeleteImageProperty() deletes a wand property.
116 % const char *property)
122 % o property: the image property.
126 const char *property)
139 return(DeleteImageProperty(wand->images,property));
191 % MagickGetAntialias() returns the antialias property associated with the
762 % return the value of a particular property. Use MagickRelinquishMemory() to
786 *property;
811 property=GetNextImageProfile(wand->images);
812 for (i=0; property != (const char *) NULL; )
814 if ((*property != '[') &&
815 (GlobExpression(property,pattern,MagickFalse) != MagickFalse))
830 profiles[i]=ConstantString(property);
833 property=GetNextImageProfile(wand->images);
853 % property. Use MagickRelinquishMemory() to free the value when you are
858 % char *MagickGetImageProperty(MagickWand *wand,const char *property)
864 % o property: the property.
867 WandExport char *MagickGetImageProperty(MagickWand *wand,const char *property)
883 value=GetImageProperty(wand->images,property,wand->exception);
901 % MagickGetImageProperties() returns all the property names that match the
903 % return the value of a particular property. Use MagickRelinquishMemory() to
927 *property;
952 property=GetNextImageProperty(wand->images);
953 for (i=0; property != (const char *) NULL; )
955 if ((*property != '[') &&
956 (GlobExpression(property,pattern,MagickFalse) != MagickFalse))
971 properties[i]=ConstantString(property);
974 property=GetNextImageProperty(wand->images);
1886 % o antialias: the antialias property.
2410 % MagickSetImageProperty() associates a property with an image.
2415 % const char *property,const char *value)
2421 % o property: the property.
2427 const char *property,const char *value)
2439 status=SetImageProperty(wand->images,property,value,wand->exception);