Search found 5 matches

by deimos1090
2013-06-13T19:43:56-07:00
Forum: Users
Topic: Converting different sized images into animated .gif
Replies: 8
Views: 7010

Re: Converting different sized images into animated .gif

convert canvas:none -size 490x375 +repage -fuzz 3%% +dither -colors 256 -despeckle -delay 7 -loop 0 c:/biggif/wip/wip2/*.gif -resize 490 -layers OptimizePlus -layers OptimizeTransparency c:/biggif/wip/AAAAA_Fall.gif I am not sure what you are trying to do, but specifying an background canvas here ...
by deimos1090
2013-06-13T14:19:47-07:00
Forum: Users
Topic: Converting different sized images into animated .gif
Replies: 8
Views: 7010

Re: Converting different sized images into animated .gif

I am not a Windows user, so others should feel free to correct my comments. 3) Windows needs % to be escaped as %% When I was beginning with IM, I hated this one the most. Windows will try to do a variable expansion. The error is always different. Often there is no error, only unintended results ...
by deimos1090
2013-06-13T14:19:15-07:00
Forum: Users
Topic: Converting different sized images into animated .gif
Replies: 8
Views: 7010

Re: Converting different sized images into animated .gif

Thanks fmw42. I was actually just coming back to say I figured out the image sizing issue. The working code ended up being: convert c:/biggif/wip/falltobottom.gif -coalesce c:/biggif/wip/wip2/wip3/%ddd.gif I'll take a look at your other suggestions and see if I can bypass the sizing error. I've ...
by deimos1090
2013-06-13T13:26:51-07:00
Forum: Users
Topic: Converting different sized images into animated .gif
Replies: 8
Views: 7010

Re: Converting different sized images into animated .gif

Thanks fmw42. I was actually just coming back to say I figured out the image sizing issue. The working code ended up being: convert c:/biggif/wip/falltobottom.gif -coalesce c:/biggif/wip/wip2/wip3/%ddd.gif I'll take a look at your other suggestions and see if I can bypass the sizing error. I've been ...
by deimos1090
2013-06-13T12:40:06-07:00
Forum: Users
Topic: Converting different sized images into animated .gif
Replies: 8
Views: 7010

Converting different sized images into animated .gif

Hi All, I'm still pretty new to command line IM but have successfully used it for several projects already. I am currently attempting to pull apart an existing animated gif, make some photo manipulations, and stitch it back together. In theory this should be easy. The problem that I am having is ...