石英的光滑弧线?
在开发圆角矩形小部件时,我遇到了以下问题:用弧线构建的路径在描边时看起来很难看。
图片http://img51.yfrog.com/img51/8919/quartzarc.png
如何让描边的弧线看起来更好看?
While developing a rounded rectangle widget I encountered the following problem: path built with arcs looks ugly when stroked.
picture http://img51.yfrog.com/img51/8919/quartzarc.png
How to make the stroked arcs look nicer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
石英绘图的一个技巧是将事物偏移半个像素。尝试在绘制之前插入矩形:
使用 +0.5 而不是 -0.5 会使矩形变小。
One trick with quartz drawing is to offset things by half a pixel. Try insetting your rect before drawing:
Doing +0.5 instead of -0.5 would make the rectangle smaller.
以下是适用于任何给定线宽的解决方案的概述:
Here's outline of the solution valid for any given line width: