Lines Matching defs:image

51 #include "MagickCore/image.h"
52 #include "MagickCore/image-private.h"
93 % o image_info: the image info.
102 *image;
120 Open image file.
144 image=AcquireImage(image_info,exception);
145 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
148 image=DestroyImageList(image);
151 quantum=MagickMin((size_t) GetBlobSize(image),MagickMaxBufferExtent);
159 count=(ssize_t) ReadBlob(image,quantum,inline_image+i);
177 ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename);
181 image=DestroyImageList(image);
182 image=ReadInlineImage(image_info,(char *) inline_image,exception);
184 return(image);
199 % RegisterINLINEImage() adds attributes for the INLINE image format to
200 % the list of supported formats. The attributes include the image format
267 % WriteINLINEImage() writes an image to a file in INLINE format (Base64).
272 % Image *image,ExceptionInfo *exception)
276 % o image_info: the image info.
278 % o image: The image.
284 Image *image,ExceptionInfo *exception)
310 Convert image to base64-encoding.
314 assert(image != (Image *) NULL);
315 assert(image->signature == MagickCoreSignature);
316 if (image->debug != MagickFalse)
317 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
321 (void) CopyMagickString(write_info->magick,image->magick,MagickPathExtent);
326 (void) CopyMagickString(image->filename,write_info->filename,
329 write_image=CloneImage(image,0,0,MagickTrue,exception);
347 Write base64-encoded image.
349 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
357 (void) WriteBlobString(image,message);
358 (void) WriteBlobString(image,base64);