2014-07-31 12:05:26 +02:00
|
|
|
Image::Magick::Iterator adds iteration support to Image::Magick. This means that
|
|
|
|
if you have a stream of concatenated images, you can access each image in the
|
|
|
|
stream as an independent Image::Magick object.
|
2006-12-09 03:37:26 +01:00
|
|
|
|
2014-07-31 12:05:26 +02:00
|
|
|
Iteration functionality is not present in Image::Magick itself as of version
|
|
|
|
5.56. Passing a stream of concatenated images would result in essentially a
|
|
|
|
"stack" of images which would all be manipulated in parallel by any
|
|
|
|
Image::Magick calls. Calls to Write() either output an animated series of image
|
|
|
|
(a la animated GIFs), or the first image in the series.
|
2006-12-09 03:37:26 +01:00
|
|
|
|
2018-05-27 22:15:16 +02:00
|
|
|
WWW: https://metacpan.org/release/Image-Magick-Iterator
|