Tag: 图像捕获

如何在不损失视网膜显示质量的情况下将UIView捕获到UIImage

我的代码对普通设备工作正常,但在视网膜设备上创build模糊的图像。 有没有人知道我的问题的解决scheme? + (UIImage *) imageWithView:(UIView *)view { UIGraphicsBeginImageContext(view.bounds.size); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return img; }