html2canvas/readme.md

125 lines
6.8 KiB
Markdown
Raw Normal View History

2011-07-16 05:20:55 +04:00
html2canvas
===========
2013-05-29 21:12:37 +04:00
### Current build status ###
[![Build Status](https://travis-ci.org/niklasvh/html2canvas.png)](https://travis-ci.org/niklasvh/html2canvas)
2011-07-16 05:20:55 +04:00
#### JavaScript HTML renderer ####
2011-07-16 05:20:55 +04:00
This 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?###
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
2012-12-29 17:31:24 +04:00
It does <b>not require any rendering from the server</b>, as the whole image is created on the <b>clients browser</b>. However, as it is heavily dependent on the browser, this library is *not suitable* to be used on for example on node.js.
It doesn't magically circumvent and browser content policy restrictions either, so rendering cross origin content will require a <a href="https://github.com/niklasvh/html2canvas/wiki/Proxies">proxy</a> to get the content to the <a href="http://en.wikipedia.org/wiki/Same_origin_policy">same origin</a>.
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 ###
To render an `element` with html2canvas, simply call:
` html2canvas( [ element ], options);`
To access the created canvas, provide the `onrendered` event in the options which returns the canvas element as the first argument, as such:
html2canvas( [ document.body ], {
2013-01-12 03:34:00 +04:00
onrendered: function(canvas) {
/* canvas is the actual canvas element,
to append it to the page call for example
2012-06-26 02:48:41 +04:00
document.body.appendChild( canvas );
*/
}
2012-07-10 23:42:16 +04:00
});
2012-12-29 17:31:24 +04:00
### Building ###
2013-05-22 00:23:56 +04:00
The library uses <a href="http://gruntjs.com/">grunt</a> for building. Alternatively, you can download the latest build from <a href="http://html2canvas.hertzen.com/build/html2canvas.js">here</a>.
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 ###
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 <a href="http://phantomjs.org/">phantomjs</a>.
2012-12-29 18:34:56 +04:00
The other set of tests run Firefox, Chrome and Internet Explorer with <a href="https://github.com/niklasvh/webdriver.js">webdriver</a>. The selenium standalone server (runs on Java) is required for these tests and can be downloaded from <a href="http://code.google.com/p/selenium/downloads/list">here</a>. 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.
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
Run webdriver tests:
2012-12-29 18:34:56 +04:00
$ java -jar /path/to/selenium-server-standalone-2.xx.x.jar
2012-12-29 17:31:24 +04:00
$ grunt webdriver
Commiting improvements in baseline values:
$ grunt webdriver:baseline
2012-06-26 02:48:41 +04:00
2011-07-16 05:23:36 +04:00
### Examples ###
2012-02-20 19:25:57 +04:00
For more information and examples, please visit the <a href="http://html2canvas.hertzen.com">homepage</a> or try the <a href="http://html2canvas.hertzen.com/screenshots.html">test console</a>.
2013-01-12 03:34:00 +04:00
### Contributing ###
If you wish to contribute to the project, please send the pull requests to the develop branch. Before making any changes, make sure to run the webdriver tests to create the baseline results. If some CSS property isn't supported or is incomplete, please create appropriate tests for it as well before submitting any code changes.
2012-02-20 19:25:57 +04:00
### Changelog ###
2012-12-29 17:31:24 +04:00
v0.40 -
2013-01-11 21:39:35 +04:00
* Added rendering tests with <a href="https://github.com/niklasvh/webdriver.js">webdriver</a>
2012-12-29 17:31:24 +04:00
* Switched to using grunt for building
2013-01-11 21:39:35 +04:00
* Removed support for IE<9, including any FlashCanvas bits
* Support for border-radius
* Support for multiple background images, size, and clipping
* Support for :before and :after pseudo elements
* Support for placeholder rendering
2012-12-29 17:31:24 +04:00
* Reformatted all tests to small units to test specific features
2012-06-26 02:35:11 +04:00
v0.34 - 26.6.2012
2012-03-02 22:35:48 +04:00
2012-06-26 02:48:41 +04:00
* Removed (last?) jQuery dependencies (<a href="https://github.com/niklasvh/html2canvas/commit/343b86705fe163766fcf735eb0217130e4bd5b17">niklasvh</a>)
2012-06-26 02:55:46 +04:00
* SVG-powered rendering (<a href="https://github.com/niklasvh/html2canvas/commit/67d3e0d0f59a5a654caf71a2e3be6494ff146c75">niklasvh</a>)
2012-06-26 02:35:11 +04:00
* Radial gradients (<a href="https://github.com/niklasvh/html2canvas/commit/4f22c18043a73c0c3bbf3b5e4d62714c56acd3c7">SunboX</a>)
2012-03-03 02:52:46 +04:00
* Split renderers to their own objects (<a href="https://github.com/niklasvh/html2canvas/commit/94f2f799a457cd29a21cc56ef8c06f1697866739">niklasvh</a>)
2012-03-02 22:35:48 +04:00
* Simplified API, cleaned up code (<a href="https://github.com/niklasvh/html2canvas/commit/c7d526c9eaa6a4abf4754d205fe1dee360c7660e">niklasvh</a>)
2012-03-02 20:05:03 +04:00
v0.33 - 2.3.2012
2012-03-01 21:51:07 +04:00
* SVG taint fix, and additional taint testing options for rendering (<a href="https://github.com/niklasvh/html2canvas/commit/2dc8b9385e656696cb019d615bdfa1d98b17d5d4">niklasvh</a>)
2012-03-01 21:51:07 +04:00
* Added support for CORS images and option to create canvas as tainted (<a href="https://github.com/niklasvh/html2canvas/commit/3ad49efa0032cde25c6ed32a39e35d1505d3b2ef">niklasvh</a>)
2012-02-27 02:14:10 +04:00
* Improved minification saved ~1K! (<a href="https://github.com/cobexer/html2canvas/commit/b82be022b2b9240bd503e078ac980bde2b953e43">cobexer</a>)
2012-02-27 23:24:19 +04:00
* Added integrated support for Flashcanvas (<a href="https://github.com/niklasvh/html2canvas/commit/e9257191519f67d74fd5e364d8dee3c0963ba5fc">niklasvh</a>)
* Fixed a variety of legacy IE bugs (<a href="https://github.com/niklasvh/html2canvas/commit/b65357c55d0701017bafcd357bc654b54d458f8f">niklasvh</a>)
2012-02-27 02:14:10 +04:00
2012-02-20 19:25:57 +04:00
v0.32 - 20.2.2012
2012-02-20 19:26:21 +04:00
2012-02-20 19:25:57 +04:00
* Added changelog!
* Added bookmarklet (<a href="https://github.com/niklasvh/html2canvas/commit/b320dd306e1a2d32a3bc5a71b6ebf6d8c060cde5">cobexer</a>)
* Option to select single element to render (<a href="https://github.com/niklasvh/html2canvas/commit/0cb252ada91c84ef411288b317c03e97da1f12ad">niklasvh</a>)
* Fixed closure compiler warnings (<a href="https://github.com/niklasvh/html2canvas/commit/36ff1ec7aadcbdf66851a0b77f0b9e87e4a8e4a1">cobexer</a>)
2012-02-27 02:14:10 +04:00
* Enable profiling in FF (<a href="https://github.com/niklasvh/html2canvas/commit/bbd75286a8406cf9e5aea01fdb7950d547edefb9">cobexer</a>)