What I need to do is extract all images from an animated GIF and save them as separate JPG files.
However before each image is saved I first need to modify it a bit.
I want to do this in one single convert command, splitting it up into several calls to convert will not be efficiant on the server where it will be used.
Here's the closest I have come to what I want to accomplish, but it is alas totally wrong:
Code: Select all
convert -respect-parentheses clean.gif ( +clone ( -clone 0 -gravity NorthWest -crop 61x12+3+263 -blur 0x3 -gravity SouthEast -background transparent -extent 64x275 ) -composite ) -quality 0 +adjoin img/IMG%%06d.jpg
What I'm trying to accomplish is to output 48 JPG images where all of them has the same part of the image blurred out.
I want to be able to tell convert this: "For each image in the GIF, blur the corner and then save the edited image as a JPG file."
If there's a wizard out there I'd be very grateful if you can have a look at my problem.
