title | description | previousUrl | previousTitle | nextUrl | nextTitle |
---|---|---|---|---|---|
Getting Started |
Learn how to start using html2canvas |
/documentation |
About |
/configuration |
Configuration |
You can install html2canvas
through npm or download a built release.
npm install html2canvas
import html2canvas from 'html2canvas';
To render an element
with html2canvas with some (optional) options, simply call html2canvas(element, options);
html2canvas(document.body).then(function(canvas) {
document.body.appendChild(canvas);
});