]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 15 Feb 2011 02:40:42 +0000 (02:40 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 15 Feb 2011 02:40:42 +0000 (02:40 +0000)
magick/blob.c
wand/magick-image.c

index 7aad9a1229736668da2919d05c2159486b26ae29..af7044564169060b3347dbd8c522256204cf334c 100644 (file)
@@ -1428,10 +1428,10 @@ MagickExport StreamHandler GetBlobStreamHandler(const Image *image)
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %
 %  ImageToBlob() implements direct to memory image formats.  It returns the
-%  image as a blob and its length.  The magick member of the Image structure
-%  determines the format of the returned blob (GIF, JPEG, PNG, etc.).  This
-%  method is the equivalent of WriteImage(), but writes %  the formatted
-%  "file" to a memory buffer rather than to an actual file.
+%  image as a formatted blob and its length.  The magick member of the Image
+%  structure %  determines the format of the returned blob (GIF, JPEG, PNG,
+%  etc.).  This method is the equivalent of WriteImage(), but writes the
+%  formatted "file" to a memory buffer rather than to an actual file.
 %
 %  The format of the ImageToBlob method is:
 %
index 1cb131b2be102deb683e219fa54e45e75dc4ef79..1ece389c602723b47e505a880f3172c44b081782 100644 (file)
@@ -3988,9 +3988,13 @@ WandExport MagickBooleanType MagickGetImageBackgroundColor(MagickWand *wand,
 %                                                                             %
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %
-%  MagickGetImageBlob() implements direct to memory image formats.  It
-%  returns the image as a blob and its length.   Use MagickSetFormat() to
-%  set the format of the returned blob (GIF, JPEG,  PNG, etc.).
+%  MagickGetImageBlob() implements direct to memory image formats.  It returns
+%  the image as a blob (a formatted "file" in memory) and its length, starting
+%  from the current position in the image sequence.  Use MagickSetImageFormat() 
+%  to set the format to write to the blob (GIF, JPEG,  PNG, etc.).
+%
+%  Utilize MagickResetIterator() to ensure the write is from the beginning of
+%  the image sequence.
 %
 %  Use MagickRelinquishMemory() to free the blob when you are done with it.
 %