【发布时间】:2013-04-10 02:14:51
【问题描述】:
我知道如何截取 iPhone/iPad 屏幕的常规矩形屏幕截图(代码如下)。但是,我正在寻找一种方法来获取旋转任意度数的屏幕截图
如何使用任意旋转的矩形截取UIView的截图?
//this is the rotation of the rectangle
NSNumber* savedRotation = [NSNumber numberWithFloat: 0.35]; //radians, get the real number from a gesture recognizer
//create a screenshot
CGSize screenshotSize;
//screenshot size has to be adjusted for the rotation, or multiplied by the square root of 2
if( UIDeviceOrientationIsLandscape([[UIApplication sharedApplication]statusBarOrientation]))
{
screenshotSize = CGSizeMake(1024,768);
}else
{
screenshotSize = CGSizeMake(768, 1024);
}
if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)])
UIGraphicsBeginImageContextWithOptions(screenshotSize, NO, [UIScreen mainScreen].scale);
else
UIGraphicsBeginImageContext(screenshotSize);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSaveGState(context);
//this does the proper rotation, but there's some kind of extra translation required to make it capture what's under the rectangle
CGContextRotateCTM(context, -savedRotation.floatValue);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *screenshot = UIGraphicsGetImageFromCurrentImageContext();
CGContextRestoreGState(context);
这是上面代码的结果,它似乎部分工作,但需要对 CTM 进行一些额外的翻译才能完美匹配捕获矩形。此外,我需要将上下文的边界更改为更宽(可能是 1024 * sqrt(2) 宽度和高度),以允许任何旋转而不进行裁剪。
【问题讨论】:
-
您想要旋转镜头的框架,这样您就可以拥有屏幕的对角线部分?或者你想让屏幕在你拍摄之前旋转?
-
实际上我在屏幕上覆盖了一个矩形,用于定义屏幕截图裁剪区域。这个矩形可以由用户旋转。我希望捕捉矩形框架所包含的任何内容(可以与主视图相关的角度)
标签: objective-c ipad uiview ios6 screenshot