タグ付けされた質問 「image-capture」

17
Retinaディスプレイの品質を損なうことなくUIViewをUIImageにキャプチャする方法
私のコードは通常のデバイスでは問題なく動作しますが、Retinaデバイスでぼやけた画像を作成します。 誰かが私の問題の解決策を知っていますか? + (UIImage *) imageWithView:(UIView *)view { UIGraphicsBeginImageContext(view.bounds.size); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return img; }
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.