1.0.6 • Published 7 years ago
peter-generator v1.0.6
Peter is a dead simple thumbnail generator for your node app, using sharp.
Installation
To install the latest version:
yarn add peter-generatorOr if you are using npm:
npm install --save peter-generatorLet’s Get Started!
Adding the library to your project is that easy!
import { ThumbnailGenerator } from 'peter-generator'
const gen = new ThumbnailGenerator()
gen.generate(imgBuffer)
    .then(resBuffer => {
        // Handle result
    })You can pass options to improve the quality/performance of the generation:
new ThumbnailGenerator({
   sizeLimit: '200kB',
})You can find more information here.