iOS 截图的实现

喻嘉泽
2023-12-01

一.普通截图

-(UIImage *)convertViewToImage:(UIView*)v{
    CGSize s = v.bounds.size;
    // 下面方法,第一个参数表示区域大小。第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES。第三个参数就是屏幕密度了,调整清晰度。
    UIGraphicsBeginImageContextWithOptions(s, NO, [UIScreen mainScreen].scale);
    [v.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage*image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
}

二.长截图


// 长截图 类型可以是 tableView或者scrollView 等可以滚动的视图 根据需要自己改
- (UIImage *)saveLongImage:(UIScrollView *)table {
    UIImage* image = nil;
    // 下面方法,第一个参数表示区域大小。第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES。第三个参数就是屏幕密度了,调整清晰度。
    UIGraphicsBeginImageContextWithOptions(table.contentSize, YES, [UIScreenmainScreen].scale);
    CGPoint savedContentOffset = table.contentOffset;
    CGRect savedFrame = table.frame;
    table.contentOffset = CGPointZero;
    table.frame = CGRectMake(0, 0, table.contentSize.width, table.contentSize.height);
    [table.layerrenderInContext: UIGraphicsGetCurrentContext()];
    image = UIGraphicsGetImageFromCurrentImageContext();
    table.contentOffset = savedContentOffset;
    table.frame = savedFrame;
    UIGraphicsEndImageContext();
    if (image != nil) {
        //保存图片到相册
        UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);
    }
    return image;
}

// 保存后回调方法
- (void)image: (UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo {
    NSString *msg = nil ;
    if(error != NULL){
        msg = @"保存图片失败" ;
    }else{
        msg = @"保存图片成功,可到相册查看" ;
    }
    UIAlertView *alert = [[UIAlertViewalloc] initWithTitle:nilmessage:msg delegate:selfcancelButtonTitle:@"确定"  otherButtonTitles:nil];
    [alert show];
}
 类似资料: