Lines Matching refs:exception
47 #include "MagickCore/exception.h"
48 #include "MagickCore/exception-private.h"
128 % Image *ReadEXRImage(const ImageInfo *image_info,ExceptionInfo *exception)
134 % o exception: return any errors or warnings in this structure.
137 static Image *ReadEXRImage(const ImageInfo *image_info,ExceptionInfo *exception)
180 assert(exception != (ExceptionInfo *) NULL);
181 assert(exception->signature == MagickCoreSignature);
182 image=AcquireImage(image_info,exception);
183 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
193 (void) ImageToFile(image,read_info->filename,exception);
198 ThrowFileException(exception,BlobError,"UnableToOpenBlob",
210 SetImageColorspace(image,RGBColorspace,exception);
221 status=SetImageExtent(image,image->columns,image->rows,exception);
235 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
254 if (SyncAuthenticPixels(image,exception) == MagickFalse)
352 % Image *image,ExceptionInfo *exception)
360 % o exception: return any errors or warnings in this structure.
364 ExceptionInfo *exception)
411 assert(exception != (ExceptionInfo *) NULL);
412 assert(exception->signature == MagickCoreSignature);
413 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
416 (void) SetImageColorspace(image,RGBColorspace,exception);
466 (void) ThrowMagickException(exception,GetMagickModule(),CoderWarning,
493 (void) ThrowMagickException(exception,GetMagickModule(),CoderWarning,
503 (void) ThrowMagickException(exception,GetMagickModule(),
528 ThrowFileException(exception,BlobError,"UnableToOpenBlob",
543 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
566 (void) FileToImage(image,write_info->filename,exception);