Lines Matching refs:exception
49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
91 % Image *ReadRAWImage(const ImageInfo *image_info,ExceptionInfo *exception)
97 % o exception: return any errors or warnings in this structure.
100 static Image *ReadRAWImage(const ImageInfo *image_info,ExceptionInfo *exception)
136 assert(exception != (ExceptionInfo *) NULL);
137 assert(exception->signature == MagickCoreSignature);
138 image=AcquireImage(image_info,exception);
141 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
148 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
154 exception);
156 exception);
189 status=SetImageExtent(image,image->columns,image->rows,exception);
211 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
215 q=GetAuthenticPixels(canvas_image,0,0,canvas_image->columns,1,exception);
219 quantum_type,pixels,exception);
220 if (SyncAuthenticPixels(canvas_image,exception) == MagickFalse)
226 image->columns,1,exception);
228 1,exception);
239 if (SyncAuthenticPixels(image,exception) == MagickFalse)
264 AcquireNextImage(image_info,image,exception);
428 % Image *image,ExceptionInfo *exception)
436 % o exception: return any errors or warnings in this structure.
440 ExceptionInfo *exception)
476 assert(exception != (ExceptionInfo *) NULL);
477 assert(exception->signature == MagickCoreSignature);
478 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
569 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
573 quantum_type,pixels,exception);