gpt4 book ai didi

iphone - 带参数的 UIGraphicsBeginImageContext

转载 作者:行者123 更新时间:2023-12-03 18:26:53 26 4
gpt4 key购买 nike

我正在我的应用程序中截取屏幕截图。我可以截图。

现在我想通过指定 x 和 y 坐标来截取屏幕截图。这可能吗?

UIGraphicsBeginImageContext( self.view.bounds.size );
[self.view.layer renderInContext:UIGraphicsGetCurrentContext( )];
UIImage* aImage = UIGraphicsGetImageFromCurrentImageContext( );

最佳答案

UIGraphicsBeginImageContext(self.view.bounds.size);
CGContextRef c = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(c, 0, -40); // <-- shift everything up by 40px when drawing.
[self.view.layer renderInContext:c];
UIImage* viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

关于iphone - 带参数的 UIGraphicsBeginImageContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4194388/

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