Last active
January 13, 2025 13:32
-
-
Save grahampugh/cae52a9ebdca6947a002e1df5ee62bba to your computer and use it in GitHub Desktop.
Create iconset from a PNG
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/zsh | |
## Makes an icon set from a PNG. A 512x512 or 1024X1024 PNG is best. | |
## Taken from http://stackoverflow.com/a/31150333 | |
## Usage: ./make_icns.zsh </path/to/image.png> | |
NAME=$(basename $1 .png); DIR="$NAME.iconset" | |
mkdir -pv $DIR | |
for m r in 'n' '' '((n+1))' '@2x'; do | |
for n in $(seq 4 9 | grep -v 6); do | |
p=$((2**$m)); q=$((2**$n)) | |
OUT="$DIR/icon_${q}x${q}${r}.png" | |
sips -z $p $p $1 --out $OUT | |
done | |
done | |
iconutil -c icns $DIR | |
rm -frv $DIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment