创建 UIView 图像时出现问题

发布于 2024-09-08 00:17:11 字数 611 浏览 4 评论 0原文

我想创建 UIWebView 的 UIImage,然后绘制该图像。

这是我的代码:

    UIView *tempView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 768, 1004)];
 tempView.backgroundColor = [UIColor blueColor];

 UIGraphicsBeginImageContext(tempView.bounds.size);
    [tempView drawRect:tempView.bounds];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext(); 
 CGRect imageRect = CGRectMake(0, 0, image.size.width, image.size.height);
 CGContextDrawImage(ctx, imageRect, [image CGImage]);

但它除了空白页之外没有绘制任何内容。我们不能像那样创建 UIImage 还是我在代码中的某个地方做错了什么?

谢谢

I want to create an UIImage of UIWebView and then I want to draw that image.

Here is my code:

    UIView *tempView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 768, 1004)];
 tempView.backgroundColor = [UIColor blueColor];

 UIGraphicsBeginImageContext(tempView.bounds.size);
    [tempView drawRect:tempView.bounds];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext(); 
 CGRect imageRect = CGRectMake(0, 0, image.size.width, image.size.height);
 CGContextDrawImage(ctx, imageRect, [image CGImage]);

but its not drawing anything other than a blank page. Cant we create UIImage like that or Am I doing something wrong somewhere in the code.

Thanx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人生戏 2024-09-15 00:17:11

下一个代码应该可以工作:

UIGraphicsBeginImageContext(tempView.bounds.size);
[tempView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

The next code should work:

UIGraphicsBeginImageContext(tempView.bounds.size);
[tempView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文