imagemagick crashing on me
Posted: 2015-07-19T18:49:47-07:00
I'm trying to remove the white background from an animated .gif, but this keeps happening:
Any ideas?
Any ideas?
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=28073
Code: Select all
convert 0.gif -coalesce -transparent white -layers optimize output.gif
Hey thanks for helping =)fmw42 wrote:You need to give us more information. What is your version of IM and platform (I presume windows)? If you are running from the command line, then ImageMagick Studio should not be involved. I am not a Windows user, so you may need help from some one who knows more about Windows.
Can you make a single gif image (not animation) into transparency using the same command you show? You may need to coalesce the frames of the gif, process them as above and then reconstitute your animation.
Also seeCode: Select all
convert 0.gif -coalesce -transparent white -layers optimize output.gif
http://www.imagemagick.org/Usage/anim_opt/#opt_trans
Is there any other way to run it? I haven't seen any imagemagick interfaces so I assumed everyone just used the command line =Ofmw42 wrote: If you are running from the command line, then ImageMagick Studio should not be involved.
Code: Select all
convert 0.gif -coalesce -transparent white -dispose previous -layers optimize output.gif
dlemstra wrote:And you probably want to upgrade to the latest version. I think you have installed the version that has a bug in the gif writer.
woah I just needed to updatefmw42 wrote: What is your exact version of IM?