2012-11-24 75 views

回答

2

嘗試的正規途徑:

UIGraphicsBeginImageContext(rect); 
[qlController.view.layer renderInContext:UIGraphicsGetCurrentContext()]; 
UIImage * img = UIGraphicsGetImageFromCurrentImageContext(); 
UIGraphicsEndImageContext(); 

可以定義rect選擇視圖的區域轉換爲圖像。

相關問題