├── .gitattributes ├── .github └── workflows │ └── node.yml ├── .gitignore ├── LICENSE ├── README.md ├── bench.js ├── bin └── pixelmatch ├── eslint.config.js ├── index.js ├── package.json ├── test ├── fixtures │ ├── 1a.png │ ├── 1b.png │ ├── 1diff.png │ ├── 1diffdefaultthreshold.png │ ├── 1diffmask.png │ ├── 1emptydiffmask.png │ ├── 2a.png │ ├── 2b.png │ ├── 2diff.png │ ├── 3a.png │ ├── 3b.png │ ├── 3diff.png │ ├── 4a.png │ ├── 4b.png │ ├── 4diff.png │ ├── 5a.png │ ├── 5b.png │ ├── 5diff.png │ ├── 6a.png │ ├── 6b.png │ ├── 6diff.png │ ├── 6empty.png │ ├── 7a.png │ ├── 7b.png │ ├── 7diff.png │ ├── 8a.png │ └── 8diff.png └── test.js └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | .DS_Store 4 | .nyc_output 5 | coverage 6 | tmp 7 | index.d.ts 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/README.md -------------------------------------------------------------------------------- /bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/bench.js -------------------------------------------------------------------------------- /bin/pixelmatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/bin/pixelmatch -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/1a.png -------------------------------------------------------------------------------- /test/fixtures/1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/1b.png -------------------------------------------------------------------------------- /test/fixtures/1diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/1diff.png -------------------------------------------------------------------------------- /test/fixtures/1diffdefaultthreshold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/1diffdefaultthreshold.png -------------------------------------------------------------------------------- /test/fixtures/1diffmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/1diffmask.png -------------------------------------------------------------------------------- /test/fixtures/1emptydiffmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/1emptydiffmask.png -------------------------------------------------------------------------------- /test/fixtures/2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/2a.png -------------------------------------------------------------------------------- /test/fixtures/2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/2b.png -------------------------------------------------------------------------------- /test/fixtures/2diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/2diff.png -------------------------------------------------------------------------------- /test/fixtures/3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/3a.png -------------------------------------------------------------------------------- /test/fixtures/3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/3b.png -------------------------------------------------------------------------------- /test/fixtures/3diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/3diff.png -------------------------------------------------------------------------------- /test/fixtures/4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/4a.png -------------------------------------------------------------------------------- /test/fixtures/4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/4b.png -------------------------------------------------------------------------------- /test/fixtures/4diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/4diff.png -------------------------------------------------------------------------------- /test/fixtures/5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/5a.png -------------------------------------------------------------------------------- /test/fixtures/5b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/5b.png -------------------------------------------------------------------------------- /test/fixtures/5diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/5diff.png -------------------------------------------------------------------------------- /test/fixtures/6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/6a.png -------------------------------------------------------------------------------- /test/fixtures/6b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/6b.png -------------------------------------------------------------------------------- /test/fixtures/6diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/6diff.png -------------------------------------------------------------------------------- /test/fixtures/6empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/6empty.png -------------------------------------------------------------------------------- /test/fixtures/7a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/7a.png -------------------------------------------------------------------------------- /test/fixtures/7b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/7b.png -------------------------------------------------------------------------------- /test/fixtures/7diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/7diff.png -------------------------------------------------------------------------------- /test/fixtures/8a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/8a.png -------------------------------------------------------------------------------- /test/fixtures/8diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/fixtures/8diff.png -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/pixelmatch/HEAD/tsconfig.json --------------------------------------------------------------------------------