• 将当前的手机屏幕上的视图控件的view拍照 并保存到手的album中


     

    //将当前的手机屏幕上的视图控件的view拍照 并保存到手的album中

    - (IBAction) camera {

            UIAlertView *alert = [[UIAlertViewalloc]initWithTitle:@"Image Saved"

                                                           message:[NSStringstringWithFormat:@"This Chart has been saved to your Photo album. You can view, email and print the Chart using the Apple Photos app. "]

                                                          delegate:self

                                                 cancelButtonTitle:@"OK"

                                                 otherButtonTitles:nil];

            [alert show];

            [alert release];

     

            UIGraphicsBeginImageContext(self.view.bounds.size); //currentView 当前的view

            [self.view.layerrenderInContext:UIGraphicsGetCurrentContext()];//将当前的viewlayer 加入当前的图形上下文 

            UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();

            UIGraphicsEndImageContext();

            UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);

            /*  1. UIGraphicsBeginImageContext方法   按照制定大小CGSize创建一个基于位图的图形上下文并使之成为当前上下文。

                2. UIGraphicsGetCurrentContext() 返回当前图形上下文

                3. UIGraphicsEndImageContext() 删除当前基于位图的图形上下文从堆栈的顶部。

                4. UIImageWriteToSavedPhotosAlbum(,,,)图像保存到当地的album 

             */

        

    }

  • 相关阅读:
    bzoj3293 分金币
    考前模板整理
    CF785D Anton and School
    容斥法解决错排问题
    CF1248F Catowice City
    CF1248E Queue in the Train
    CF1244F Chips
    CF1244C The Football Season
    Noip2016Day1T2 天天爱跑步
    Noip2015Day2T3 运输计划
  • 原文地址:https://www.cnblogs.com/zander/p/2619973.html
Copyright © 2020-2023  润新知