]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 10 Jan 2012 13:31:13 +0000 (13:31 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 10 Jan 2012 13:31:13 +0000 (13:31 +0000)
MagickCore/pixel.c

index af3e7c142e568ed781a80d378dd7d91293743aac..00a73d4bdd1ba0dd8305b426f54732c7fa4cb449 100644 (file)
@@ -308,7 +308,7 @@ MagickExport PixelChannelMap *DestroyPixelChannelMap(
 %
 %  ExportImagePixels() extracts pixel data from an image and returns it to you.
 %  The method returns MagickTrue on success otherwise MagickFalse if an error is
-%  encountered.  The data is returned as char, short int, unsigned int,
+%  encountered.  The data is returned as char, short int, Quantum, unsigned int,
 %  unsigned long long, float, or double in the order specified by map.
 %
 %  Suppose you want to extract the first scanline of a 640x480 image as
@@ -2005,8 +2005,8 @@ MagickExport void GetPixelInfo(const Image *image,PixelInfo *pixel)
 %  ImportImagePixels() accepts pixel data and stores in the image at the
 %  location you specify.  The method returns MagickTrue on success otherwise
 %  MagickFalse if an error is encountered.  The pixel data can be either char,
-%  short int, unsigned int, unsigned long long, float, or double in the order
-%  specified by map.
+%  Quantum, short int, unsigned int, unsigned long long, float, or double in
+%  the order specified by map.
 %
 %  Suppose your want to upload the first scanline of a 640x480 image from
 %  character data in red-green-blue order: