Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

52 #include "MagickCore/exception.h"
53 #include "MagickCore/exception-private.h"
144 % Image *ReadXWDImage(const ImageInfo *image_info,ExceptionInfo *exception)
150 % o exception: return any errors or warnings in this structure.
154 static Image *ReadXWDImage(const ImageInfo *image_info,ExceptionInfo *exception)
216 assert(exception != (ExceptionInfo *) NULL);
217 assert(exception->signature == MagickCoreSignature);
218 image=AcquireImage(image_info,exception);
219 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
269 (void) SetImageProperty(image,"comment",comment,exception);
405 status=SetImageExtent(image,image->columns,image->rows,exception);
461 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
481 if (SyncAuthenticPixels(image,exception) == MagickFalse)
491 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
512 if (SyncAuthenticPixels(image,exception) == MagickFalse)
526 if (AcquireImageColormap(image,image->colors,exception) == MagickFalse)
543 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
549 (int) y),exception);
554 if (SyncAuthenticPixels(image,exception) == MagickFalse)
572 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
663 % Image *image,ExceptionInfo *exception)
671 % o exception: return any errors or warnings in this structure.
675 ExceptionInfo *exception)
719 assert(exception != (ExceptionInfo *) NULL);
720 assert(exception->signature == MagickCoreSignature);
721 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
724 (void) TransformImageColorspace(image,sRGBColorspace,exception);
730 value=GetImageProperty(image,"comment",exception);
842 p=GetVirtualPixels(image,0,y,image->columns,1,exception);