IOS UIGraphicsBeginImageContext 截图不清晰

来源:互联网 发布:数据科学入门 pdf 编辑:程序博客网 时间:2024/04/29 11:24

我们经常使用 UIGraphicsBeginImageContext  截图,发现放在手机上不清晰

  UIGraphicsBeginImageContext(v.frame.size);

    [v.layerrenderInContext:UIGraphicsGetCurrentContext()];

    UIImage*  viewImage=UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();



需要将 UIGraphicsBeginImageContext 换成 UIGraphicsBeginImageContextWithOptions

0 0