UIWebview делает снимок экрана только для файлов.doc

Попытка создать изображения большого пальца документов, которые были открыты в моем приложении с openurl,

Мое приложение может открывать и сохранять файлы.doc.xls и.pdf, но когда я пытаюсь сохранить скриншот, оно может корректно сохранить содержимое.doc, а для pdf и xls - только пустое белое изображение.

Вот несколько образцов документов, которые я тестирую:

.doc, .pdf, excel

Вот мой код:

-(void)webViewDidFinishLoad:(UIWebView *)webViewCapture
{
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
    NSLog(@"webViewDidFinishLoad");
    NSLog(@"webview %@",webView);
    NSLog(@"webViewCapture %@",webViewCapture);

    UIGraphicsBeginImageContext(webView.bounds.size);
    [webView.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    // Convert UIImage to JPEG
    NSData *imgData = UIImageJPEGRepresentation(viewImage, 1);
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *filePathLocal = [documentsDirectory stringByAppendingPathComponent:@"Inbox"];

    NSArray *partialDates =[self.imageFilename componentsSeparatedByString:@"."];//split string where - chars are found
    NSString* fileDescription= [partialDates objectAtIndex: 0];

    //creatre unique name for image _AKIAIVLFQKM11111
    NSString *uniqueFileName=[NSString stringWithFormat:@"%@_AKIAIVLFQKM11111_%@.jpeg",fileDescription,[partialDates objectAtIndex: 1]];

    NSString *finalFileName= [filePathLocal stringByAppendingPathComponent:uniqueFileName];

    NSError *error = nil;
    if ([imgData writeToFile:finalFileName options:NSDataWritingAtomic error:&error]) {
        // file saved
    } else {
        // error writing file
        NSLog(@"Unable to write PDF to %@. Error: %@", finalFileName, error);
    }

}

NSLog:

webViewDidFinishLoad
webview <UIWebView: 0xaa79070; frame = (0 44; 768 960); autoresize = W+H; layer = <CALayer: 0xaa51000>>
webViewCapture <UIWebView: 0xaa79070; frame = (0 44; 768 960); autoresize = W+H; layer = <CALayer: 0xaa51000>>

Почему я не могу сохранить реальный контент для других типов документов с кодом выше?

2 ответа

Возможно, это проблема метода, который вы используете, чтобы сделать снимок экрана, используйте тот, который обозначен яблоком:

- (UIImage*)screenshot 
{
    // 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();

    UIGraphicsEndImageContext();

    return image;
}

Для более подробной информации: Захват экрана в приложениях UIKit

Таким образом, я могу придумать два способа решения этой проблемы:

1.) Подкласс UIWebview и реализовать drawRect. в drawRect сохраните скриншот, так как у вас есть прямой доступ к graphicsContext. После того, как у вас есть скриншот, присвойте его пользовательскому свойству в веб-представлении. Тогда, когда вам это нужно, оно должно быть легко доступно.

2.) сделайте снимок экрана асинхронно и гарантируйте, что веб-просмотр будет существовать, или выполните надлежащую обработку ошибок в асинхронной задаче, чтобы обработать событие, когда веб-просмотр больше не существует.

Лично я предпочел бы № 2, так как он снимает с себя большую нагрузку на основной поток и все еще должен работать должным образом.

Другие вопросы по тегам