Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

47 #include "MagickCore/exception.h"
48 #include "MagickCore/exception-private.h"
162 % Image *ReadTTFImage(const ImageInfo *image_info,ExceptionInfo *exception)
168 % o exception: return any errors or warnings in this structure.
171 static Image *ReadTTFImage(const ImageInfo *image_info,ExceptionInfo *exception)
216 assert(exception != (ExceptionInfo *) NULL);
217 assert(exception->signature == MagickCoreSignature);
218 image=AcquireImage(image_info,exception);
221 type_info=GetTypeInfo(image_info->filename,exception);
225 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
231 status=SetImageExtent(image,image->columns,image->rows,exception);
240 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
248 if (SyncAuthenticPixels(image,exception) == MagickFalse)
289 (void) DrawImage(image,draw_info,exception);