Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
89 % Image *ReadAVSImage(const ImageInfo *image_info,ExceptionInfo *exception)
95 % o exception: return any errors or warnings in this structure.
98 static Image *ReadAVSImage(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);
167 status=SetImageExtent(image,image->columns,image->rows,exception);
181 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)
366 assert(exception != (ExceptionInfo *) NULL);
367 assert(exception->signature == MagickCoreSignature);
368 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
377 (void) TransformImageColorspace(image,sRGBColorspace,exception);
392 p=GetVirtualPixels(image,0,y,image->columns,1,exception);