aboutsummaryrefslogtreecommitdiff
path: root/scripts/make_windows_icon.py
blob: d722ebe9b6889d78b14ee848efaecc3ee57d1922 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
# create multiresolution windows icon
ICON_SRC=../src/qt/res/icons/bitcoin.png
ICON_DST=../src/qt/res/icons/bitcoin.ico
convert ${ICON_SRC} -resize 16x16 bitcoin-16.png
convert ${ICON_SRC} -resize 32x32 bitcoin-32.png
convert ${ICON_SRC} -resize 48x48 bitcoin-48.png
convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST}