Home | History | Annotate | Download | only in coders

Lines Matching refs:image_info

162 %      Image *ReadTTFImage(const ImageInfo *image_info,ExceptionInfo *exception)
166 % o image_info: the image info.
171 static Image *ReadTTFImage(const ImageInfo *image_info,ExceptionInfo *exception)
211 assert(image_info != (const ImageInfo *) NULL);
212 assert(image_info->signature == MagickCoreSignature);
213 if (image_info->debug != MagickFalse)
215 image_info->filename);
218 image=AcquireImage(image_info,exception);
221 type_info=GetTypeInfo(image_info->filename,exception);
225 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
237 background_color=image_info->background_color;
251 (void) CopyMagickString(image->magick,image_info->magick,MagickPathExtent);
252 (void) CopyMagickString(image->filename,image_info->filename,MagickPathExtent);
257 draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL);