iOS View生成--->清晰的图片

核心代码

view生成图片方法

UIGraphicsBeginImageContext(view.bounds.size);  
   [view.layer renderInContext:UIGraphicsGetCurrentContext()];  
   UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();  
   UIGraphicsEndImageContext();  

生成的清晰图片

#pragma mark 生成image  
- (UIImage *)GetmakeImageWithView:(UIView *)view andWithSize:(CGSize)size  
{  
      
    // 下面方法,第一个参数表示区域大小。第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES。第三个参数就是屏幕密度了,关键就是第三个参数 [UIScreen mainScreen].scale。  
    UIGraphicsBeginImageContextWithOptions(size, NO, 0.0);  
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];  
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();  
    UIGraphicsEndImageContext();  
    return image;  
  
}  

猜你喜欢

转载自www.cnblogs.com/shenlaiyaoshi/p/9006069.html
今日推荐