Getting Started

Learn how to start using html2canvas

Installing

You can install html2canvas through npm or download a built release.

npm

npm install html2canvas
import html2canvas from 'html2canvas';

Usage

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);
});
Try html2canvas

Try out html2canvas

Test out html2canvas by rendering the viewport from the current page.

Capture