2.0.0-0 • Published 7 years ago
smallest-png v2.0.0-0
smallest-png
A Buffer of the theoretically smallest PNG
const smallestPng = require('smallest-png');
//=> <Buffer 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 01 00 00 00 01 08 06 00 00 00 1f ...>
smallestJpeg.length; //=> 67Suitable for test fixtures.
const {width, height} = somePngParserFunction(smallestPng);
console.assert(width === 1);
console.assert(height === 1);Installation
npm install smallest-pngAPI
const smallestPng = require('smallest-png');smallestPng
Type: Buffer
Related
- smallest-jpeg — A JPEG version
License
MIT No Attribution © 2019 Shinnosuke Watanabe