iPhone - 将当前视图保存为图像

时间:2009-04-14 05:14:20

标签: iphone

如何将当前视图作为图像保存到我的应用程序的相机胶卷?有可能吗?

感谢。

1 个答案:

答案 0 :(得分:44)

找到解决方案。可以帮助别人。要将当前视图另存为图像,请执行以下操作

UIGraphicsBeginImageContext(pictureView.bounds.size); 
                

[pictureView.layer renderInContext:UIGraphicsGetCurrentContext()]; 

UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);