用于绘制 HBITMAP 的 StretchBlt 的更高质量替代方案是什么?
由于速度问题我不想使用GDI+的DrawImage。还有哪些其他方法可以绘制以良好质量调整大小的图像 - 至少是线性或三次插值?
I don't want to use GDI+'s DrawImage because of speed issues. What other ways are there to draw an image resized with decent quality - at least linear or cubic interpolation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
SetStretchBltMode
使用HALFTONE
设置,但您可能会遇到与 GDI+ 相同的速度问题 - 平滑总是要付出代价的。You can use
SetStretchBltMode
with theHALFTONE
setting, but you'll probably run into the same speed issues that you faced with GDI+ -- smoothing always comes at a cost.