Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

52 #include "MagickCore/exception.h"
53 #include "MagickCore/exception-private.h"
128 % Image *ReadXBMImage(const ImageInfo *image_info,ExceptionInfo *exception)
134 % o exception: return any errors or warnings in this structure.
175 static Image *ReadXBMImage(const ImageInfo *image_info,ExceptionInfo *exception)
225 assert(exception != (ExceptionInfo *) NULL);
226 assert(exception->signature == MagickCoreSignature);
227 image=AcquireImage(image_info,exception);
228 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
284 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse)
300 status=SetImageExtent(image,image->columns,image->rows,exception);
368 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
384 if (SyncAuthenticPixels(image,exception) == MagickFalse)
392 (void) SyncImage(image,exception);
478 % Image *image,ExceptionInfo *exception)
486 % o exception
490 ExceptionInfo *exception)
522 assert(exception != (ExceptionInfo *) NULL);
523 assert(exception->signature == MagickCoreSignature);
524 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
527 (void) TransformImageColorspace(image,sRGBColorspace,exception);
546 (void) SetImageType(image,BilevelType,exception);
556 p=GetVirtualPixels(image,0,y,image->columns,1,exception);