Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
89 % Image *ReadHRZImage(const ImageInfo *image_info,ExceptionInfo *exception)
95 % o exception: return any errors or warnings in this structure.
98 static Image *ReadHRZImage(const ImageInfo *image_info,ExceptionInfo *exception)
133 assert(exception != (ExceptionInfo *) NULL);
134 assert(exception->signature == MagickCoreSignature);
135 image=AcquireImage(image_info,exception);
136 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
148 status=SetImageExtent(image,image->columns,image->rows,exception);
162 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
173 if (SyncAuthenticPixels(image,exception) == MagickFalse)
180 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
264 % Image *image,ExceptionInfo *exception)
272 % o exception: return any errors or warnings in this structure.
276 ExceptionInfo *exception)
309 assert(exception != (ExceptionInfo *) NULL);
310 assert(exception->signature == MagickCoreSignature);
311 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
314 hrz_image=ResizeImage(image,256,240,image->filter,exception);
317 (void) TransformImageColorspace(hrz_image,sRGBColorspace,exception);
333 p=GetVirtualPixels(hrz_image,0,y,hrz_image->columns,1,exception);