首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >截取窗口的屏幕快照

截取窗口的屏幕快照
EN

Stack Overflow用户
提问于 2012-05-20 06:15:44
回答 2查看 2K关注 0票数 1

我正在使用这种方法来截取我的应用程序的屏幕截图:

代码语言:javascript
复制
+ (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;
}

问题是,我没有看到状态栏。我只看到一个没有状态栏的白色区域。如何使用状态栏和其他控件(如选项卡栏、导航栏等)截取整个屏幕。

提前感谢!

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2012-05-20 11:28:16

没有一个公共的方法可以让你截取整个屏幕的截图(也就是状态栏)。有一个通过UIGetScreenImageprivate method,它允许你使用来实现这个功能。但是,由于它是一种私有方法,如果您将其提交到app Store,您的应用程序将被拒绝。

票数 0
EN

Stack Overflow用户

发布于 2012-05-20 09:40:45

你所使用的或多或少是苹果建议截图的official way

问题是这种方法会在屏幕上截取应用程序输出的屏幕截图,而不是整个屏幕的截图。状态栏在自己的窗口中,无法在应用程序中使用。

您应该创建自己的状态栏作为图像,并将其添加到您的项目中,或者只是剪切不需要的屏幕截图部分。

然后,我建议在论坛上搜索可能与您的问题重复的内容,比如下面这个:Capturing full screenshot with status bar in iOS programmatically

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/10669222

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档