Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

53 #include "MagickCore/exception.h"
54 #include "MagickCore/exception-private.h"
109 % ExceptionInfo *exception)
115 % o exception: return any errors or warnings in this structure.
119 ExceptionInfo *exception)
159 assert(exception != (ExceptionInfo *) NULL);
160 assert(exception->signature == MagickCoreSignature);
161 image=AcquireImage(image_info,exception);
162 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
212 if (AcquireImageColormap(image,2,exception) == MagickFalse)
233 status=SetImageExtent(image,image->columns,image->rows,exception);
246 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
264 if (SyncAuthenticPixels(image,exception) == MagickFalse)
392 % Image *image,ExceptionInfo *exception)
400 % o exception: return any errors or warnings in this structure.
414 Image *image,ExceptionInfo *exception)
460 assert(exception != (ExceptionInfo *) NULL);
461 assert(exception->signature == MagickCoreSignature);
462 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
472 (void) TransformImageColorspace(image,sRGBColorspace,exception);
481 (void) SetImageType(image,BilevelType,exception);
485 p=GetVirtualPixels(image,0,y,image->columns,1,exception);