Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

48 #include "MagickCore/exception.h"
49 #include "MagickCore/exception-private.h"
122 % Image *ReadMVGImage(const ImageInfo *image_info,ExceptionInfo *exception)
128 % o exception: return any errors or warnings in this structure.
131 static Image *ReadMVGImage(const ImageInfo *image_info,ExceptionInfo *exception)
152 assert(exception != (ExceptionInfo *) NULL);
153 assert(exception->signature == MagickCoreSignature);
154 image=AcquireImage(image_info,exception);
155 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
196 status=SetImageExtent(image,image->columns,image->rows,exception);
199 if (SetImageBackgroundColor(image,exception) == MagickFalse)
208 draw_info->primitive=FileToString(image->filename,~0UL,exception);
221 (void) DrawImage(image,draw_info,exception);
309 % Image *image,ExceptionInfo *exception)
317 % o exception: return any errors or warnings in this structure.
321 ExceptionInfo *exception)
341 status=OpenBlob(image_info,image,WriteBlobMode,exception);