我有一个600x600uiimageview
和uitexview
一个 200x200 uiview 加载。
我想将其导出uiview
为 600x600,与uiimageview
大小相同。
但是,如果我使用下面的代码,我只能生成 400x400 的大小,即uiview
.
有什么代码可以实现吗?
UIGraphicsBeginImageContextWithOptions(outputView.bounds.size, outputView.opaque, 2);
[outputView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();