Lines Matching refs:exception
49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
130 % Image *ReadHDRImage(const ImageInfo *image_info,ExceptionInfo *exception)
136 % o exception: return any errors or warnings in this structure.
139 static Image *ReadHDRImage(const ImageInfo *image_info,ExceptionInfo *exception)
187 assert(exception != (ExceptionInfo *) NULL);
188 assert(exception->signature == MagickCoreSignature);
189 image=AcquireImage(image_info,exception);
190 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
246 (void) SetImageProperty(image,"comment",comment,exception);
302 (void) SetImageProperty(image,tag,value,exception);
314 (void) SetImageProperty(image,tag,value,exception);
347 (void) SetImageProperty(image,tag,value,exception);
370 (void) SetImageProperty(image,tag,value,exception);
376 (void) SetImageProperty(image,tag,value,exception);
390 (void) SetImageColorspace(image,RGBColorspace,exception);
392 (void) SetImageColorspace(image,XYZColorspace,exception);
400 status=SetImageExtent(image,image->columns,image->rows,exception);
466 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
498 if (SyncAuthenticPixels(image,exception) == MagickFalse)
507 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
591 % Image *image,ExceptionInfo *exception)
666 ExceptionInfo *exception)
704 assert(exception != (ExceptionInfo *) NULL);
705 assert(exception->signature == MagickCoreSignature);
706 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
710 (void) TransformImageColorspace(image,RGBColorspace,exception);
717 property=GetImageProperty(image,"comment",exception);
724 property=GetImageProperty(image,"hdr:exposure",exception);
759 p=GetVirtualPixels(image,0,y,image->columns,1,exception);