html2canvas/readme.md

87 lines
4.6 KiB
Markdown
Raw Normal View History

2011-07-16 05:20:55 +04:00
html2canvas
===========
2013-09-07 23:07:27 +04:00
[Homepage](http://html2canvas.hertzen.com) | [Downloads](https://github.com/niklasvh/html2canvas/releases) | [Questions](http://stackoverflow.com/questions/tagged/html2canvas?sort=newest) | [Donate](https://www.gittip.com/niklasvh/)
2015-01-14 00:13:00 +03:00
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/niklasvh/html2canvas?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Build Status](https://travis-ci.org/niklasvh/html2canvas.png)](https://travis-ci.org/niklasvh/html2canvas)
2013-05-29 21:12:37 +04:00
2011-07-16 05:20:55 +04:00
#### JavaScript HTML renderer ####
2013-08-04 16:51:16 +04:00
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.
2011-07-16 05:20:55 +04:00
###How does it work?###
2012-12-29 17:31:24 +04:00
The script renders the current page as a canvas image, by reading the DOM and the different styles applied to the elements.
2011-07-16 05:20:55 +04:00
2013-08-04 17:41:41 +04:00
It does **not require any rendering from the server**, as the whole image is created on the **clients 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](https://github.com/niklasvh/html2canvas/wiki/Proxies) to get the content to the [same origin](http://en.wikipedia.org/wiki/Same_origin_policy).
2011-07-16 05:20:55 +04:00
2012-12-29 17:31:24 +04:00
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.
2011-07-16 05:20:55 +04:00
###Browser compatibility###
The script should work fine on the following browsers:
2011-07-17 15:26:45 +04:00
2011-07-17 01:17:41 +04:00
* Firefox 3.5+
* Google Chrome
2012-12-29 17:31:24 +04:00
* Opera 12+
* IE9+
2013-05-29 23:28:32 +04:00
* Safari 6+
2013-01-12 03:34:00 +04:00
As each CSS property needs to be manually built to be supported, there are a number of properties that are not yet supported.
2011-07-16 05:23:36 +04:00
2012-06-26 02:48:41 +04:00
### Usage ###
2014-08-25 19:23:18 +04:00
**Note!** These instructions are for using the current dev version of 0.5, for the latest release version (0.4.1), checkout the [old readme](https://github.com/niklasvh/html2canvas/blob/v0.4/readme.md).
2012-06-26 02:48:41 +04:00
To render an `element` with html2canvas, simply call:
2014-02-03 21:42:42 +04:00
` html2canvas(element[, options]);`
2012-06-26 02:48:41 +04:00
2014-02-03 21:42:42 +04:00
The function returns a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) containing the `<canvas>` element. Simply add a promise fullfillment handler to the promise using `then`:
2012-06-26 02:48:41 +04:00
2014-02-03 21:42:42 +04:00
html2canvas(document.body).then(function(canvas) {
document.body.appendChild(canvas);
2012-07-10 23:42:16 +04:00
});
2012-12-29 17:31:24 +04:00
### Building ###
The library uses [grunt](http://gruntjs.com/) for building. Alternatively, you can download the latest build from [here](https://github.com/niklasvh/html2canvas/blob/master/dist/html2canvas.js).
Clone git repository with submodules:
$ git clone --recursive git://github.com/niklasvh/html2canvas.git
2012-12-29 17:31:24 +04:00
Install Grunt and uglifyjs:
$ npm install -g grunt-cli uglify-js
2012-12-29 17:31:24 +04:00
Run the full build process (including lint, qunit and webdriver tests):
$ grunt
2012-12-29 18:02:46 +04:00
Skip lint and tests and simply build from source:
2012-12-29 17:31:24 +04:00
$ grunt build
2012-12-29 17:31:24 +04:00
### Running tests ###
2013-08-04 17:41:41 +04:00
The library has two sets of tests. The first set is a number of qunit tests that check that different values parsed by browsers are correctly converted in html2canvas. To run these tests with grunt you'll need [phantomjs](http://phantomjs.org/).
2012-12-29 17:31:24 +04:00
2013-08-04 17:41:41 +04:00
The other set of tests run Firefox, Chrome and Internet Explorer with [webdriver](https://github.com/niklasvh/webdriver.js). The selenium standalone server (runs on Java) is required for these tests and can be downloaded from [here](http://code.google.com/p/selenium/downloads/list). They capture an actual screenshot from the test pages and compare the image to the screenshot created by html2canvas and calculate the percentage differences. These tests generally aren't expected to provide 100% matches, but while commiting changes, these should generally not go decrease from the baseline values.
2012-12-29 18:34:56 +04:00
2013-01-12 03:41:09 +04:00
Start by downloading the dependencies:
2012-12-29 18:34:56 +04:00
2013-01-11 21:39:35 +04:00
$ npm install
2012-12-29 17:31:24 +04:00
Run qunit tests:
$ grunt test
2011-07-16 05:23:36 +04:00
### Examples ###
2013-08-04 17:41:41 +04:00
For more information and examples, please visit the [homepage](http://html2canvas.hertzen.com) or try the [test console](http://html2canvas.hertzen.com/screenshots.html).
2012-02-20 19:25:57 +04:00
2013-01-12 03:34:00 +04:00
### Contributing ###
2013-08-04 16:51:16 +04:00
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.