iOS 生成图片(知识点记录)
作者:
咕噜_LSP | 来源:发表于
2020-03-31 11:44 被阅读0次//最主要生成图片的方法
-(UIImage *)imageWithView:(UIView *)view
{
CGFloat scale = [UIScreen mainScreen].scale;
UIGraphicsBeginImageContextWithOptions(_scrollview.frame.size, NO, scale);
[_scrollview.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
if (image != nil) {
// 写到相册
UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
}
return nil;
}
本文标题:iOS 生成图片(知识点记录)
本文链接:https://www.haomeiwen.com/subject/focwuhtx.html
网友评论