├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── combined └── alloyimage.js ├── demo ├── demo1.html ├── demo2.html ├── demo3.html ├── demo4.html ├── demo5.html └── index.html ├── doc └── AI规范.md ├── nsrc ├── alloyimage.base.js ├── alloyimage.config.js ├── alloyimage.define.js ├── alloyimage.fix.js ├── alloyimage.info.js ├── alloyimage.layer.js ├── alloyimage.process.js └── alloyimage.util.js ├── release ├── alloyimage-1.1.js └── alloyimage.1.2b.js ├── res └── img │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── Yuv3.jpg │ ├── y.jpg │ ├── yuv2.jpg │ └── yuv4.jpg ├── src ├── alloyimage.base.js ├── module │ ├── addLayer.js │ ├── alteration │ │ ├── brightness.js │ │ ├── curve.js │ │ ├── gamma.js │ │ ├── seletiveColor.js │ │ └── setHSI.js │ ├── applyMatrix.js │ ├── config.js │ ├── dorsyMath.js │ ├── dorsyWorker.js │ ├── easy.js │ ├── filter │ │ ├── ImageEnhance.js │ │ ├── corrode.js │ │ ├── darkCorner.js │ │ ├── dotted.js │ │ ├── embossment.js │ │ ├── gaussBlur.js │ │ ├── lapOfGauss.js │ │ ├── mosaic.js │ │ ├── noise.js │ │ ├── oilPainting.js │ │ ├── posterize.js │ │ ├── sepia.js │ │ ├── sharp.js │ │ ├── toGray.js │ │ ├── toReverse.js │ │ └── toThresh.js │ ├── fix.js │ └── tools.js └── other │ ├── LICENSE.md │ ├── binaryajax.js │ └── exif.js └── test ├── denoise.html ├── save.html ├── test.html ├── test2.html ├── testDefine.html ├── testRect.html ├── testSeletiveColor.html ├── testTools.html ├── testTransform.html ├── testView.html ├── testWidth.html └── testnew.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | --AUTHORS-- 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/README.md -------------------------------------------------------------------------------- /combined/alloyimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/combined/alloyimage.js -------------------------------------------------------------------------------- /demo/demo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/demo/demo1.html -------------------------------------------------------------------------------- /demo/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/demo/demo2.html -------------------------------------------------------------------------------- /demo/demo3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/demo/demo3.html -------------------------------------------------------------------------------- /demo/demo4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/demo/demo4.html -------------------------------------------------------------------------------- /demo/demo5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/demo/demo5.html -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/demo/index.html -------------------------------------------------------------------------------- /doc/AI规范.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/doc/AI规范.md -------------------------------------------------------------------------------- /nsrc/alloyimage.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/nsrc/alloyimage.base.js -------------------------------------------------------------------------------- /nsrc/alloyimage.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/nsrc/alloyimage.config.js -------------------------------------------------------------------------------- /nsrc/alloyimage.define.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/nsrc/alloyimage.define.js -------------------------------------------------------------------------------- /nsrc/alloyimage.fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/nsrc/alloyimage.fix.js -------------------------------------------------------------------------------- /nsrc/alloyimage.info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/nsrc/alloyimage.info.js -------------------------------------------------------------------------------- /nsrc/alloyimage.layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/nsrc/alloyimage.layer.js -------------------------------------------------------------------------------- /nsrc/alloyimage.process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/nsrc/alloyimage.process.js -------------------------------------------------------------------------------- /nsrc/alloyimage.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/nsrc/alloyimage.util.js -------------------------------------------------------------------------------- /release/alloyimage-1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/release/alloyimage-1.1.js -------------------------------------------------------------------------------- /release/alloyimage.1.2b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/release/alloyimage.1.2b.js -------------------------------------------------------------------------------- /res/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/1.jpg -------------------------------------------------------------------------------- /res/img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/10.jpg -------------------------------------------------------------------------------- /res/img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/11.jpg -------------------------------------------------------------------------------- /res/img/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/12.jpg -------------------------------------------------------------------------------- /res/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/2.jpg -------------------------------------------------------------------------------- /res/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/3.jpg -------------------------------------------------------------------------------- /res/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/4.jpg -------------------------------------------------------------------------------- /res/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/5.jpg -------------------------------------------------------------------------------- /res/img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/7.jpg -------------------------------------------------------------------------------- /res/img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/8.jpg -------------------------------------------------------------------------------- /res/img/Yuv3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/Yuv3.jpg -------------------------------------------------------------------------------- /res/img/y.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/y.jpg -------------------------------------------------------------------------------- /res/img/yuv2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/yuv2.jpg -------------------------------------------------------------------------------- /res/img/yuv4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/res/img/yuv4.jpg -------------------------------------------------------------------------------- /src/alloyimage.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/alloyimage.base.js -------------------------------------------------------------------------------- /src/module/addLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/addLayer.js -------------------------------------------------------------------------------- /src/module/alteration/brightness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/alteration/brightness.js -------------------------------------------------------------------------------- /src/module/alteration/curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/alteration/curve.js -------------------------------------------------------------------------------- /src/module/alteration/gamma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/alteration/gamma.js -------------------------------------------------------------------------------- /src/module/alteration/seletiveColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/alteration/seletiveColor.js -------------------------------------------------------------------------------- /src/module/alteration/setHSI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/alteration/setHSI.js -------------------------------------------------------------------------------- /src/module/applyMatrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/applyMatrix.js -------------------------------------------------------------------------------- /src/module/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/config.js -------------------------------------------------------------------------------- /src/module/dorsyMath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/dorsyMath.js -------------------------------------------------------------------------------- /src/module/dorsyWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/dorsyWorker.js -------------------------------------------------------------------------------- /src/module/easy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/easy.js -------------------------------------------------------------------------------- /src/module/filter/ImageEnhance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/ImageEnhance.js -------------------------------------------------------------------------------- /src/module/filter/corrode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/corrode.js -------------------------------------------------------------------------------- /src/module/filter/darkCorner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/darkCorner.js -------------------------------------------------------------------------------- /src/module/filter/dotted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/dotted.js -------------------------------------------------------------------------------- /src/module/filter/embossment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/embossment.js -------------------------------------------------------------------------------- /src/module/filter/gaussBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/gaussBlur.js -------------------------------------------------------------------------------- /src/module/filter/lapOfGauss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/lapOfGauss.js -------------------------------------------------------------------------------- /src/module/filter/mosaic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/mosaic.js -------------------------------------------------------------------------------- /src/module/filter/noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/noise.js -------------------------------------------------------------------------------- /src/module/filter/oilPainting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/oilPainting.js -------------------------------------------------------------------------------- /src/module/filter/posterize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/posterize.js -------------------------------------------------------------------------------- /src/module/filter/sepia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/sepia.js -------------------------------------------------------------------------------- /src/module/filter/sharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/sharp.js -------------------------------------------------------------------------------- /src/module/filter/toGray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/toGray.js -------------------------------------------------------------------------------- /src/module/filter/toReverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/toReverse.js -------------------------------------------------------------------------------- /src/module/filter/toThresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/filter/toThresh.js -------------------------------------------------------------------------------- /src/module/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/fix.js -------------------------------------------------------------------------------- /src/module/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/module/tools.js -------------------------------------------------------------------------------- /src/other/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/other/LICENSE.md -------------------------------------------------------------------------------- /src/other/binaryajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/other/binaryajax.js -------------------------------------------------------------------------------- /src/other/exif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/src/other/exif.js -------------------------------------------------------------------------------- /test/denoise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/denoise.html -------------------------------------------------------------------------------- /test/save.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/save.html -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/test2.html -------------------------------------------------------------------------------- /test/testDefine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/testDefine.html -------------------------------------------------------------------------------- /test/testRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/testRect.html -------------------------------------------------------------------------------- /test/testSeletiveColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/testSeletiveColor.html -------------------------------------------------------------------------------- /test/testTools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/testTools.html -------------------------------------------------------------------------------- /test/testTransform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/testTransform.html -------------------------------------------------------------------------------- /test/testView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/testView.html -------------------------------------------------------------------------------- /test/testWidth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/testWidth.html -------------------------------------------------------------------------------- /test/testnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyImage/HEAD/test/testnew.html --------------------------------------------------------------------------------