使用“最近邻居”重新调整位图的大小在.net中

发布于 2024-12-06 10:18:41 字数 111 浏览 1 评论 0原文

我正在将一些低细节图像渲染到屏幕上。我使用位图作为缓冲区。有没有办法在.net 中重新调整位图大小(使用“最近邻居”)?

我正在使用 VB.net,因此所有 .net 解决方案都是可以接受的。

I have some low detail images I'm rendering to the screen. I'm using a bitmap as a buffer. Is there a way to re-size the bitmap (using "Nearest Neighbor") in .net?

I'm using VB.net so all .net solutions are acceptable.

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

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

发布评论

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

评论(1

我的奇迹 2024-12-13 10:18:41

一个简单的 Winforms 示例,绘制一个缩放图像,添加为名称为“SmallImage”的资源,并使用最近邻插值:

Public Class Form1
    Public Sub New()
        InitializeComponent()
        Me.SetStyle(ControlStyles.ResizeRedraw, True)
        Me.DoubleBuffered = True
        Me.bmp = My.Resources.SmallImage
    End Sub

    Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
        e.Graphics.InterpolationMode = Drawing2D.InterpolationMode.NearestNeighbor
        e.Graphics.PixelOffsetMode = Drawing2D.PixelOffsetMode.Half
        Dim h = Me.ClientSize.Width * bmp.Height / bmp.Width
        e.Graphics.DrawImage(bmp, New Rectangle(0, 0, Me.ClientSize.Width, h))
    End Sub

    Private bmp As Bitmap

End Class

A simple Winforms example that draws a scaled image added as a resource with the name "SmallImage" with nearest neighbor interpolation:

Public Class Form1
    Public Sub New()
        InitializeComponent()
        Me.SetStyle(ControlStyles.ResizeRedraw, True)
        Me.DoubleBuffered = True
        Me.bmp = My.Resources.SmallImage
    End Sub

    Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
        e.Graphics.InterpolationMode = Drawing2D.InterpolationMode.NearestNeighbor
        e.Graphics.PixelOffsetMode = Drawing2D.PixelOffsetMode.Half
        Dim h = Me.ClientSize.Width * bmp.Height / bmp.Width
        e.Graphics.DrawImage(bmp, New Rectangle(0, 0, Me.ClientSize.Width, h))
    End Sub

    Private bmp As Bitmap

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