Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

53 #include "MagickCore/exception.h"
54 #include "MagickCore/exception-private.h"
161 % Image *ReadSGIImage(const ImageInfo *image_info,ExceptionInfo *exception)
167 % o exception: return any errors or warnings in this structure.
260 static Image *ReadSGIImage(const ImageInfo *image_info,ExceptionInfo *exception)
307 assert(exception != (ExceptionInfo *) NULL);
308 assert(exception->signature == MagickCoreSignature);
309 image=AcquireImage(image_info,exception);
310 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
351 (void) SetImageProperty(image,"label",iris_info.name,exception);
371 status=SetImageExtent(image,image->columns,image->rows,exception);
566 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
584 if (SyncAuthenticPixels(image,exception) == MagickFalse)
599 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
613 if (SyncAuthenticPixels(image,exception) == MagickFalse)
629 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse)
639 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
650 if (SyncAuthenticPixels(image,exception) == MagickFalse)
665 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
674 if (SyncAuthenticPixels(image,exception) == MagickFalse)
684 (void) SyncImage(image,exception);
689 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
705 AcquireNextImage(image_info,image,exception);
802 % Image *image,ExceptionInfo *exception)
810 % o exception: return any errors or warnings in this structure.
868 ExceptionInfo *exception)
920 assert(exception != (ExceptionInfo *) NULL);
921 assert(exception->signature == MagickCoreSignature);
922 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
931 (void) TransformImageColorspace(image,sRGBColorspace,exception);
952 (SetImageGray(image,exception) != MagickFalse))
977 value=GetImageProperty(image,"label",exception);
1001 p=GetVirtualPixels(image,0,y,image->columns,1,exception);