mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 05:34:17 +00:00
27 lines
1 KiB
Bash
Executable file
27 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
# https://gist.github.com/zlbruce/883605a635df8d5964bab11ed75e46ad
|
|
echo "*** SVG 2 ICNS ***"
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: svg2icns filename.svg"
|
|
exit 100
|
|
fi
|
|
filename="$1"
|
|
name=${filename%.*}
|
|
ext=${filename##*.}
|
|
echo "processing: $name"
|
|
dest="$name".iconset
|
|
mkdir "$dest"
|
|
|
|
convert -background none -resize '!16x16' "$1" "$dest/icon_16x16.png"
|
|
convert -background none -resize '!32x32' "$1" "$dest/icon_16x16@2x.png"
|
|
cp "$dest/icon_16x16@2x.png" "$dest/icon_32x32.png"
|
|
convert -background none -resize '!64x64' "$1" "$dest/icon_32x32@2x.png"
|
|
convert -background none -resize '!128x128' "$1" "$dest/icon_128x128.png"
|
|
convert -background none -resize '!256x256' "$1" "$dest/icon_128x128@2x.png"
|
|
cp "$dest/icon_128x128@2x.png" "$dest/icon_256x256.png"
|
|
convert -background none -resize '!512x512' "$1" "$dest/icon_256x256@2x.png"
|
|
cp "$dest/icon_256x256@2x.png" "$dest/icon_512x512.png"
|
|
convert -background none -resize '!1024x1024' "$1" "$dest/icon_512x512@2x.png"
|
|
|
|
iconutil -c icns "$dest"
|
|
rm -R "$dest"
|