gpt4 book ai didi

iphone - iOS 截图延迟

转载 作者:行者123 更新时间:2023-12-03 19:02:00 25 4
gpt4 key购买 nike

我想快速捕获屏幕截图以制作图像视频。我目前正在使用以下代码,但它略有延迟。有没有更好、更快的截图方法?

CGSize imageSize = [[UIScreen mainScreen] bounds].size;
if (NULL != UIGraphicsBeginImageContextWithOptions)
UIGraphicsBeginImageContextWithOptions(imageSize, NO, 1);
else
UIGraphicsBeginImageContext(imageSize);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *imageName = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

最佳答案

您可以使用OpenGL来截屏,但这种方法速度较慢。没有其他方法可以以编程方式检索屏幕截图。

关于iphone - iOS 截图延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9511448/

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