Code: Select all
convert eye.gif news.gif storm.gif -scale 200% \
-set filename:f '%t_magnify.%e' '%[filename:f]'
That is not a bug, it is what I would expect.
What is a bug is that the result however is NOT a 'GIF animation'.
that is each of the three images are being saved separately to the the
first file name, as separate images with separate opens/closes.
Note however, that adding '+adjoin'
Code: Select all
convert eye.gif news.gif storm.gif -scale 200% \
-set filename:f '%t_magnify.%e' +adjoin '%[filename:f]'
The first (-adjoin) case is incorrect, no matter how you look at it.
The second (+adjoin) is correct handling.