• Stars
    star
    29,723
  • Rank 559 (Top 0.02 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created almost 13 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Screenshots with JavaScript

html2canvas

Homepage | Downloads | Questions

Gitter CI NPM Downloads NPM Version

JavaScript HTML renderer

The script allows you to take "screenshots" of webpages or parts of it, directly on the users browser. The screenshot is based on the DOM and as such may not be 100% accurate to the real representation as it does not make an actual screenshot, but builds the screenshot based on the information available on the page.

How does it work?

The script renders the current page as a canvas image, by reading the DOM and the different styles applied to the elements.

It does not require any rendering from the server, as the whole image is created on the client's browser. However, as it is heavily dependent on the browser, this library is not suitable to be used in nodejs. It doesn't magically circumvent any browser content policy restrictions either, so rendering cross-origin content will require a proxy to get the content to the same origin.

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.

Browser compatibility

The library should work fine on the following browsers (with Promise polyfill):

  • Firefox 3.5+
  • Google Chrome
  • Opera 12+
  • IE9+
  • Safari 6+

As each CSS property needs to be manually built to be supported, there are a number of properties that are not yet supported.

Usage

The html2canvas library utilizes Promises and expects them to be available in the global context. If you wish to support older browsers that do not natively support Promises, please include a polyfill such as es6-promise before including html2canvas.

To render an element with html2canvas, simply call: html2canvas(element[, options]);

The function returns a Promise containing the <canvas> element. Simply add a promise fulfillment handler to the promise using then:

html2canvas(document.body).then(function(canvas) {
    document.body.appendChild(canvas);
});

Building

You can download ready builds here.

Clone git repository:

$ git clone git://github.com/niklasvh/html2canvas.git

Install dependencies:

$ npm install

Build browser bundle

$ npm run build

Examples

For more information and examples, please visit the homepage or try the test console.

Contributing

If you wish to contribute to the project, please send the pull requests to the develop branch. Before submitting any changes, try and test that the changes work with all the support browsers. If some CSS property isn't supported or is incomplete, please create appropriate tests for it as well before submitting any code changes.

More Repositories

1

feedback.js

Feedback form with screenshot
JavaScript
866
star
2

php.js

PHP to JavaScript converter and VM written in JavaScript
PHP
855
star
3

base64-arraybuffer

Encode/decode base64 data into ArrayBuffers
TypeScript
346
star
4

WebGL-GTA

JavaScript implementation of GTA
JavaScript
256
star
5

html2canvas-proxy-nodejs

Express middleware proxy for html2canvas
JavaScript
117
star
6

css-line-break

A JavaScript library for Line Breaking and identifying Word Boundaries, implementing the Unicode Line Breaking Algorithm (UAX #14)
TypeScript
110
star
7

react-bacon-flux-poc

JavaScript
70
star
8

WebGL-CSS-Shaders

CSS Shaders through WebGL
JavaScript
53
star
9

jquery.plugin.clipboard

jQuery plugin to modify the contents copied to clipboard
JavaScript
36
star
10

click-heatmap

Click heatmaps with Google Analytics
JavaScript
35
star
11

html2canvas-proxy

Proxies for html2canvas
Python
32
star
12

experiments.hertzen.com

Random mini experiments
HTML
19
star
13

CSS3-Shapes

CSS3 shape editor
JavaScript
17
star
14

mongoose-validators

Validators for Mongoose schemas with validator.js
JavaScript
14
star
15

webdriver.js

jQuery styled WebDriver bindings for node.js
JavaScript
13
star
16

text-segmentation

A JavaScript library for Grapheme Breaking and identifying Grapheme Boundaries, implementing the Unicode Line Breaking Algorithm (UAX #29)
TypeScript
13
star
17

html5-parser

html5 parser for node.js and browsers
JavaScript
8
star
18

jquery.plugin.placeholder

Add placeholder functionality to non-HTML5 browsers
JavaScript
7
star
19

webidl.js

WebIDL parser for JavaScript
JavaScript
6
star
20

3d-dom

http://blog.hertzen.com/post/68191200228/rendering-webpages-in-3d-with-javascript-and-webgl
JavaScript
4
star
21

css-values

JavaScript
3
star
22

utrie

Unicode Trie
TypeScript
3
star
23

reactive-templates

JavaScript
2
star
24

node-tus

Node.js resumable upload middleware
JavaScript
2
star
25

hertzen.com

CSS
1
star