Lines Matching refs:exception
49 #include "MagickCore/exception.h"
50 #include "MagickCore/exception-private.h"
86 % ExceptionInfo *exception)
92 % o exception: return any errors or warnings in this structure.
96 ExceptionInfo *exception)
112 assert(exception != (ExceptionInfo *) NULL);
113 assert(exception->signature == MagickCoreSignature);
117 image=ReadImage(read_info,exception);
124 status=GrayscaleImage(image,image->intensity,exception);
209 % Image *image,ExceptionInfo *exception)
217 % o exception: return any errors or warnings in this structure.
221 static Image *MaskImage(const Image *image,ExceptionInfo *exception)
237 exception);
240 if (SetImageStorageClass(mask_image,DirectClass,exception) == MagickFalse)
246 (void) SetImageColorspace(mask_image,GRAYColorspace,exception);
251 image_view=AcquireVirtualCacheView(image,exception);
252 mask_view=AcquireAuthenticCacheView(mask_image,exception);
266 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
268 exception);
281 if (SyncCacheViewAuthenticPixels(mask_view,exception) == MagickFalse)
292 Image *image,ExceptionInfo *exception)
303 mask_image=MaskImage(image,exception);
310 (void) SetImageInfo(write_info,1,exception);
315 status=WriteImage(write_info,mask_image,exception);