aboutsummaryrefslogtreecommitdiffstats
path: root/image/make-icons
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2006-11-03 06:30:52 +0000
committerGerald Combs <gerald@wireshark.org>2006-11-03 06:30:52 +0000
commit8239fd24dbc25bfcb09495c3b29307a53668e1ac (patch)
treee9f7d9fd19e6e722add9c26b981574da1fb0a3ae /image/make-icons
parent37cd69bf415c60d0c29c5f00033742cb9244f8f4 (diff)
Touch up the glossy highlight in the main icon. Split "wsiconcap" into
"capture-in-progress" and "document" icons. Update the highlight in each of them as well. Resize and rename the 200-pixel icons to 256. Add a script to generate icons from their canonical sources. svn path=/trunk/; revision=19780
Diffstat (limited to 'image/make-icons')
-rwxr-xr-ximage/make-icons16
1 files changed, 16 insertions, 0 deletions
diff --git a/image/make-icons b/image/make-icons
new file mode 100755
index 0000000000..866ef4ba17
--- /dev/null
+++ b/image/make-icons
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+RESOLUTIONS="64 48 32 16"
+
+CONVERT=convert
+
+for RES in 64 48 32 16 ; do
+ $CONVERT -resize ${RES}x${RES} wsicon256.png wsicon${RES}.png
+ $CONVERT -resize ${RES}x${RES} wsicon256.png wsicon${RES}.xpm
+done
+
+for RES in 48 32 16 ; do
+ $CONVERT -resize ${RES}x${RES} wsiconcap256.png wsiconcap${RES}.xpm
+done
+
+