Lines Matching refs:exception
52 #include "MagickCore/exception.h"
53 #include "MagickCore/exception-private.h"
93 % Image *ReadRGFImage(const ImageInfo *image_info,ExceptionInfo *exception)
99 % o exception: return any errors or warnings in this structure.
102 static Image *ReadRGFImage(const ImageInfo *image_info,ExceptionInfo *exception)
138 assert(exception != (ExceptionInfo *) NULL);
139 assert(exception->signature == MagickCoreSignature);
140 image=AcquireImage(image_info,exception);
141 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
158 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse)
174 status=SetImageExtent(image,image->columns,image->rows,exception);
196 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
212 if (SyncAuthenticPixels(image,exception) == MagickFalse)
220 (void) SyncImage(image,exception);
305 % Image *image,ExceptionInfo *exception)
313 % o exception: return any errors or warnings in this structure.
317 ExceptionInfo *exception)
344 assert(exception != (ExceptionInfo *) NULL);
345 assert(exception->signature == MagickCoreSignature);
346 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
349 (void) TransformImageColorspace(image,sRGBColorspace,exception);
360 (void) SetImageType(image,BilevelType,exception);
365 p=GetVirtualPixels(image,0,y,image->columns,1,exception);