Lines Matching refs:exception
53 #include "MagickCore/exception.h"
54 #include "MagickCore/exception-private.h"
182 % ExceptionInfo *exception)
188 % o exception: return any errors or warnings in this structure.
195 *exception;
197 exception=(ExceptionInfo *) client_data;
198 (void) ThrowMagickException(exception,GetMagickModule(),CoderError,
238 *exception;
240 exception=(ExceptionInfo *) client_data;
241 (void) ThrowMagickException(exception,GetMagickModule(),CoderWarning,
258 static Image *ReadJP2Image(const ImageInfo *image_info,ExceptionInfo *exception)
304 assert(exception != (ExceptionInfo *) NULL);
305 assert(exception->signature == MagickCoreSignature);
306 image=AcquireImage(image_info,exception);
307 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
329 opj_set_warning_handler(jp2_codec,JP2WarningHandler,exception);
330 opj_set_error_handler(jp2_codec,JP2ErrorHandler,exception);
407 status=SetImageExtent(image,image->columns,image->rows,exception);
413 SetImageColorspace(image,GRAYColorspace,exception);
421 SetImageColorspace(image,YUVColorspace,exception);
430 SetImageProfile(image,"icc",profile,exception);
447 q=GetAuthenticPixels(image,0,y,image->columns,1,exception);
499 if (SyncAuthenticPixels(image,exception) == MagickFalse)
675 % ExceptionInfo *exception)
756 ExceptionInfo *exception)
804 assert(exception != (ExceptionInfo *) NULL);
805 assert(exception->signature == MagickCoreSignature);
806 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
914 property=GetImageProperty(image,"comment",exception);
932 (void) TransformImageColorspace(image,sRGBColorspace,exception);
946 jp2_info[i].prec++; /* OpenJPEG returns exception for depth @ 1 */
984 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
1048 opj_set_warning_handler(jp2_codec,JP2WarningHandler,exception);
1049 opj_set_error_handler(jp2_codec,JP2ErrorHandler,exception);