update iconset
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 458 KiB After Width: | Height: | Size: 622 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 13 KiB |
|
@ -5,9 +5,9 @@ if [ ! -e icon.iconset ]; then
|
||||||
fi
|
fi
|
||||||
for i in "${sizes[@]}"; do
|
for i in "${sizes[@]}"; do
|
||||||
echo "making $i..."
|
echo "making $i..."
|
||||||
convert logo.png -filter Mitchell -scale "$i"x"$i" icon/icon_"$i"x"$i".png
|
convert logo.png -filter Mitchell -scale "$i"x"$i" icon.iconset/icon_"$i"x"$i".png
|
||||||
done
|
done
|
||||||
for i in "${sizes[@]}"; do
|
for i in "${sizes[@]}"; do
|
||||||
echo "making $i@2x..."
|
echo "making $i@2x..."
|
||||||
convert logo.png -filter Mitchell -scale "$((i*2))"x"$((i*2))" icon/icon_"$i"x"$i""@2x.png"
|
convert logo.png -filter Mitchell -scale "$((i*2))"x"$((i*2))" icon.iconset/icon_"$i"x"$i""@2x.png"
|
||||||
done
|
done
|
||||||
|
|