gpt4 book ai didi

ios - UIGraphicsGetCurrentContext 与 UIGraphicsBeginImageContext/UIGraphicsEndImageContext

转载 作者:IT王子 更新时间:2023-10-29 08:05:05 25 4
gpt4 key购买 nike

我是 iOS API 这些部分的新手,这里有一些问题在我脑海中造成无限循环

  1. 为什么 ..BeginImageContext 有大小而 ..GetCurrentContext 没有大小?如果 ..GetCurrentContext 没有大小,它在哪里绘制?界限是什么?

  2. 为什么他们必须有两个上下文,一个用于图像,一个用于一般图形?图像上下文不是已经是图形上下文了吗?分别的原因是什么(我是想知道我不知道的)

最佳答案

UIGraphicsGetCurrentContext() 返回对当前图形上下文的引用。它不会创建一个。记住这一点很重要,因为如果您从这个角度来看它,您会发现它不需要大小参数,因为当前上下文就是创建图形上下文时使用的大小。

UIGraphicsBeginImageContext(aSize) 用于在 UIView 的 drawRect: 方法之外的 UIKit 级别创建图形上下文。

这里是您将使用它们的地方。

如果你有一个 UIView 的子类,你可以像这样覆盖它的 drawRect: 方法:

- (void)drawRect:(CGRect)rect
{
//the graphics context was created for you by UIView
//you can now perform your custom drawing below

//this gets you the current graphic context
CGContextRef ctx = UIGraphicsGetCurrentContext();

//set the fill color to blue
CGContextSetFillColorWithColor(ctx, [UIColor blueColor].CGColor);

//fill your custom view with a blue rect
CGContextFillRect(ctx, rect);
}

在这种情况下,您不需要创建图形上下文。它是自动为您创建的,并允许您在 drawRect: 方法中执行自定义绘图。

现在,在另一种情况下,您可能希望在 drawRect: 方法之外执行一些自定义绘图。在这里您将使用 UIGraphicsBeginImageContext(aSize)

你可以这样做:

UIBezierPath *circle = [UIBezierPath
bezierPathWithOvalInRect:CGRectMake(0, 0, 200, 200)];

UIGraphicsBeginImageContext(CGSizeMake(200, 200));

//this gets the graphic context
CGContextRef context = UIGraphicsGetCurrentContext();

//you can stroke and/or fill
CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);
CGContextSetFillColorWithColor(context, [UIColor lightGrayColor].CGColor);
[circle fill];
[circle stroke];

//now get the image from the context
UIImage *bezierImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

UIImageView *bezierImageView = [[UIImageView alloc]initWithImage:bezierImage];

我希望这有助于为您解决问题。此外,您应该使用 UIGraphicsBeginImageContextWithOptions(size, opaque, scale)。有关使用图形上下文自定义绘图的进一步说明,请参阅我的回答 here

关于ios - UIGraphicsGetCurrentContext 与 UIGraphicsBeginImageContext/UIGraphicsEndImageContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21785254/

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