├── .gitignore ├── .travis.yml ├── README.md ├── bin ├── ipld-image-fromblob └── ipld-image-toblob ├── index.js ├── package.json ├── src ├── fromblob.coffee ├── image.coffee └── toblob.coffee └── tests ├── data ├── 256x256-yellow.png ├── 256x265-random1.png ├── 256x265-random10.png ├── 256x265-random5.png ├── 2x3-rgbwhbl.png └── noflo-ingresstable.png └── image.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/README.md -------------------------------------------------------------------------------- /bin/ipld-image-fromblob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/bin/ipld-image-fromblob -------------------------------------------------------------------------------- /bin/ipld-image-toblob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/bin/ipld-image-toblob -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/package.json -------------------------------------------------------------------------------- /src/fromblob.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/src/fromblob.coffee -------------------------------------------------------------------------------- /src/image.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/src/image.coffee -------------------------------------------------------------------------------- /src/toblob.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/src/toblob.coffee -------------------------------------------------------------------------------- /tests/data/256x256-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/tests/data/256x256-yellow.png -------------------------------------------------------------------------------- /tests/data/256x265-random1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/tests/data/256x265-random1.png -------------------------------------------------------------------------------- /tests/data/256x265-random10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/tests/data/256x265-random10.png -------------------------------------------------------------------------------- /tests/data/256x265-random5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/tests/data/256x265-random5.png -------------------------------------------------------------------------------- /tests/data/2x3-rgbwhbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/tests/data/2x3-rgbwhbl.png -------------------------------------------------------------------------------- /tests/data/noflo-ingresstable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/tests/data/noflo-ingresstable.png -------------------------------------------------------------------------------- /tests/image.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnor/ipld-image/HEAD/tests/image.coffee --------------------------------------------------------------------------------