playground/js/sharp/clahe.js
2022-09-13 15:35:42 +02:00

12 lines
243 B
JavaScript

'use strict';
const sharp = require('sharp');
sharp('in/marmot.jpg')
.clahe({ width: 1000, height: 1000 })
.toFile('out/clahe-marmot.jpg');
sharp('in/ducks.jpg')
.clahe({ width: 1000, height: 1000 })
.toFile('out/clahe-ducks.jpg');