Lines Matching refs:exception
53 #include "MagickCore/exception.h"
54 #include "MagickCore/exception-private.h"
93 % Image *ReadXPSImage(const ImageInfo *image_info,ExceptionInfo *exception)
99 % o exception: return any errors or warnings in this structure.
102 static Image *ReadXPSImage(const ImageInfo *image_info,ExceptionInfo *exception)
159 assert(exception != (ExceptionInfo *) NULL);
160 assert(exception->signature == MagickCoreSignature);
164 image=AcquireImage(image_info,exception);
165 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
174 ThrowFileException(exception,FileOpenError,"UnableToCreateTemporaryFile",
271 delegate_info=GetDelegateInfo("xps:mono",(char *) NULL,exception);
274 delegate_info=GetDelegateInfo("xps:cmyk",(char *) NULL,exception);
276 delegate_info=GetDelegateInfo("xps:color",(char *) NULL,exception);
317 (char *) NULL,exception) != 0 ? MagickTrue : MagickFalse;
318 image=ReadImage(read_info,exception);
329 cmyk_image=ConsolidateCMYKImages(image,exception);