使用“最近邻居”重新调整位图的大小在.net中
我正在将一些低细节图像渲染到屏幕上。我使用位图作为缓冲区。有没有办法在.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的 Winforms 示例,绘制一个缩放图像,添加为名称为“SmallImage”的资源,并使用最近邻插值:
A simple Winforms example that draws a scaled image added as a resource with the name "SmallImage" with nearest neighbor interpolation: