-
Notifications
You must be signed in to change notification settings - Fork 21
/
generate-icns-from-svg.sh
18 lines (16 loc) · 1.4 KB
/
generate-icns-from-svg.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
mkdir icon.iconset
convert -background none -size 16x16 -gravity center -extent 16x16 icon.svg icon.iconset/icon_16x16.png
convert -background none -size 32x32 -gravity center -extent 32x32 icon.svg icon.iconset/[email protected]
convert -background none -size 32x32 -gravity center -extent 32x32 icon.svg icon.iconset/icon_32x32.png
convert -background none -size 64x64 -gravity center -extent 64x64 icon.svg icon.iconset/[email protected]
convert -background none -size 64x64 -gravity center -extent 64x64 icon.svg icon.iconset/icon_64x64.png
convert -background none -size 128x128 -gravity center -extent 128x128 icon.svg icon.iconset/[email protected]
convert -background none -size 128x128 -gravity center -extent 128x128 icon.svg icon.iconset/icon_128x128.png
convert -background none -size 256x256 -gravity center -extent 256x256 icon.svg icon.iconset/[email protected]
convert -background none -size 256x256 -gravity center -extent 256x256 icon.svg icon.iconset/icon_256x256.png
convert -background none -size 512x512 -gravity center -extent 512x512 icon.svg icon.iconset/[email protected]
convert -background none -size 512x512 -gravity center -extent 512x512 icon.svg icon.iconset/icon_512x512.png
convert -background none -size 1024x1024 -gravity center -extent 1024x1024 icon.svg icon.iconset/[email protected]
iconutil --convert icns icon.iconset
rm -R icon.iconset