Lines Matching refs:exception
48 #include "MagickCore/exception.h"
49 #include "MagickCore/exception-private.h"
83 % Image *ReadTIMImage(const ImageInfo *image_info,ExceptionInfo *exception)
89 % o exception: return any errors or warnings in this structure.
92 static Image *ReadTIMImage(const ImageInfo *image_info,ExceptionInfo *exception)
152 assert(exception != (ExceptionInfo *) NULL);
153 assert(exception->signature == MagickCoreSignature);
154 image=AcquireImage(image_info,exception);
155 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
199 if (AcquireImageColormap(image,pixel_mode == 1 ? 256UL : 16UL,exception) == MagickFalse)
225 status=SetImageExtent(image,image->columns,image->rows,exception);
264 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
282 if (SyncAuthenticPixels(image,exception) == MagickFalse)
301 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
310 if (SyncAuthenticPixels(image,exception) == MagickFalse)
330 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
345 if (SyncAuthenticPixels(image,exception) == MagickFalse)
365 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
375 if (SyncAuthenticPixels(image,exception) == MagickFalse)
391 (void) SyncImage(image,exception);
395 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
408 AcquireNextImage(image_info,image,exception);