在 C# 中将 32 位位图另存为 1 位 .bmp 文件

发布于 2024-08-27 19:39:53 字数 53 浏览 6 评论 0原文

在 C# 中将 32 位位图转换并保存为 1 位(黑/白).bmp 文件的最简单方法是什么?

What is the easiest way to convert and save a 32-bit Bitmap to a 1-bit (black/white) .bmp file in C#?

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

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

发布评论

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

评论(2

夜夜流光相皎洁 2024-09-03 19:39:53

实现此目的的最简单方法是使用 Clone()

using System.Drawing.Imaging;

var original = //your source image;
var rectangle = new Rectangle(0, 0, original.Width, original.Height);

var bmp1bpp = original.Clone(rectangle, PixelFormat.Format1bppIndexed);

声明这可能不是最快的方法,但还有更快的方法

The easiest way to do achieve this by using the Clone()

using System.Drawing.Imaging;

var original = //your source image;
var rectangle = new Rectangle(0, 0, original.Width, original.Height);

var bmp1bpp = original.Clone(rectangle, PixelFormat.Format1bppIndexed);

As disclaim this will maybe not the fastest way to do this there are much faster way's to do this

樱花细雨 2024-09-03 19:39:53

此代码将完成工作:

using System.Drawing.Imaging;
using System.Runtime.InteropServices;
...

public static Bitmap BitmapTo1Bpp(Bitmap img) {
  int w = img.Width;
  int h = img.Height;
  Bitmap bmp = new Bitmap(w, h, PixelFormat.Format1bppIndexed);
  BitmapData data = bmp.LockBits(new Rectangle(0, 0, w, h), ImageLockMode.ReadWrite, PixelFormat.Format1bppIndexed);
  byte[] scan = new byte[(w + 7) / 8];
  for (int y = 0; y < h; y++) {
    for (int x = 0; x < w; x++) {
      if (x % 8 == 0) scan[x / 8] = 0;
      Color c = img.GetPixel(x, y);
      if (c.GetBrightness() >= 0.5) scan[x / 8] |= (byte)(0x80 >> (x % 8));
    }
    Marshal.Copy(scan, 0, (IntPtr)((long)data.Scan0 + data.Stride * y), scan.Length);
  }
  bmp.UnlockBits(data);
  return bmp;
}

如有必要,您可以通过使用不安全代码替换 GetPixel() 方法来加快速度。

This code will get the job done:

using System.Drawing.Imaging;
using System.Runtime.InteropServices;
...

public static Bitmap BitmapTo1Bpp(Bitmap img) {
  int w = img.Width;
  int h = img.Height;
  Bitmap bmp = new Bitmap(w, h, PixelFormat.Format1bppIndexed);
  BitmapData data = bmp.LockBits(new Rectangle(0, 0, w, h), ImageLockMode.ReadWrite, PixelFormat.Format1bppIndexed);
  byte[] scan = new byte[(w + 7) / 8];
  for (int y = 0; y < h; y++) {
    for (int x = 0; x < w; x++) {
      if (x % 8 == 0) scan[x / 8] = 0;
      Color c = img.GetPixel(x, y);
      if (c.GetBrightness() >= 0.5) scan[x / 8] |= (byte)(0x80 >> (x % 8));
    }
    Marshal.Copy(scan, 0, (IntPtr)((long)data.Scan0 + data.Stride * y), scan.Length);
  }
  bmp.UnlockBits(data);
  return bmp;
}

You can speed it up, if necessary, by using unsafe code to replace the GetPixel() method.

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