美文网首页
UIView 生成UIimage

UIView 生成UIimage

作者: 流星载梦 | 来源:发表于2019-11-04 14:55 被阅读0次

使用该方法不会模糊,根据屏幕密度计算

//使用该方法不会模糊,根据屏幕密度计算
- (UIImage *)convertViewToImage:(UIView *)view {
    UIImage *imageRet = [[UIImage alloc]init];
    //UIGraphicsBeginImageContextWithOptions(区域大小, 是否是非透明的, 屏幕密度);
    UIGraphicsBeginImageContextWithOptions(view.frame.size, YES, [UIScreen mainScreen].scale);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    imageRet = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return imageRet;
}

这个方法转换出来的图片 文字图片会变模糊

//这个方法转换出来的图片  文字图片会变模糊
- (UIImage *)convertViewToImage2:(UIView *)view {
    UIGraphicsBeginImageContext(view.bounds.size);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
    
}

相关文章

网友评论

      本文标题:UIView 生成UIimage

      本文链接:https://www.haomeiwen.com/subject/szkdbctx.html