1.0.0 • Published 4 years ago

jimp-roundedcorners v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

jimp-roundedcorners

Rounds the corners of a Jimp image.

Install

npm i jimp-roundedcorners

Usage

import Jimp from 'jimp'
import { roundCorners } from 'jimp-roundcorners'

Jimp.read('inImgPath')
.then(img => {
    roundCorners(img, {
        cornerRadius: {
            topLeft: 25,
            topRight: 25,
            // bottomRight: 25,
            bottomLeft: 25,
// If any of the above is not provided, 'global' will be used instead
// In this case 'bottomRight'.
// If global is not prvided, the default value is
// Math.min(img.bitmap.width, img.bitmap.height) / 10
            global: 50
        }
    }).write('outImgPath')
})
.catch(err => console.log(err))
1.0.0

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago