+ 2
Output table yo and image file. Html Js
Hello. What is the best way to export a table in html to an image file using Javascript? Thanks in advance.
3 odpowiedzi
+ 6
seems that html2canvas can do something like this
http://html2canvas.hertzen.com
seems it can create an image from any element in the page (or the entire page) and the render it on a canvas
once the image is taken into the canvas you simply need to save it
this might help (last lines inside the script tag):
http://www.html5canvastutorials.com/advanced/html5-canvas-save-drawing-as-an-image/
also check here:
https://stackoverflow.com/questions/31656689/how-to-save-img-to-users-local-computer-using-html2canvas
Canvas2Image might be a good solution together with html2canvas:
https://stackoverflow.com/questions/31652698/how-to-save-html2canvas-image-to-my-project-images-folder
also:
https://stackoverflow.com/questions/37331494/save-html-as-image-using-html2canvas
+ 1
From @Burey 's idea...
https://code.sololearn.com/WufTWkkaEtbb/?ref=app
0
As always, thank you very much Burey!