Created
April 12, 2021 17:05
-
-
Save ironbishop/72d7bf79fb618f4820d60358014bbec9 to your computer and use it in GitHub Desktop.
convert a black and white JPG to a TuxPaint starter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* download file | |
* create transparent layer | |
```bash | |
for f in Super-Mario-Bros_30.jpg Super-Mario-Bros_37.jpg ; do | |
echo "***** $f *********** " | |
convert "$f" -fuzz 20% -transparent white "nuove/${f%.jpg}.png" | |
#sleep 1 | |
done | |
``` |
Author
ironbishop
commented
Apr 12, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment