iOS開發-檢測使用者截屏, 並擷取所截圖片,ios截屏

來源:互聯網
上載者:User

iOS開發-檢測使用者截屏, 並擷取所片,ios截屏

可以檢測到使用者截屏行為(Home + Power),並在稍後點擊附加功能按鈕時詢問使用者是否要發送剛才截屏的圖片,這個使用者體驗非常好。於是乎, 我也想著實現這個功能。


在iOS7之前, 如果使用者截屏,系統會自動取消螢幕上的所有 touch 事件,(使用 touchesCancelled:withEvent: 這個方法)那麼我們就可以檢測這個方法的調用,然後載入本地最新圖片再加以判斷來實現我們的目的。但在 iOS 7 之後,截屏不再會取消螢幕的 touch 事件,所以導致了 Snapchat 和 Facebook Poke 之類的應用在 iOS 7 剛發布時依賴於系統這個行為的功能受到影響。

如果不採取任何新措施, 我們可以讓應用啟動後在後台迴圈檢測相簿內最新一張照片,看它的是否符合截屏的特徵。這種方法可行,但這是個笨方法,需要使用者允許你的程式訪問相簿才可以,並且一直在後台迴圈會消耗更多的系統資源。

當然, 蘋果封閉了一些東西, 肯定也會給你開放其他東西, 不會讓你走上絕路的。

iOS7提供一個嶄新的推送方法:UIApplicationUserDidTakeScreenshotNotification。只要像往常一樣訂閱即可知道什麼時候了。
注意:UIApplicationUserDidTakeScreenshotNotification 將會在完成之後顯示。現在在截取之前無法得到通知。

希望蘋果會在iOS8當中增加 UIApplicationUserWillTakeScreenshotNotification。(只有did, 沒有will顯然不是蘋果的風格...)



下面就寫了個小demo, 檢測使用者截屏, 並且擷取截屏照片, 顯示在右下角。

(需要在真機上運行, 至少, 模擬器上我不知道如何類比截屏行為(Home + Power), 如果你知道, 還望告知)


源碼git下載連結:colin1994/TakeScreenshotTest


一。註冊通知:

    //註冊通知    [[NSNotificationCenter defaultCenter] addObserver:self                                             selector:@selector(userDidTakeScreenshot:)                                                 name:UIApplicationUserDidTakeScreenshotNotification object:nil];


二。監聽截屏:

執行操作, 也就是實現上面通知對應的響應函數  -- userDidTakeScreenshot

//截屏響應- (void)userDidTakeScreenshot:(NSNotification *)notification{    NSLog(@"檢測到截屏");        //人為截屏, 類比使用者截屏行為, 擷取所片    UIImage *image_ = [self imageWithScreenshot];        //添加顯示    UIImageView *imgvPhoto = [[UIImageView alloc]initWithImage:image_];    imgvPhoto.frame = CGRectMake(self.window.frame.size.width/2, self.window.frame.size.height/2, self.window.frame.size.width/2, self.window.frame.size.height/2);        //添加邊框    CALayer * layer = [imgvPhoto layer];    layer.borderColor = [                         [UIColor whiteColor] CGColor];    layer.borderWidth = 5.0f;    //添加四個邊陰影    imgvPhoto.layer.shadowColor = [UIColor blackColor].CGColor;    imgvPhoto.layer.shadowOffset = CGSizeMake(0, 0);    imgvPhoto.layer.shadowOpacity = 0.5;    imgvPhoto.layer.shadowRadius = 10.0;    //添加兩個邊陰影    imgvPhoto.layer.shadowColor = [UIColor blackColor].CGColor;    imgvPhoto.layer.shadowOffset = CGSizeMake(4, 4);    imgvPhoto.layer.shadowOpacity = 0.5;    imgvPhoto.layer.shadowRadius = 2.0;    [self.window addSubview:imgvPhoto];}


我這裡的 userDidTakeScreenshot 總共做了3件事

1.列印檢測到截屏

2.擷取截屏圖片。調用[self imageWithScreenshot]; 這裡的imageWithScreenshot是人為截屏, 類比使用者截屏操作, 擷取截屏圖片。

3.顯示截屏圖片, 以螢幕1/4大小顯示在右下角, 並且加上白色邊框和陰影製作效果反白。


三。擷取截屏圖片

/** *  截取當前螢幕 * *  @return NSData * */- (NSData *)dataWithScreenshotInPNGFormat{    CGSize imageSize = CGSizeZero;    UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;    if (UIInterfaceOrientationIsPortrait(orientation))        imageSize = [UIScreen mainScreen].bounds.size;    else        imageSize = CGSizeMake([UIScreen mainScreen].bounds.size.height, [UIScreen mainScreen].bounds.size.width);        UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);    CGContextRef context = UIGraphicsGetCurrentContext();    for (UIWindow *window in [[UIApplication sharedApplication] windows])    {        CGContextSaveGState(context);        CGContextTranslateCTM(context, window.center.x, window.center.y);        CGContextConcatCTM(context, window.transform);        CGContextTranslateCTM(context, -window.bounds.size.width * window.layer.anchorPoint.x, -window.bounds.size.height * window.layer.anchorPoint.y);        if (orientation == UIInterfaceOrientationLandscapeLeft)        {            CGContextRotateCTM(context, M_PI_2);            CGContextTranslateCTM(context, 0, -imageSize.width);        }        else if (orientation == UIInterfaceOrientationLandscapeRight)        {            CGContextRotateCTM(context, -M_PI_2);            CGContextTranslateCTM(context, -imageSize.height, 0);        } else if (orientation == UIInterfaceOrientationPortraitUpsideDown) {            CGContextRotateCTM(context, M_PI);            CGContextTranslateCTM(context, -imageSize.width, -imageSize.height);        }        if ([window respondsToSelector:@selector(drawViewHierarchyInRect:afterScreenUpdates:)])        {            [window drawViewHierarchyInRect:window.bounds afterScreenUpdates:YES];        }        else        {            [window.layer renderInContext:context];        }        CGContextRestoreGState(context);    }        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();        return UIImagePNGRepresentation(image);}/** *  返回截取到的圖片 * *  @return UIImage * */- (UIImage *)imageWithScreenshot{    NSData *imageData = [self dataWithScreenshotInPNGFormat];    return [UIImage imageWithData:imageData];}




怎顯示截屏後的圖片

如果要截螢幕,最簡單的是用F12旁邊的截屏鍵print,然後用畫圖之類的工具(windows系統本身就有附帶這麼一個"畫圖"功能,在開始/程式/附件/畫圖可以找到)粘貼處理一下儲存即可,不過儲存的是BMP格式,有PS軟體的軟體就可以轉換成其它格式的,如GIF,JPG.
如果你只是想截當前視窗的圖片,你可以按住ALT再按print,然後跟上所似.
現在QQ上也有一個很實用的功能,ALT+CTRL+A鍵,你就可以隨意切下你想切的螢幕範圍及大小.有QQ的話就試一下,也是一個很方便的工具來的,加上PS軟體就可以修改成你喜歡的圖片了.
 
按鍵盤上的截屏鍵,所截得的圖片在哪個檔案夾?

它沒有自動儲存的,你要自己儲存。你可以放在WORD文檔、畫圖、QQ等。
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.