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
#!/bin/bash | |
# pass in the file name of the source as first parameter | |
mkdir -p generated | |
rm generated/* | |
# remove alpha with a simple trick | |
sips -s format bmp "$1" --out tmp.bmp | |
sips -s format png tmp.bmp --out "$1" |