Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

53 #include "MagickCore/exception.h"
54 #include "MagickCore/exception-private.h"
137 % Image *ReadXPMImage(const ImageInfo *image_info,ExceptionInfo *exception)
143 % o exception: return any errors or warnings in this structure.
240 static Image *ReadXPMImage(const ImageInfo *image_info,ExceptionInfo *exception)
291 assert(exception != (ExceptionInfo *) NULL);
292 assert(exception->signature == MagickCoreSignature);
293 image=AcquireImage(image_info,exception);
294 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
371 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse)
417 exception);
435 status=SetImageExtent(image,image->columns,image->rows,exception);
443 r=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
460 if (SyncAuthenticPixels(image,exception) == MagickFalse)
572 % Image *image,ExceptionInfo *exception)
580 % o exception: return any errors or warnings in this structure.
584 Image *image,ExceptionInfo *exception)
679 assert(exception != (ExceptionInfo *) NULL);
680 assert(exception->signature == MagickCoreSignature);
681 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
684 (void) TransformImageColorspace(image,sRGBColorspace,exception);
689 exception);
693 (SetImageGray(image,exception) != MagickFalse))
694 affinity_image=BlobToImage(blob_info,Graymap,GraymapExtent,exception);
696 affinity_image=BlobToImage(blob_info,Colormap,ColormapExtent,exception);
702 status=RemapImage(quantize_info,picon,affinity_image,exception);
708 (void) CompressImageColormap(picon,exception);
724 q=GetAuthenticPixels(picon,0,y,picon->columns,1,exception);
735 if (SyncAuthenticPixels(picon,exception) == MagickFalse)
739 (void) SetImageType(picon,PaletteType,exception);
751 q=GetAuthenticPixels(picon,0,y,picon->columns,1,exception);
760 if (SyncAuthenticPixels(picon,exception) == MagickFalse)
793 (void) QueryColorname(image,&pixel,XPMCompliance,name,exception);
820 p=GetVirtualPixels(picon,0,y,picon->columns,1,exception);
869 % Image *image,ExceptionInfo *exception)
877 % o exception: return any errors or warnings in this structure.
881 ExceptionInfo *exception)
926 assert(exception != (ExceptionInfo *) NULL);
927 assert(exception->signature == MagickCoreSignature);
928 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
932 (void) TransformImageColorspace(image,sRGBColorspace,exception);
937 (void) SetImageType(image,PaletteType,exception);
949 (void) SetImageType(image,PaletteBilevelAlphaType,exception);
967 (void) SetImageType(image,PaletteBilevelAlphaType,exception);
1030 (void) QueryColorname(image,&pixel,XPMCompliance,name,exception);
1054 p=GetVirtualPixels(image,0,y,image->columns,1,exception);