我有一個uiimageview
即600x600和uitexview
加載到一個200x200的視圖。將uiview保存爲指定尺寸
我想將此uiview
導出爲600x600,與uiimageview
大小相同。
但是,如果我使用下面的代碼,我只能生成400x400的大小,這就是uiview
的視網膜大小。
有沒有我可以實現這個目標的任何代碼?
UIGraphicsBeginImageContextWithOptions(outputView.bounds.size, outputView.opaque, 2);
[outputView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
你嘗試對outputView應用轉換嗎?即'outputView.transform = CGAffineTransformMakeScale(1.5,1.5);' – mvds