如何使图像背景透明?

时间:2015-04-23 10:42:56

标签: image imagemagick

我有两张图片:

First

http://www.eurocopter.in/contest/images/loader33.gif

Second

如果您看到第一张图片没有背景。所以背景看起来很白。第二张图片有黑色背景。

  • 问题1:我们称之为第一类图片?

  • 问题2:如何制作这种类型的图片?

  • 问题3:如何将第二类图片转换为第一类图片?

2 个答案:

答案 0 :(得分:7)

它们是动画GIF ,第一个具有透明背景。您可以使用ImageMagick(安装在大多数Linux发行版上,可以免费为OSX和Linux提供)将图像分成单独的帧,如下所示:

convert -coalesce type1.gif frame%02d.gif

将为您提供以下18帧作为单独的图像

frame00.gif frame04.gif frame08.gif frame12.gif frame16.gif
frame01.gif frame05.gif frame09.gif frame13.gif frame17.gif
frame02.gif frame06.gif frame10.gif frame14.gif
frame03.gif frame07.gif frame11.gif frame15.gif

<强> frame00.gif

enter image description here

如果你把它们变成这样的蒙太奇,你可以一次看到它们:

convert -coalesce type1.gif miff:- | montage -tile x4 -frame 5 - montage.gif

enter image description here

您可以找到有关每个框架的信息,例如它的大小:

identify type1.gif

type1.gif[0] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[1] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[2] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[3] GIF 100x100 100x100+0+0 8-bit sRGB 64c 29.2KB 0.000u 0:00.000
type1.gif[4] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[5] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[6] GIF 100x100 100x100+0+0 8-bit sRGB 64c 29.2KB 0.000u 0:00.000
type1.gif[7] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[8] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[9] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[10] GIF 100x100 100x100+0+0 8-bit sRGB 64c 29.2KB 0.000u 0:00.000
type1.gif[11] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[12] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[13] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[14] GIF 100x100 100x100+0+0 8-bit sRGB 64c 29.2KB 0.000u 0:00.000
type1.gif[15] GIF 100x100 100x100+0+0 8-bit sRGB 64c 29.2KB 0.000u 0:00.000
type1.gif[16] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000
type1.gif[17] GIF 100x100 100x100+0+0 8-bit sRGB 128c 29.2KB 0.000u 0:00.000

您可以将所有帧重新组合在一起:

convert frame* -loop 0 -delay 20 anim.gif

enter image description here

你可以尝试从第二个中删除黑色背景,使其更像第一个,使用这样的命令。您可能需要稍微调整fuzz因素:

convert type2.gif -fuzz 15% -transparent black new.gif

enter image description here

答案 1 :(得分:2)

是的,你可以,你必须使用像Photoshop这样的照片编辑软件,尝试按照本指南中的步骤,让我知道它是怎么回事。

How to Create a Transparent GIF in Photoshop