Lines Matching refs:exception
54 #include "MagickCore/exception.h"
55 #include "MagickCore/exception-private.h"
940 % ExceptionInfo *exception)
946 % o exception: return any errors or warnings in this structure.
949 static Image *ReadSIXELImage(const ImageInfo *image_info,ExceptionInfo *exception)
989 assert(exception != (ExceptionInfo *) NULL);
990 assert(exception->signature == MagickCoreSignature);
991 image=AcquireImage(image_info,exception);
992 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
1035 status=SetImageExtent(image,image->columns,image->rows,exception);
1039 if (AcquireImageColormap(image,image->colors, exception) == MagickFalse)
1059 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
1068 if (SyncAuthenticPixels(image,exception) == MagickFalse)
1174 % Image *image,ExceptionInfo *exception)
1182 % o exception: return any errors or warnings in this structure.
1186 Image *image,ExceptionInfo *exception)
1218 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
1222 (void) TransformImageColorspace(image,sRGBColorspace,exception);
1227 (void) SetImageType(image,PaletteType,exception);
1239 (void) SetImageType(image,PaletteBilevelAlphaType,exception);
1255 (void) SetImageType(image,PaletteBilevelAlphaType,exception);
1295 q=GetVirtualPixels(image,0,y,image->columns,1,exception);