将 apng 转换为具有足够分辨率和颜色深度的 gif
我想将一些动画 PNG (APNG) 图像转换为动画 GIF。我可以使用我在网上找到的名为 apng2gif 的实用程序成功进行转换。如果我可以说的话,名字很专业。问题是它没有转换具有足够颜色深度的图像,因此输出有点像素化,并且相对于原始图像不太平滑。
有谁知道任何其他图像转换器可以将 APNG 转换为超过 16 位颜色深度的 GIF?
I want to convert some animated PNG (APNG) images to animated GIF. I can successfully convert with a utility I found on the web called apng2gif. Expertly named if I may say. The problem is it does not convert the images with sufficient color depth so the output is a little bit to pixelated and not so smooth relative to the original.
Does anyone know of any other image converters that might convert APNG to GIF with more that 16 bit color depth?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题不在于转换器,而在于 GIF 格式本身:
http://en.wikipedia.org/wiki /Graphics_Interchange_Format
该格式支持每像素最多 8 位,从而允许单个图像引用最多 256 种不同颜色的调色板。
The problem is not with the converter, but with GIF format itself:
http://en.wikipedia.org/wiki/Graphics_Interchange_Format
The format supports up to 8 bits per pixel thus allowing a single image to reference a palette of up to 256 distinct colors.
如果您需要 GIF 与背景更好地融合,请单击 apng2gif 中的“设置”按钮,然后选择您想要的背景颜色。
If you need the GIF to blend better with the background, click on Settings button in apng2gif and then choose the background color you want.