martron wrote:At
http://www.imagemagick.org/Usage/files/#read_frames after showing how to read frames of an image it also states:
You can also get IM to read images based on a list of numbers. For example..
will read in the files "image_005.png", "image_006.png", and "image_007.png". With this method you can not use a negative index.
I think I'm doing that part correctly, and indeed the proper sequence of images are read. The only real problem is that they are also resized.
I am very surprised that this works. The page your reference says:
"Will select specific sub-frames from a
multi-image file format from the image that has been read in"
jpg and png do NOT support multi-image file formats.
However, testing does show that this does work. So I learn something new today.
Testing:
convert rose: netscape: logo: rose: netscape: logo: tmp_%d.png
convert tmp_%d.png[2-4] tmpnew.jpg
produces the correct size resulting images, tmpnew-0.jpg tmpnew-1.jpg tmpnew-2.jpg
(IM 6.6.0-5 Q16 Mac OSX Tiger)
Again, try upgrading your IM version.
But try removing the quotes around your image names.