iOS_截屏並裁剪
阿新 • • 發佈:2017-05-24
window 頂上 bject control 狀態 數組 mar sel rar
截圖使用場景:
iOS 7中的代碼代段
// 使用上下文截圖,並使用指定的區域裁剪,模板代碼 - (void)screenShot { // 將要被截圖的view,即窗體的根控制器的view(必須不含狀態欄,默認ios7中控制器是包括了狀態欄的) BeyondViewController *beyondVC = self.view.window.rootViewController; // 背景圖片 總的大小 CGSize size = beyondVC.view.frame.size; // 開啟上下文,使用參數之後,截出來的是原圖(YES 0.0 質量高) UIGraphicsBeginImageContextWithOptions(size, YES, 0.0); // 裁剪的關鍵代碼,要裁剪的矩形範圍 CGRect rect = CGRectMake(0, -20, size.width, size.height + 20 ); //註:iOS7以後renderInContext:由drawViewHierarchyInRect:afterScreenUpdates:替代 [beyondVC.view drawViewHierarchyInRect:rect afterScreenUpdates:NO]; // 從上下文中,取出UIImage UIImage *snapshot = UIGraphicsGetImageFromCurrentImageContext(); // 加入截取好的圖片到圖片數組 [_cutImages addObject:snapshot]; // 千萬記得,結束上下文(移除棧頂上下文) UIGraphicsEndImageContext(); }
iOS 6中的代碼片段
// 使用上下文截圖,模板代碼 - (void)screenShot3 { // 將要被截圖的view,窗體的根控制器的view(iOS6,默認控制器不含狀態欄) BeyondViewController *beyondVC = self.view.window.rootViewController; UIView *cutView = beyondVC.view; // 開啟上下文,使用參數之後,截出來的是原圖(YES 0.0 質量高) UIGraphicsBeginImageContextWithOptions(cutView.frame.size, YES, 0.0); // 將cutView的圖層渲染到上下文中 [cutView.layer renderInContext:UIGraphicsGetCurrentContext()]; // 取出UIImage UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); // 加入截取好的圖片到圖片數組 [_cutImages addObject:image]; // 千萬記得,結束上下文 UIGraphicsEndImageContext(); }
iOS_截屏並裁剪