Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
89 % Image *ReadMTVImage(const ImageInfo *image_info,ExceptionInfo *exception)
95 % o exception: return any errors or warnings in this structure.
98 static Image *ReadMTVImage(const ImageInfo *image_info,ExceptionInfo *exception)
137 assert(exception != (ExceptionInfo *) NULL);
138 assert(exception->signature == MagickCoreSignature);
139 image=AcquireImage(image_info,exception);
140 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
164 status=SetImageExtent(image,image->columns,image->rows,exception);
180 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
191 if (SyncAuthenticPixels(image,exception) == MagickFalse)
204 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
222 AcquireNextImage(image_info,image,exception);
318 % Image *image,ExceptionInfo *exception)
326 % o exception: return any errors or warnings in this structure.
330 ExceptionInfo *exception)
365 assert(exception != (ExceptionInfo *) NULL);
366 assert(exception->signature == MagickCoreSignature);
367 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
376 (void) TransformImageColorspace(image,sRGBColorspace,exception);
389 p=GetVirtualPixels(image,0,y,image->columns,1,exception);