我正在使用此代码从视图中渲染图像。然后我将它保存到相册。图像模糊?为什么?有解决办法吗?
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
Tnx 全部。