私uiimageview
は600x600uitexview
で、200x200uiviewにロードされています。
uiview
これをサイズと同じ600x600にエクスポートしたいと思いuiimageview
ます。
ただし、以下のコードを使用すると、400x400のサイズしか生成できません。これは、の網膜サイズですuiview
。
これを実現できるコードはありますか?
UIGraphicsBeginImageContextWithOptions(outputView.bounds.size, outputView.opaque, 2);
[outputView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();