How to generate thumbnail images of HTML pages

css, html, image, javascript

Solution

You might want to check out this url: http://html2canvas.hertzen.com/.

Using this script, you can convert the page into a canvas on the client side.

Then you can use that as your thumbnail.

Problem

I am trying to create thumbnail images for several HTML pages, so the user can have an idea of what the HTML looks like before they open the link. I have searched online but haven't found anything useful. Could anyone here provide some tips? Thanks so much! I specifically want this to happen on the server side so the client is not required to load the page

Original source

Related problems