Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to capture image from UIWebView using this method but the image contains only visible area of the screen. How do I capture full content of UIWebView including invisible areas, i.e. the entire web page into one single image?

-(UIImage*)captureScreen:(UIView*) viewToCapture{
  UIGraphicsBeginImageContext(viewToCapture.bounds.size);
  [viewToCapture.layer renderInContext:UIGraphicsGetCurrentContext()];
  UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
  UIGraphicsEndImageContext();
  return viewImage;
}
share|improve this question

3 Answers

up vote 1 down vote accepted

You are currently capturing only the visible part because you are limiting the image context to what's visible. You should limit it to what's available.

UIView has a scrollView property that has contentSize, telling you what is the size of the web view inside the scroll view. You can use that size to set your image context like this:

-(UIImage*)captureScreen:(UIView*) viewToCapture{
    CGSize overallSize = overallSize;
    UIGraphicsBeginImageContext(viewToCapture.scrollView.contentSize);
    // Save the current bounds
    CGRect tmp = viewToCapture.bounds;
    viewToCapture.bounds = CGRectMake(0, 0, overallSize.width, overallSize.height);
    // Wait for the view to finish loading.
    // This is not very nice, but it should work. A better approach would be
    // to use a delegate, and run the capturing on the did finish load event.
    while (viewToCapture.loading) {
         [NSThread sleepForTimeInterval:0.1];
    }
    [viewToCapture.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    // Restore the bounds
    viewToCapture.bounds = tmp;
    return viewImage;
}

EDIT (from a comment by Vad)

Solution was to call

webView.scalesPageToFit = YES;

in the initialization, and

[webView sizeToFit]

when the page did finish loading.

share|improve this answer
this partially solved the problem. the resulting image has a correct size but invisible area is all white. – Vad Aug 20 '12 at 15:42
@Vad I think the problem has to do with the viewToCapture.layer then. See if setting the bounds temporarily would fix the issue (see the update). – dasblinkenlight Aug 20 '12 at 16:02
I think the problem is that web view does not display all content until you scroll there. – Vad Aug 20 '12 at 16:26
@Vad You are right, the web view is probably still loading the additional stuff when you call renderInContext:. Could you add NSLog(@"%d", viewToCapture.loading) and see if it prints 1 or 0? – dasblinkenlight Aug 20 '12 at 16:31
I run a snapshot code when the page is fully done loading. I suspect UIWebView hidden content is not displayed for memory saving reasons until you scroll to those hidden areas. I'll confirm soon. – Vad Aug 20 '12 at 16:41
show 3 more comments

Do this

UIGraphicsBeginImageContext([yourwebview sizeThatFits:[[UIScreen mainScreen] bounds].size]);
CGContextRef resizedContext = UIGraphicsGetCurrentContext();
[yourwebview .layer renderInContext:resizedContext];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
share|improve this answer
This results in visible content being stretched on the image and invisible content is still all white/blank. – Vad Aug 20 '12 at 16:04
    -(UIImage*)captureScreen:(UIView*) viewToCapture
    {

     CGSize fittingSize = [self.webView sizeThatFits:CGSizeZero];

This should give you the height and width of the content in your webview. Then try doing this

      UIGraphicsBeginImageContext(fittingSize);
      [viewToCapture.layer renderInContext:UIGraphicsGetCurrentContext()];
      UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
      UIGraphicsEndImageContext();
      return viewImage;
    }
share|improve this answer
This solution still makes resulting image blank on spots where hidden webpage content is. – Vad Aug 20 '12 at 16:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.