gpt4 book ai didi

c# - 在窗口上绘制位图时不需要的抗锯齿

转载 作者:可可西里 更新时间:2023-11-01 14:41:32 25 4
gpt4 key购买 nike

我正在将图像渲染到 System.Drawing.Bitmap 中,然后将其绘制到窗口中,但是我可以看到边缘正在消除锯齿。如何防止这种情况?

更多细节。位图是这样创建的:

new Bitmap (this.Width, this.Height, Imaging.PixelFormat.Format32bppArgb)

然后我将像素设置为 Color.Black 或 Color.White。我试过同时使用 Bitmap.SetPixel 和使用 Bitmap.LockBits 将字节直接写入位图数据。

一旦位图准备就绪,我就在我的 Form.OnPaint 覆盖中绘制它:

            pea.Graphics.DrawImage
( !this.bitmap
, this.ClientRectangle
, new Rectangle (0, 0, this.Width, this.Height)
, GraphicsUnit.Pixel
)

每个像素都应该是黑色或白色,但我可以看到边缘处的像素是灰色的。

最佳答案

将 InterpolationMode 属性设置为 NearestNeighbor 并将 PixelOffsetMode 设置为 None。

pea.Graphics.InterpolationMode = InterpolationMode.NearestNeighbor;
pea.Graphics.PixelOffsetMode = PixelOffsetMode.None; // or PixelOffsetMode.Half

绘制未缩放的位图是最好的。在这种情况下,您可能希望使用 ClientSize.Width 和 Height 属性来初始化位图。您现在通过包含表单的边框和标题使位图太大的可能性很大。我无法从片段中分辨出来。

关于c# - 在窗口上绘制位图时不需要的抗锯齿,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5606292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com