jimp-plugin-newsprint
v1.0.5
Published
a jimp plugin for newsprint effect
Maintainers
Readme
jimp-plugin-newsprint
install
npm i jimp-plugin-newsprintusage
import Jimp from 'jimp';
import configure from '@jimp/custom';
import newsprint from "jimp-plugin-newsprint";
configure({ plugins: [newsprint] }, Jimp);
const img = await Jimp.read('some picture')
img.newsprint()params
newsprint(cellType, cellWidth, angle)
// cellType string "line"(default) | "round" | "diamond"
// cellWidth number 50(default)
// angle number rotation angle in degree -45(default)