Bitmap.LockBits 和 Graphics.FromImage 在 C# 中可以组合吗
您能否结合 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果操作不使用相同类型的锁定,则应该能够组合操作,这意味着您应该传递兼容的 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.