Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
120 % Image *ReadRLEImage(const ImageInfo *image_info,ExceptionInfo *exception)
126 % o exception: return any errors or warnings in this structure.
130 static Image *ReadRLEImage(const ImageInfo *image_info,ExceptionInfo *exception)
203 assert(exception != (ExceptionInfo *) NULL);
204 assert(exception->signature == MagickCoreSignature);
205 image=AcquireImage(image_info,exception);
206 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
260 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
298 (void) SetImageProperty(image,"comment",comment,exception);
307 status=SetImageExtent(image,image->columns,image->rows,exception);
465 ValidateColormapValue(image,*p & mask,&index,exception);
475 (*p & mask)),&index,exception);
497 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
509 if (SyncAuthenticPixels(image,exception) == MagickFalse)
527 if (AcquireImageColormap(image,map_length,exception) == MagickFalse)
563 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
571 if (SyncAuthenticPixels(image,exception) == MagickFalse)
581 (void) SyncImage(image,exception);
590 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
595 ValidateColormapValue(image,(ssize_t) *p++,&index,exception);
598 ValidateColormapValue(image,(ssize_t) *p++,&index,exception);
601 ValidateColormapValue(image,(ssize_t) *p++,&index,exception);
609 if (SyncAuthenticPixels(image,exception) == MagickFalse)
630 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
647 AcquireNextImage(image_info,image,exception);