Skip to content

Instantly share code, notes, and snippets.

@ironbishop
Created April 12, 2021 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ironbishop/72d7bf79fb618f4820d60358014bbec9 to your computer and use it in GitHub Desktop.
Save ironbishop/72d7bf79fb618f4820d60358014bbec9 to your computer and use it in GitHub Desktop.
convert a black and white JPG to a TuxPaint starter
* 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
```
@ironbishop
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment