aboutsummaryrefslogtreecommitdiff
path: root/scripts/qt/make_windows_icon.py
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2011-09-26 06:05:11 -0700
committerGavin Andresen <gavinandresen@gmail.com>2011-09-26 06:05:11 -0700
commitf7f2a36925bb560363f691fc3ca3dec83830dd15 (patch)
treec09327d910abe4e7947c53dcbb5f15b01ab194c1 /scripts/qt/make_windows_icon.py
parentf8937b2d3bb545a0a6ff78031ce3cdcb3208ecbe (diff)
parent0465c41c847ddee7eeb5caefb164149400ff8395 (diff)
downloadbitcoin-f7f2a36925bb560363f691fc3ca3dec83830dd15.tar.xz
Merge pull request #521 from laanwj/qt
Qt GUI
Diffstat (limited to 'scripts/qt/make_windows_icon.py')
-rwxr-xr-xscripts/qt/make_windows_icon.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/qt/make_windows_icon.py b/scripts/qt/make_windows_icon.py
new file mode 100755
index 0000000000..bf607b1c62
--- /dev/null
+++ b/scripts/qt/make_windows_icon.py
@@ -0,0 +1,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}
+