石英的光滑弧线?

发布于 2024-08-31 19:09:03 字数 227 浏览 3 评论 0原文

在开发圆角矩形小部件时,我遇到了以下问题:用弧线构建的路径在描边时看起来很难看。

图片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 技术交流群。

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

发布评论

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

评论(2

半葬歌 2024-09-07 19:09:03

石英绘图的一个技巧是将事物偏移半个像素。尝试在绘制之前插入矩形:

rect = CGRectInset( rect , -0.5 , -0.5 );

使用 +0.5 而不是 -0.5 会使矩形变小。

One trick with quartz drawing is to offset things by half a pixel. Try insetting your rect before drawing:

rect = CGRectInset( rect , -0.5 , -0.5 );

Doing +0.5 instead of -0.5 would make the rectangle smaller.

耳钉梦 2024-09-07 19:09:03

以下是适用于任何给定线宽的解决方案的概述:

- (void)drawRect:(CGRect)rect {
    CGFloat lineWidth=1.5;
    rect = CGRectInset(rect, lineWidth , lineWidth);
    ...
    CGContextSetLineWidth(context, lineWidth);
        ...
}

Here's outline of the solution valid for any given line width:

- (void)drawRect:(CGRect)rect {
    CGFloat lineWidth=1.5;
    rect = CGRectInset(rect, lineWidth , lineWidth);
    ...
    CGContextSetLineWidth(context, lineWidth);
        ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文