使用 GDI 调用平滑线条
如何在 Win32 中使使用 GDI 调用(例如 Polygon()、LineTo())绘制的线条平滑? GDI或GDI+中有没有可以绘制平滑线条的函数?
How to make lines drawn using GDI calls (like polygon(), LineTo()) smooth in Win32?
Is there any function in GDI or GDI+ that will draw smooth lines ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望使用 GDI 执行此操作,则需要手动执行此操作,对于 GDI+,请查看
Graphics::SetSmoothingMode
与SmoothingModeAntiAlias*
枚举之一。If you want this with GDI you will need to do it manually, for GDI+ take a look at
Graphics::SetSmoothingMode
with one of theSmoothingModeAntiAlias*
enums.