gpt4 book ai didi

iphone - CGLayer 和抗锯齿 CGPath

转载 作者:行者123 更新时间:2023-12-03 16:14:47 26 4
gpt4 key购买 nike

我正在画几个CGPaths在iPad 上的drawRect 方法中的Cocoa View 中。我开始将它们直接绘制到 UIGraphicsGetCurrentContext()上下文,但是当我的路径变得很长时,性能就会下降。基于several其他问题,我开始研究使用 CGLayer s。

所以我现在要做的是在 CGContextRef 内部渲染一条路径我通过调用CGLayerGetContext得到。这是我正在做的事情的基本概述:

// rect comes from the drawRect: method
layer = CGLayerCreateWithContext(context, rect.size, NULL);
layerContext = CGLayerGetContext(layer);
CGContextSetLineCap(layerContext, kCGLineCapRound);

// Set the line styles
CGContextSetLineJoin(layerContext, kCGLineJoinRound);
CGContextSetLineWidth(layerContext, 1.0);
CGContextSetStrokeColorWithColor(layerContext, [UIColor blackColor].CGColor);

// Create a mutable path
path = CGPathCreateMutable();

// Move to start point
//...

for (int i = 0; i < points.count; i++) {
// compute controlPoint and anchorPoint
//...

CGPathAddQuadCurveToPoint(path,
nil,
controlPoint.x,
controlPoint.y,
anchorPoint.x,
anchorPoint.y);
}
// Stroke the path
CGContextAddPath(layerContext, path);
CGContextStrokePath(layerContext);

// Add the layer to the main context
CGContextDrawLayerAtPoint(context, CGPointZero, layer);

现在,我获得了良好的性能绘图,但我的线条非常锯齿,并且似乎没有抗锯齿。我尝试过添加

CGContextSetShouldAntialias(layerContext, YES);
CGContextSetAllowsAntialiasing(layerContext, YES);
CGContextSetInterpolationQuality(layerContext, kCGInterpolationHigh);

上面的代码没有效果。我什至在主 context 上设置了抗锯齿属性,没有变化。我拍摄了相同代码结果的屏幕截图,但第二张图像是根据 CGLayer 中的绘图创建的图像。 。正如你所看到的,它确实是锯齿状的,尽管是相同的代码,只是绘制成 layerContext 。我怎样才能得到 CGLayer 中的行要顺利吗?

smooth lines jagged lines

最佳答案

我发现第二张图像没有抗锯齿的原因是因为没有任何东西可以抗锯齿。背景是空的,因此抗锯齿不起作用。如果您在完全透明的 View 边界上创建一个大矩形,则该线将使用抗锯齿功能绘制。然而,性能被扼杀了。最好不要走这条路。

关于iphone - CGLayer 和抗锯齿 CGPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6963857/

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