从 UIView 捕获图像在 iOS 10.3.3 上不起作用

Capture image from UIView is not working on iOS 10.3.3

我从 UIView 内容中捕获 image,如下所示,它工作正常,但是当我 运行 在我的 iPhone5S 中使用 iOS 10.3.3 时,捕获 image仅包含黑色视图。

-(UIImage *)captureImageFromView:(UIView *)view {
    UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return image;
}

有什么问题吗? 提前致谢。

请尝试使用 drawViewHierarchyInRect。如果这也不起作用,那么问题很可能是您捕获了错误的视图,或者在以某种方式更改了视图之后。

-(UIImage *)captureImageFromView:(UIView *)view {
    UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);
    [view drawViewHierarchyInRect:view.bounds afterScreenUpdates:YES];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return image;
}

对于 SWIFT

func snapshot() -> UIImage {
        UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, true, UIScreen.main.scale)
        self.view.layer.render(in: UIGraphicsGetCurrentContext()!)
        let img = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        return img!
    }

对于OBJECTIVE C

- (UIImage *)captureView {

    UIGraphicsBeginImageContext(yourview.frame.size);

    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextFillRect(ctx, yourview.frame);

    [yourview.layer renderInContext:ctx];

    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();
    NSLog(@"size %f %f",newImage.size.height,newImage.size.width);

    return newImage;
}

如果需要,请在调用隐藏按钮等之前也不会显示在图像上。

您可以按照@LGP 的说明进行操作。

在主线程上使用以下函数,如下所示。

-(UIImage *)captureImageFromView:(UIView *)view {
    UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);
    [view drawViewHierarchyInRect:view.bounds afterScreenUpdates:YES];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return image;
}

主线程代码。

dispatch_async(dispatch_get_main_queue(), ^{
    UIImage *imgResult = [self captureImageFromView:yourView];
});