OStack程序员社区-中国程序员成长平台

标题: ios - 截取 UIImageView 我只需要图像 IOS [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-11 17:09
标题: ios - 截取 UIImageView 我只需要图像 IOS

在我的 IOS 应用程序中,我正在截取 UIImageView 的屏幕截图。非常完美,如附件照片所示。但在这里,我采用了 UIImageView 内容模式 aspect fit 。我用过这段代码。

func captureView() -> UIImage {
        UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, false,UIScreen.mainScreen().scale)//add this line

        let context: CGContextRef = UIGraphicsGetCurrentContext()!
        self.backView.layer.renderInContext(context)
        let img: UIImage = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        return img
    }

我只需要 Image 的快照,而不是 ImageView。帮我解决这个问题。 enter image description here



Best Answer-推荐答案


试试这个代码:

func captureView() -> UIImage() {

    UIGraphicsBeginImageContext(YourimageView.frame.size)
    YourimageView.layer.renderInContext(UIGraphicsGetCurrentContext()!)
    let img = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    UIImageWriteToSavedPhotosAlbum(img, nil, nil, nil)
    return img
}

关于ios - 截取 UIImageView 我只需要图像 IOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38716144/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4