├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── imagediff ├── bower.json ├── browser └── canvas.js ├── examples ├── 1_normal_a.jpg ├── 1_normal_b.jpg ├── index.html └── styles.css ├── imagediff.js ├── imagediff.min.js ├── js ├── imagediff.js └── license.js ├── make └── build.json ├── package.json └── spec ├── ImageDiffSpec.js ├── images ├── checkmark.png ├── checkmark_bg.png └── xmark.png ├── jasmine.json ├── jasmine.yml ├── karma.config.js └── test.png /.gitignore: -------------------------------------------------------------------------------- 1 | .jhw-cache 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/README.md -------------------------------------------------------------------------------- /bin/imagediff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/bin/imagediff -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/bower.json -------------------------------------------------------------------------------- /browser/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/browser/canvas.js -------------------------------------------------------------------------------- /examples/1_normal_a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/examples/1_normal_a.jpg -------------------------------------------------------------------------------- /examples/1_normal_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/examples/1_normal_b.jpg -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/examples/styles.css -------------------------------------------------------------------------------- /imagediff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/imagediff.js -------------------------------------------------------------------------------- /imagediff.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/imagediff.min.js -------------------------------------------------------------------------------- /js/imagediff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/js/imagediff.js -------------------------------------------------------------------------------- /js/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/js/license.js -------------------------------------------------------------------------------- /make/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/make/build.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/package.json -------------------------------------------------------------------------------- /spec/ImageDiffSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/spec/ImageDiffSpec.js -------------------------------------------------------------------------------- /spec/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/spec/images/checkmark.png -------------------------------------------------------------------------------- /spec/images/checkmark_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/spec/images/checkmark_bg.png -------------------------------------------------------------------------------- /spec/images/xmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/spec/images/xmark.png -------------------------------------------------------------------------------- /spec/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/spec/jasmine.json -------------------------------------------------------------------------------- /spec/jasmine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/spec/jasmine.yml -------------------------------------------------------------------------------- /spec/karma.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/spec/karma.config.js -------------------------------------------------------------------------------- /spec/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/js-imagediff/HEAD/spec/test.png --------------------------------------------------------------------------------