Mobile app version of vmapp.org
Login or Join
Tiffany317

: Making backgrounds of animated GIF files transparent I have been creating animated GIF files using GIMP from several frames in PNG format that I created using Jmol and now I would like to know

@Tiffany317

Posted in: #BackgroundRemoval #Free #Gif

I have been creating animated GIF files using GIMP from several frames in PNG format that I created using Jmol and now I would like to know how to make the background of the resulting GIF files transparent. Any pieces of software or websites you suggest should be available for free, please.

10.05% popularity Vote Up Vote Down


Login to follow query

More posts by @Tiffany317

5 Comments

Sorted by latest first Latest Oldest Best

 

@Caterina889

You can do this directly from photoshop.

Use the 'Save to Web' option and save as a GIF with transparency. Find the color you want to be transparent from the Color Table. Click it and then click the button I've circled in red.



This will make whichever color you had selected transparent. Save.

10% popularity Vote Up Vote Down


 

@Hamm6457569

If you have imagemagick you can run the command convert input.gif -transparent white output.gif in a terminal.

10% popularity Vote Up Vote Down


 

@Moriarity648

Similarly to GIFsicle and GIFmagic, EzGIF is an online set of GIF tools that (among other things) let's you do that:


Choose "Effects"
upload the GIF
then use "Replace color with transparency" box
and apply


(You can then also optimize the result if you want)

10% popularity Vote Up Vote Down


 

@Goswami567

Try www.gifmagic.com
It is very easy.

Choose:
1) edit

2)transparency

3)add and

4) select the area which you want to apply.

10% popularity Vote Up Vote Down


 

@Eichhorn212

You can do this with GIFsicle, using the following options:

gifsicle -U --disposal=previous --transparent="#ffffff" -O2 anim.gif > anim_trans.gif

where anim.gif and anim_trans.gif are the source and destination file names, and #ffffff is the hex code of the color you want to make transparent (here, pure white).

(The important options here are -U / --unoptimize and --disposal=previous, which together convert the animation into "flipbook mode", where each frame is fully erased before drawing the next one. This allows extra transparency to be added to the frames without letting the earlier frames show through the transparent parts. The -O2 option is not strictly necessary, but it's likely to shrink the file size of the resulting animation by optimizing the frames to avoid needlessly re-drawing static parts of the animation.)

For a demostration, here's an animation of the human glyoxalase I (GLO1) enzyme from Wikimedia Commons (left), and the same animation with transparency added using the method shown above (right):



Original animation by Wikimedia Commons user WillowW, used under the CC-By 3.0 license.

One detail worth noting is that, if the GIFsicle command doesn't seem to have any effect, you should check that the background color is really correct. For example, for the animation shown above, the actual background color turned out to be #fdfffc (i.e. very slightly yellow-greenish white) rather than #ffffff (pure white). You can't actually tell the difference by eye (or, at least, I can't do that on this screen), but it's enough to make GIFsicle consider the two colors different.

Also note that GIF files only support 1-bit transparency, which means that the edges of the transparent regions will not be anti-aliased. This is OK as long as the background you're showing the animation on isn't too far from the original background color, but if it is, you may find that there will be some ugly color fringing around the edges of the animation. Unfortunately, there's not a lot you can do about that, except to choose a more suitable background or to re-render the animation.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme