I'm working on web application that need to render page and make a screenshot on client (browser) side. I don't need screenshot to be saved on local HDD though, just kept in RAM and send to application server later.

I researched:
1. BrowserShots alike services...
2. Mechanized browsers...
3. wkhtmltoimage...
4. Python WebKit2PNG...

But nothing of those gives me all I need, witch is:
1. Processing at browser side (generate screenshot of page). Don't need to be saved on HDD! Just...
2. ...send image to Server for further processing.
3. Capturing whole page (not only visible part)

Eventually I came onto Google Feedback Tool (click "feedback" on YouTube footer to see this). It contains JavaScript for JPG encoding and two other huge scripts that I can't solve what do they do... But it's processed on Client side - otherwise there would be no point putting this huge JPEG encoder in the code!

Anyone got any idea how did they made it / how can I make it?

Here is an example of the feedback (report a bug on some screens)

Feedback/report bug example

link|improve this question
I can't see a Feedback option on the YouTube footer. – Quentin Apr 11 '11 at 13:28
@David I added one for you - pretty cool stuff – mplungjan Apr 11 '11 at 13:46
2  
This SO question may help stackoverflow.com/questions/60455/… – Jim Blackler Apr 11 '11 at 13:48
My bad, it should be "Report a bug" in english, and it should be first link on the left on the very bottom line of YouTube page. I will edit the question too. – Paweł Szymański Apr 11 '11 at 13:55
feedback

5 Answers

This question answers you problem:

You can use javascript/canvas to do the job but it is still experimental.

Using HTML5/Canvas/Javascript to take screenshots

link|improve this answer
Thanks, but that's, quote: "may not be 100% accurate to the real representation as it does not make an actual screenshot". Not for me :(. – Paweł Szymański Aug 4 '11 at 5:16
then I believe flash is for you coldfusion.se/devnet/air/flex/articles/air_screenrecording.html but I am doubtful if it will allow this effortlessly on a webpage as such a screen grab could be used for malicious actions and privacy invasion – Vaibhav Garg Aug 5 '11 at 4:22
@Pawel Szymański Google Feedback isn't 100% accurate either. Try adding some list items (with default icons), try text underlines on different browsers (for example FF compared to Chrome) with a high font-size (for better visibility), or just a bunch of different more rare CSS3 properties. You'll find out that it is far from 100% either and unless you want to do it natively with just Javascript, it currently is the only option to go with. – Niklas Aug 26 '11 at 14:46
feedback

SnapEngage provides this service using a Java applet. You can use their product http://www.snapengage.com or re-create their functionality using the information from http://www.barklund.org/blog/2009/10/14/how-snapabug-works/ . You can also read about it at Javascript to take a screenshot of a website without using ActiveX .

link|improve this answer
Thanks, but I seen like a dozen of services like SnapEngage. I cant's use it. I need it to: - be browser compatibile - do NOT install any applets or ask for any permission - use JS only - it has to be written by me/open source – Paweł Szymański Aug 4 '11 at 5:12
feedback

You can also use a third-party service to render your page and use the API to get back the image: take a look at http://www.shrinktheweb.com/uploads/STW_API_Documentation.pdf

link|improve this answer
It's not the case. I need to capture screen on client side (and get that view of rendering). – Paweł Szymański Aug 4 '11 at 5:13
feedback

Although this option is not free-beer nor free-libre, it is a very nifty javascript only option that mimics the Google Feedback almost to the millimeter : http://bugmuncher.com/

It is 10$/month though.

link|improve this answer
feedback

This is a wild guess, but I think the Google Web Toolkit have functions for that, seeing how Google is doing much of their app using GWT and their App Engine.

link|improve this answer
What is your source that "Google is doing much of their apps using GWT and their App Engine?" Doing a quick search didn't lead me to believe that at all. Matter of fact, I found that Google has virtually avoided using GWT for most of their application, and only a select few (namely Google Base and Google Checkout). – ckittel Aug 1 '11 at 23:53
1  
Looking at the Google Web Toolkit documentation online, I found no references to screenshot-like abilities. – ckittel Aug 1 '11 at 23:56
Any reference for this so called functionality? – Ben Rowe Aug 2 '11 at 10:06
Also checked refference - no sign of screen capturing. – Paweł Szymański Aug 4 '11 at 5:17
feedback

protected by Community Jan 26 at 12:52

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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