本文介绍了png格式为bmp的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
反正是有,我可以一个PNG转换为BMP在C#
我想下载一个图像,然后将其转换为BMP然后将其设置为桌面背景
我有下载位和做后台位
我只是需要把PNG转换为BMP
解决方案
图像虚拟= Image.FromFile(image.png);
Dummy.Save(image.bmp,ImageFormat.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
解决方案
Image Dummy = Image.FromFile("image.png");
Dummy.Save("image.bmp", ImageFormat.Bmp);
这篇关于png格式为bmp的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!