Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

54 #include "MagickCore/exception.h"
55 #include "MagickCore/exception-private.h"
94 % Image *ReadMAPImage(const ImageInfo *image_info,ExceptionInfo *exception)
100 % o exception: return any errors or warnings in this structure.
103 static Image *ReadMAPImage(const ImageInfo *image_info,ExceptionInfo *exception)
147 assert(exception != (ExceptionInfo *) NULL);
148 assert(exception->signature == MagickCoreSignature);
149 image=AcquireImage(image_info,exception);
152 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
163 (image->offset != 0 ? image->offset : 256),exception);
209 status=SetImageExtent(image,image->columns,image->rows,exception);
219 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
227 index=ConstrainColormapIndex(image,*p,exception);
232 exception);
239 if (SyncAuthenticPixels(image,exception) == MagickFalse)
244 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
333 % Image *image,ExceptionInfo *exception)
341 % o exception: return any errors or warnings in this structure.
345 ExceptionInfo *exception)
380 assert(exception != (ExceptionInfo *) NULL);
381 assert(exception->signature == MagickCoreSignature);
382 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
385 (void) TransformImageColorspace(image,sRGBColorspace,exception);
390 (void) SetImageType(image,PaletteType,exception);
429 p=GetVirtualPixels(image,0,y,image->columns,1,exception);