4ndro1d
4ndro1d

Reputation: 2976

Generate image from div (JSF, Javascript)

I am looking for a tool, with which I can render a an div with all inner elements and save it as an image. There is no PHP running on the Server, only Java Server Faces and some Javascript Code. Is there any tool to do that with the given resources?

Upvotes: 0

Views: 5184

Answers (1)

Sano
Sano

Reputation: 108

Convert the html to canvas first and then get the image of the canvas from the bitmapdata and then save it in the server side

This can be achieved through html2canvas http://html2canvas.hertzen.com/

Upvotes: 2

Related Questions