├── .gitignore ├── .jshintrc ├── LICENSE.md ├── PNG.js ├── PNGReader.js ├── README.md ├── html ├── f.png ├── index.html ├── js.png ├── ubuntu-grey.png ├── ubuntu-screenshot.png └── ubuntu.png ├── package.json └── test ├── canvas.js └── perf.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PNG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/PNG.js -------------------------------------------------------------------------------- /PNGReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/PNGReader.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/README.md -------------------------------------------------------------------------------- /html/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/html/f.png -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/html/index.html -------------------------------------------------------------------------------- /html/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/html/js.png -------------------------------------------------------------------------------- /html/ubuntu-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/html/ubuntu-grey.png -------------------------------------------------------------------------------- /html/ubuntu-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/html/ubuntu-screenshot.png -------------------------------------------------------------------------------- /html/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/html/ubuntu.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/package.json -------------------------------------------------------------------------------- /test/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/test/canvas.js -------------------------------------------------------------------------------- /test/perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arian/pngjs/HEAD/test/perf.js --------------------------------------------------------------------------------