iPhone 應用裡實現截屏功能的代碼

來源:互聯網
上載者:User

Phone 使用者同步選取 Home 和鎖屏鍵就能截屏,但在應用裡總不能跳出一行字讓使用者自己按截屏鍵,支援高清解析度:

UIView *view = [[[[[UIApplication sharedApplication] windows] objectAtIndex:1] subviews] lastObject];//獲得某個window的某個subView


    NSInteger index = 0;//用來給儲存的png命名

    for (UIView *subView in [view subviews]) {//遍曆這個view的subViews

        if ([subView isKindOfClass:NSClassFromString(@"UIImageView")] || [subView isKindOfClass:NSClassFromString(@"UIThreePartButton")]) {//找到自己需要的subView

            //支援retina高分的關鍵

            if(UIGraphicsBeginImageContextWithOptions != NULL)

            {

                UIGraphicsBeginImageContextWithOptions(subView.frame.size, NO, 0.0);

            } else {

                UIGraphicsBeginImageContext(subView.frame.size);

            }            


            //擷取映像

            [subView.layer renderInContext:UIGraphicsGetCurrentContext()];

            UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

            UIGraphicsEndImageContext();


            //儲存映像

            NSString *path = [NSHomeDirectory() stringByAppendingFormat:@"/%d.png",index];

            if ([UIImagePNGRepresentation(image) writeToFile:path atomically:YES]) {

                index += 1;

                NSLog(@"Succeeded!");

            }

            else {

                NSLog(@"Failed!");

            }

        }

    }


第二種方式

UIImage* image = nil;#if TARGET_IPHONE_SIMULATOR    CGSize imageSize = [view bounds].size;    if (NULL != UIGraphicsBeginImageContextWithOptions)        UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);    else        UIGraphicsBeginImageContext(imageSize);    CGContextRef context = UIGraphicsGetCurrentContext();    [view.layer renderInContext:context];      image = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();#else    CGImageRef screen = UIGetScreenImage();//
by smking, 使用這種方法前,需要在.m檔案開始處,加入extern "C" CGImageRef UIGetScreenImage();,
這樣才能使用UIGetScreenImage();函數// by heqin, 本人測試過,在上傳代碼時,如果裡面使用了這個方法,則會被拒,蘋果認為這是個私人方法,2013.3.9    image = [UIImage imageWithCGImage:screen];  #endif// by heqin, 另一個問題是, 上面兩種方法都無法捕捉到當前螢幕中是用OpenGL繪製的情況,所以對於OpenGL的截屏,還需要進一步研究再補充一個儲存當前view到相簿的方法#import <QuartzCore/QuartzCore.h>    UIGraphicsBeginImageContext(currentView.bounds.size);     //currentView 當前的view
    [currentView.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.