美文网首页
UIView转为图片

UIView转为图片

作者: 开发者老岳 | 来源:发表于2019-10-11 16:51 被阅读0次
        //UIGraphicsBeginImageContext(CGSizeMake(view.bounds.size.width, view.bounds.size.height)); //刚方法无scale,所以会模糊
        //UIGraphicsBeginImageContextWithOptions(区域大小, 是否是非透明的, 屏幕密度);
        UIGraphicsBeginImageContextWithOptions(view.frame.size, YES, UIScreen.mainScreen.scale);
        [self.portraitBar.layer renderInContext:UIGraphicsGetCurrentContext()];
        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
    

    相关文章

      网友评论

          本文标题:UIView转为图片

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