Is it possible to "draw" the content of a div to a canvas... i have done the div manipulation with css, but need canvas to "save" the content to jpg with the .dataToURL function

so the question is... do you know a HTML, CSS, jQuery function that transfer the content of a div and draw it to a canvas

thanks in advance

link|improve this question

4  
Something like github.com/niklasvh/html2canvas ? – Niklas Oct 4 '11 at 20:25
silly me i google div2canvas !... will check it out – menardmam Oct 4 '11 at 20:30
The script is still in a very experimental state, so I don't recommend using it in a production environment nor start building applications with it yet, as there will be still major changes made. However, please do test it out and report your findings, especially if something should be working, but is displaying it incorrectly. – menardmam Oct 4 '11 at 20:34
Have you checked williammalone.com/articles/… – Emmanuel N Oct 4 '11 at 20:38
feedback

1 Answer

up vote 2 down vote accepted

<canvas> does not directly support placing HTML content on it, as combining this with <IFRAME> could potentially lead to lost of private information.

What you can do is that you dynamically create SVG image and then draw this on <canvas>. SVG has better support for rich-text formatting than <canvas>.

jQuery library for dynamic SVG creation:

http://keith-wood.name/svg.html

(See Text example)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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