gpt4 book ai didi

ios - IOS 如何截屏

转载 作者:搜寻专家 更新时间:2023-10-30 22:05:32 24 4
gpt4 key购买 nike

我正在开发需要清晰屏幕截图的 IOS 应用程序,我已经尝试过了

func captureView() -> UIImage {
//hide controls if needed
let rect: CGRect = self.imageView.frame
UIGraphicsBeginImageContext(rect.size)
let context: CGContextRef = UIGraphicsGetCurrentContext()!
self.view.layer.renderInContext(context)
let img: UIImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return img
}

但是图像质量不好。请给我一些建议。

最佳答案

换行

UIGraphicsBeginImageContext(rect.size)

UIGraphicsBeginImageContextWithOptions(rect.size, false, 0.0);

关于ios - IOS 如何截屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38698318/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com