Lines Matching refs:exception
49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
90 % Image *ReadAAIImage(const ImageInfo *image_info,ExceptionInfo *exception)
96 % o exception: return any errors or warnings in this structure.
99 static Image *ReadAAIImage(const ImageInfo *image_info,ExceptionInfo *exception)
136 assert(exception != (ExceptionInfo *) NULL);
137 assert(exception->signature == MagickCoreSignature);
138 image=AcquireImage(image_info,exception);
139 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
165 status=SetImageExtent(image,image->columns,image->rows,exception);
179 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
194 if (SyncAuthenticPixels(image,exception) == MagickFalse)
207 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
224 AcquireNextImage(image_info,image,exception);
318 % Image *image,ExceptionInfo *exception)
326 % o exception: return any errors or warnings in this structure.
330 ExceptionInfo *exception)
363 assert(exception != (ExceptionInfo *) NULL);
364 assert(exception->signature == MagickCoreSignature);
365 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
374 (void) TransformImageColorspace(image,sRGBColorspace,exception);
389 p=GetVirtualPixels(image,0,y,image->columns,1,exception);