OStack程序员社区-中国程序员成长平台

标题: iOS - 如何使用 CGContextRef 绘制异形线 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 18:47
标题: iOS - 如何使用 CGContextRef 绘制异形线

我怎样才能画一条有形的线?例如带有 CGContextRef 的心形、菱形或星形线?

心线示例:

enter image description here

钻石线示例:

enter image description here

三角线示例:

enter image description here

星线示例:

enter image description here

这是我目前拥有的:

- (void)draw
{
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextAddPath(context, path);
    CGContextSetLineCap(context, kCGLineCapRound);
    CGContextSetLineWidth(context, self.lineWidth);
    CGContextSetStrokeColorWithColor(context, self.lineColor.CGColor);
    CGContextSetBlendMode(context, kCGBlendModeNormal);
    CGContextSetAlpha(context, self.lineAlpha);
    CGContextStrokePath(context);
}

上面的代码只画了一条普通的笔线。

我可以用 Photoshop 制作的 .png 图像来绘制形状线条吗?请指导我如何执行此操作。



Best Answer-推荐答案


我已经为你创建了虚拟应用程序,请看看我们如何实现自定义线条绘制。

如果您需要更多帮助,请告诉我。

https://github.com/tikamsingh/ShapeDrawing

关于iOS - 如何使用 CGContextRef 绘制异形线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35767383/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4