将字节数组转换为 PNG/JPG

发布于 2024-12-28 06:37:06 字数 1468 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

雪若未夕 2025-01-04 06:37:06

您应该能够执行以下操作:

using System.Drawing.Imaging;
using System.Drawing;
using System.IO;

byte[] bitmap = GetYourImage();

using(Image image = Image.FromStream(new MemoryStream(bitmap)))
{
    image.Save("output.jpg", ImageFormat.Jpeg);  // Or Png
}

查看此处了解更多信息。

希望这有帮助。

You should be able to do something like this:

using System.Drawing.Imaging;
using System.Drawing;
using System.IO;

byte[] bitmap = GetYourImage();

using(Image image = Image.FromStream(new MemoryStream(bitmap)))
{
    image.Save("output.jpg", ImageFormat.Jpeg);  // Or Png
}

Look here for more info.

Hopefully this helps.

余生再见 2025-01-04 06:37:06

这个问题有两个问题:

假设您有一个灰度位图,您需要考虑两个因素:

  1. 对于 JPGS...什么质量损失是可以容忍的?
  2. 对于 png...什么级别的压缩是可以容忍的? (尽管对于我见过的大多数事情,你没有太多的选择,所以这个选择可能可以忽略不计。)对于任何认为这个问题没有意义的人:是的,你可以改变压缩量/尝试压缩的遍数;查看 Ifranview 或它的一些插件。

回答这些问题,然后你也许就能找到你原来的答案。

There are two problems with this question:

Assuming you have a gray scale bitmap, you have two factors to consider:

  1. For JPGS... what loss of quality is tolerable?
  2. For pngs... what level of compression is tolerable? (Although for most things I've seen, you don't have that much of a choice, so this choice might be negligible.) For anybody thinking this question doesn't make sense: yes, you can change the amount of compression/number of passes attempted to compress; check out either Ifranview or some of it's plugins.

Answer those questions, and then you might be able to find your original answer.

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