我使用这个代码,以使从视图中的图像。 那么我将其保存到相册。 该图像是模糊的? 为什么? 有没有解决的办法?
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
TNX所有。