vending-machine/mobile/node_modules/@jimp/plugin-fisheye
2026-04-03 06:07:13 +08:00
..
dist 1 2026-04-03 06:07:13 +08:00
es 1 2026-04-03 06:07:13 +08:00
src 1 2026-04-03 06:07:13 +08:00
test 1 2026-04-03 06:07:13 +08:00
babel.config.js 1 2026-04-03 06:07:13 +08:00
CHANGELOG.md 1 2026-04-03 06:07:13 +08:00
index.d.ts 1 2026-04-03 06:07:13 +08:00
LICENSE 1 2026-04-03 06:07:13 +08:00
package.json 1 2026-04-03 06:07:13 +08:00
README.md 1 2026-04-03 06:07:13 +08:00

@jimp/plugin-fishey

Apply a fisheye effect to an image

Usage

  • @param {function(Error, Jimp)} options (optional) radius
  • @param {function(Error, Jimp)} cb (optional) a callback for when complete
import jimp from 'jimp';

async function main() {
  const image = await jimp.read('test/image.png');

  image.fisheye();
  // or
  image.fisheye({ r: 1.6 });
}

main();

Produces nice images with @jimp/plugin-circle.