Tint An Image With The Node Sharp Module
Install sharp with:
npm i sharp
Then do something like:
const sharp =
Here's the one that I use to make random color show art for my podcast. It checks to make sure the file doesn't exist before making one with a random color. That way I can delete any I don't like and rerun the process to make new ones without messing with the existing ones I do like.
#!/usr/bin/env node
const sharp =
const fs =
~ fin ~