C# 中 png 转 bmp
无论如何,我可以在 C# 中将 png 转换为 bmp 吗?
我想下载一个图像,然后将其转换为 bmp,然后将其设置为桌面背景。
我已经完成了下载部分和背景部分。
我只需要将 png 转换为 bmp 即可。
is there anyway that I can convert a png to a bmp in C#?
I want to download a image then convert it to a bmp then set it as the desktop background.
I have the downloading bit and the background bit done.
I just need to convert the png to a bmp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当然。 你想要用你的 png 加载一个 Bitmap 对象:
然后保存它:
Certainly. You'd want to load up a Bitmap object with your png:
Then save it:
你试过这个吗?
Have you tried this?