1.0.2 • Published 3 years ago

developyn-autocrop v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

developyn-autocrop

Small library for auto-cropping unwanted space out of an image while retaining shadows for PNG and JPEGs.

NPM: https://www.npmjs.com/package/developyn-autocrop

Before

Before Autocrop

After

After Autocrop

Example

const { autocrop } = require('developyn-autocrop');

(async () => {
    await autocrop({
        input: './test1.png',
        output: './test1-autocropped.png',
        bgColor: {
            r: 255,
            g: 255,
            b: 255,
            a: 255
        }
    });
})();