C# 中 png 转 bmp

发布于 2024-07-25 22:43:17 字数 140 浏览 6 评论 0原文

无论如何,我可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

别挽留 2024-08-01 22:43:17
Image Dummy = Image.FromFile("image.png");
Dummy.Save("image.bmp", ImageFormat.Bmp);
Image Dummy = Image.FromFile("image.png");
Dummy.Save("image.bmp", ImageFormat.Bmp);
淡淡的优雅 2024-08-01 22:43:17

当然。 你想要用你的 png 加载一个 Bitmap 对象:

Bitmap myBitmap = new Bitmap("mypng.png");

然后保存它:

myBitmap.Save("mybmp.bmp", System.Drawing.Imaging.ImageFormat.Bmp);

Certainly. You'd want to load up a Bitmap object with your png:

Bitmap myBitmap = new Bitmap("mypng.png");

Then save it:

myBitmap.Save("mybmp.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
千紇 2024-08-01 22:43:17

你试过这个吗?

Image imgFile = Image.FromFile(aFileName);
imgFile .Save(strOutFileName, ImageFormat.Bmp);

Have you tried this?

Image imgFile = Image.FromFile(aFileName);
imgFile .Save(strOutFileName, ImageFormat.Bmp);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文