| ![[ImageMagick]](../../images/script.png) | ![[sponsor]](../../images/networkredux.png) |  |  | 
| [
      About ImageMagick
  ] [ Command-line Tools Processing Options Usage Program Interfaces MagickWand MagickCore PerlMagick Magick++ Architecture ] [ Install from Source Unix Windows Binary Releases Unix Mac OS X Windows Resources ] [ Download ] [ Site Map Links ] [ Sponsors: ] | ReadStream() makes the image pixels available to a user supplied callback method immediately upon reading a scanline with the ReadImage() method. The format of the ReadStream() method is: 
  Image *ReadStream(const ImageInfo *image_info,StreamHandler stream,
    ExceptionInfo *exception)
A description of each parameter follows: image_infothe image info. streama callback method. exceptionreturn any errors or warnings in this structure. WriteStream() makes the image pixels available to a user supplied callback method immediately upon writing pixel data with the WriteImage() method. The format of the WriteStream() method is: 
  MagickBooleanType WriteStream(const ImageInfo *image_info,Image *,
    StreamHandler stream)
A description of each parameter follows: image_infothe image info. streamA callback method. |