playground/js/sharp/tint.js

7 lines
194 B
JavaScript
Raw Normal View History

2022-09-13 13:35:42 +00:00
'use strict';
const sharp = require('sharp');
sharp('in/marmot.jpg').tint('#ff5500').toFile('out/coloured-marmot.jpg');
sharp('in/ducks.jpg').tint('#6666ff').toFile('out/coloured-ducks.jpg');