如何将 JPEG 图像转换为具有透明背景的 PNG 图像?
我有一个 JPEG 格式的图像,带有白色背景和黑色圆圈。
如何将此图像转换为 PNG 格式,使白色背景透明,黑色保留在那里?
我也是一名程序员,如果 C# 代码中有一些想法我会非常高兴。我也在寻找转换器、工具、程序等任何东西。
谢谢。
杰夫
I have a JPEG format image, with a white background and a black circle.
How can I transform this image to a PNG format that the white background will be transparent and the black remains there?
I'm a programmer too, and if there are some ideas in C# code I will be very happy. Also I'm looking for a converter, tool, program anything.
Thank you.
Jeff
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是可行的,但解决方案很慢。您可以使用 Bitmap.LockBits() 来加快速度。
Here is working, but slow solution. You can speed it up by using Bitmap.LockBits().
您可以使用 ImageMagick 工具喜欢这个例子。
您需要将
-background
选项设置为transparent
,将-alpha
选项设置为set
并使用-transparent
选项设置您想要解释为透明的颜色。另请参阅转换工具参考。You could use the ImageMagick tool like this example.
You will need to set the
-background
option totransparent
, set the the-alpha
option toset
and use the-transparent
option to set the colour you want to be interpretted as transparent. See also the convert tool reference.