我正在使用这种方法来截取我的应用程序的屏幕截图:
+ (NSData*)TakeScreenshot
{
// Create a graphics context with the target size
// On iOS 4 and later, use UIGraphicsBeginImageContextWithOptions to take the scale into consideration
// On iOS prior to 4, fall back to use UIGraphicsBeginImageContext
CGSize imageSize = [[UIScreen mainScreen]bounds].size;
if (NULL != UIGraphicsBeginImageContextWithOptions)
UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
else
UIGraphicsBeginImageContext(imageSize);
CGContextRef context = UIGraphicsGetCurrentContext();
// Iterate over every window from back to front
for (UIWindow *window in [[UIApplication sharedApplication] windows])
{
if (![window respondsToSelector:@selector(screen)] || [window screen] == [UIScreen mainScreen])
{
// -renderInContext: renders in the coordinate space of the layer,
// so we must first apply the layer's geometry to the graphics context
CGContextSaveGState(context);
// Center the context around the window's anchor point
CGContextTranslateCTM(context, [window center].x, [window center].y);
// Apply the window's transform about the anchor point
CGContextConcatCTM(context, [window transform]);
// Offset by the portion of the bounds left of and above the anchor point
CGContextTranslateCTM(context,
-[window bounds].size.width * [[window layer] anchorPoint].x,
-[window bounds].size.height * [[window layer] anchorPoint].y);
// Render the layer hierarchy to the current context
[[window layer] renderInContext:context];
// Restore the context
CGContextRestoreGState(context);
}
}
// Retrieve the screenshot image
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
NSData *imageData = UIImageJPEGRepresentation(image, 100);
UIGraphicsEndImageContext();
return imageData;
}问题是,我没有看到状态栏。我只看到一个没有状态栏的白色区域。如何使用状态栏和其他控件(如选项卡栏、导航栏等)截取整个屏幕。
提前感谢!
发布于 2012-05-20 11:28:16
没有一个公共的方法可以让你截取整个屏幕的截图(也就是状态栏)。有一个通过UIGetScreenImage的private method,它允许你使用来实现这个功能。但是,由于它是一种私有方法,如果您将其提交到app Store,您的应用程序将被拒绝。
发布于 2012-05-20 09:40:45
你所使用的或多或少是苹果建议截图的official way。
问题是这种方法会在屏幕上截取应用程序输出的屏幕截图,而不是整个屏幕的截图。状态栏在自己的窗口中,无法在应用程序中使用。
您应该创建自己的状态栏作为图像,并将其添加到您的项目中,或者只是剪切不需要的屏幕截图部分。
然后,我建议在论坛上搜索可能与您的问题重复的内容,比如下面这个:Capturing full screenshot with status bar in iOS programmatically
https://stackoverflow.com/questions/10669222
复制相似问题