17
Retina 디스플레이에서 품질 손실없이 UIView를 UIImage로 캡처하는 방법
내 코드는 일반적인 장치에서는 잘 작동하지만 망막 장치에서 흐릿한 이미지를 만듭니다. 아무도 내 문제에 대한 해결책을 알고 있습니까? + (UIImage *) imageWithView:(UIView *)view { UIGraphicsBeginImageContext(view.bounds.size); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return img; }