Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

56 #include "MagickCore/exception.h"
57 #include "MagickCore/exception-private.h"
141 % Image *ReadPCLImage(const ImageInfo *image_info,ExceptionInfo *exception)
147 % o exception: return any errors or warnings in this structure.
150 static Image *ReadPCLImage(const ImageInfo *image_info,ExceptionInfo *exception)
207 assert(exception != (ExceptionInfo *) NULL);
208 assert(exception->signature == MagickCoreSignature);
212 image=AcquireImage(image_info,exception);
213 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
222 ThrowFileException(exception,FileOpenError,"UnableToCreateTemporaryFile",
319 delegate_info=GetDelegateInfo("pcl:mono",(char *) NULL,exception);
322 delegate_info=GetDelegateInfo("pcl:cmyk",(char *) NULL,exception);
324 delegate_info=GetDelegateInfo("pcl:color",(char *) NULL,exception);
365 (char *) NULL,exception) != 0 ? MagickTrue : MagickFalse;
366 image=ReadImage(read_info,exception);
377 cmyk_image=ConsolidateCMYKImages(image,exception);
478 % Image *image,ExceptionInfo *exception)
486 % o exception: return any errors or warnings in this structure.
663 ExceptionInfo *exception)
710 assert(exception != (ExceptionInfo *) NULL);
711 assert(exception->signature == MagickCoreSignature);
712 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
731 (void) TransformImageColorspace(image,sRGBColorspace,exception);
741 if (SetImageMonochrome(image,exception) != MagickFalse)
861 p=GetVirtualPixels(image,0,y,image->columns,1,exception);