zoukankan      html  css  js  c++  java
  • iOS截屏保存至相册

    #pragma mark 截屏并保存至相册

    -(void)screenShotsComplete:(void(^)(UIImage * img)) complete

    {

        CGSize imageSize = [[UIScreen mainScreen] bounds].size;

        UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);

        

        CGContextRef context = UIGraphicsGetCurrentContext();

        

        for (UIWindow * window in [[UIApplication sharedApplication] windows]) {

            if (![window respondsToSelector:@selector(screen)] || [window screen] == [UIScreen mainScreen]) {

                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);

                [[window layer] renderInContext:context];

                

                CGContextRestoreGState(context);

            }

        }

        

        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

        UIGraphicsEndImageContext();

        UIImageWriteToSavedPhotosAlbum(image, self, nil, nil);

        NSLog(@"Suceeded!");

        if(complete){

            complete(image);

        }

     

    }

     

    //点击保存至相册后,出现动画效果

    [self screenShotsComplete:^(UIImage *img) {

                UIImageView * imgView=[[UIImageView alloc]initWithFrame:weakSelf.view.bounds];

                imgView.image=img;

                [weakSelf.view addSubview:imgView];

                

                CGPoint center=CGPointMake(weakSelf.view.center.x, weakSelf.view.center.y-64);

                [UIImageView animateWithDuration:1.0f animations:^{

                    imgView.width-=imgView.width;

                    imgView.height-=imgView.height;

                    imgView.alpha=0.0f;

                    imgView.center=center;

                } completion:^(BOOL finished) {

                    [imgView removeFromSuperview];

                    btn.enabled=YES;

                    [HintInfoView showOnView:weakSelf.view hintTitle:@"保存成功!" hintFont:weakSelf.commonTitleFont];

                }];

                

                

            }];

        };

     

     

     

     

     

  • 相关阅读:
    CSS 使用技巧
    CSS display
    CSS float
    .NET自动识别HttpWebResponse的编码及是否压缩
    通用权限管理系统基类中数据库的连接
    通用权限底层实现的记录软删除及表中应包含的基本字段
    最好用的兼容多种数据库通用高效的大数据分页功能
    水平权限漏洞的修复方案
    通用权限管理系统菜单展示的一个技巧
    IE11下用forms身份验证的问题
  • 原文地址:https://www.cnblogs.com/daxueshan/p/5804060.html
Copyright © 2011-2022 走看看