gpt4 book ai didi

ios - 删除部分 CGPath

转载 作者:可可西里 更新时间:2023-11-01 02:18:40 26 4
gpt4 key购买 nike

如何删除路径的某些部分?我在屏幕上绘制了一条路径,现在假设我想删除 1/3:

Like that

我试过这样做(路径是我的原始路径,cPath是将被剪切的副本):

let sizePath = CGPathGetBoundingBox(path).size
UIGraphicsBeginImageContext(sizePath)
let context = UIGraphicsGetCurrentContext()
let cPath = CGPathCreateMutableCopy(path)
CGContextAddPath(context, cPath)
CGContextDrawPath(context, .Stroke)
let rect = CGRectMake(currentPosition.x, 0, sizePath.width, sizePath.height)
CGContextClipToRect(context, rect)
//How to Recive here this Clipped Path from context???

UIGraphicsEndImageContext()

但我不知道如何从我的上下文中接收这条路径...

最佳答案

您需要CGContextClipToRect之前CGContextDrawPath。裁剪区域只影响后续绘制。

关于ios - 删除部分 CGPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33581397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com