Bitmap.LockBits 和 Graphics.FromImage 在 C# 中可以组合吗

发布于 2024-08-21 07:15:59 字数 464 浏览 5 评论 0原文

您能否结合 Bitmap.LockBits 和 Graphics.FromImage 的方法,或者换句话说,如果我有一个位图“bmp”并且我想使用 Graphics 对象 g 编辑该位图,则字节数组中可见的更改是BitmapData.Scan0:

Bitmap bmp = new Bitmap(200,200);
Graphics g = Graphics.FromImage(bmp);
bmp.LockBits(new Rectangle(0,0,200,200),
    ImageLockMode.ReadOnly,PixelFormat.Format32bppArgb);
byte* pixelData = (byte*) (void*) bmd.Scan0;
g.FillRectangle(Brushes.Red,new Rectangle(0,0,50,50));

填充红色矩形后,我可以看到 PixelData 的变化吗?

Can you combine the methods of Bitmap.LockBits and Graphics.FromImage, or in other words if I have a bitmap "bmp" and I want to edit the bitmap with a Graphics-object g, are the changes visible in the byte-array of the BitmapData.Scan0:

Bitmap bmp = new Bitmap(200,200);
Graphics g = Graphics.FromImage(bmp);
bmp.LockBits(new Rectangle(0,0,200,200),
    ImageLockMode.ReadOnly,PixelFormat.Format32bppArgb);
byte* pixelData = (byte*) (void*) bmd.Scan0;
g.FillRectangle(Brushes.Red,new Rectangle(0,0,50,50));

can I see the changes in PixelData after I filled a red rectangle?

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

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

发布评论

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

评论(1

豆芽 2024-08-28 07:15:59

如果操作不使用相同类型的锁定,则应该能够组合操作,这意味着您应该传递兼容的 ImageLockMode 参数传递给 LockBits 方法。

Yes should be able to combine operations if the operations don't use the same type of locking, meaning that you should pass a compatible ImageLockMode parameter to your LockBits method.

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