gpt4 book ai didi

ios - 在 iPhone X 上画线

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:18 25 4
gpt4 key购买 nike

我的应用程序中有在照片上绘图的功能。它适用于除 iPhone X 以外的所有设备。在 iPhone X 上,线条会随着手指的每次移动而变淡并向上移动。上方 10-20% 的视野区域效果很好。以下是画线的代码。

- (void)drawLineNew{

UIGraphicsBeginImageContext(self.bounds.size);
[self.viewImage drawInRect:self.bounds];

CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
CGContextSetStrokeColorWithColor(UIGraphicsGetCurrentContext(), self.selectedColor.CGColor);
CGContextSetLineWidth(UIGraphicsGetCurrentContext(), _lineWidth);
CGContextBeginPath(UIGraphicsGetCurrentContext());
CGContextMoveToPoint(UIGraphicsGetCurrentContext(), previousPoint.x, previousPoint.y);
CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentPoint.x, currentPoint.y);

CGContextStrokePath(UIGraphicsGetCurrentContext());
self.viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

[self setNeedsDisplay];}

以下是样图截图 enter image description here

最佳答案

经过数小时的点击和试用,我成功了。我写的代码是正确的,应该可以工作。唯一的问题是该绘图 View (自身)的框架大小。 View 的高度是 float 的,这使得它随着每个像素向上移动。我应用了 lroundf 函数及其工作原理。
快乐编码。

关于ios - 在 iPhone X 上画线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48150872/

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