我无法保存绘制的图像

发布于 2024-12-02 09:14:07 字数 453 浏览 1 评论 0原文

我有一个 UIView 类型的绘图视图,可以在其中绘制图片。但这种方法只保存了我的白色区域,没有我绘制的图片。为什么?

-(void)saveCurrentScreenToPhotoAlbum 
{    
    UIGraphicsBeginImageContext(drawingView.bounds.size);
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    [drawingView.layer renderInContext:ctx];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIImageWriteToSavedPhotosAlbum(image, self, nil, nil);
}

I have a drawingView of type UIView where I can draw pictures. But this method save just I white area without my drawn picture. Why?

-(void)saveCurrentScreenToPhotoAlbum 
{    
    UIGraphicsBeginImageContext(drawingView.bounds.size);
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    [drawingView.layer renderInContext:ctx];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIImageWriteToSavedPhotosAlbum(image, self, nil, nil);
}

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

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

发布评论

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

评论(1

愁以何悠 2024-12-09 09:14:07

保存图像后,请尝试移至

UIGraphicsEndImageContext();

功能底部。除此之外,它看起来与我使用的代码相同。如果这不起作用,您能否提供更多有关如何/何时调用此方法以及在屏幕上绘制内容的详细信息?

Off the top of my head, try moving

UIGraphicsEndImageContext();

to the bottom of the function, after you save the image. Aside from that it looks the same as the code I used. If that doesn't work, can you provide a few more details on how/when you're calling this method, and what you're drawing to the screen?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文