├── .eslintrc.yml ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── image-blob-reduce.esm.mjs ├── image-blob-reduce.js └── image-blob-reduce.min.js ├── index.js ├── lib ├── image_traverse.js ├── jpeg_plugins.js └── utils.js ├── package.json ├── support ├── build_demo.js ├── demo_template │ ├── index.html │ ├── index.js │ └── rollup.config.js └── rollup.config.js └── test ├── .eslintrc.yml ├── browser.js ├── common.js └── test.jpg /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | demo/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/README.md -------------------------------------------------------------------------------- /dist/image-blob-reduce.esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/dist/image-blob-reduce.esm.mjs -------------------------------------------------------------------------------- /dist/image-blob-reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/dist/image-blob-reduce.js -------------------------------------------------------------------------------- /dist/image-blob-reduce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/dist/image-blob-reduce.min.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/index.js -------------------------------------------------------------------------------- /lib/image_traverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/lib/image_traverse.js -------------------------------------------------------------------------------- /lib/jpeg_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/lib/jpeg_plugins.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/package.json -------------------------------------------------------------------------------- /support/build_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/support/build_demo.js -------------------------------------------------------------------------------- /support/demo_template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/support/demo_template/index.html -------------------------------------------------------------------------------- /support/demo_template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/support/demo_template/index.js -------------------------------------------------------------------------------- /support/demo_template/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/support/demo_template/rollup.config.js -------------------------------------------------------------------------------- /support/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/support/rollup.config.js -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/test/.eslintrc.yml -------------------------------------------------------------------------------- /test/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/test/browser.js -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/test/common.js -------------------------------------------------------------------------------- /test/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodeca/image-blob-reduce/HEAD/test/test.jpg --------------------------------------------------------------------------------