ginebra/chrome/unusedIcons/bedrockToolbarAlpha1/svg_toolbar_convert.sh
changeset 3 0954f5dd2cd0
parent 1 b0dd75e285d2
child 4 d5cdb6bc139d
--- a/ginebra/chrome/unusedIcons/bedrockToolbarAlpha1/svg_toolbar_convert.sh	Fri May 14 15:40:36 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-ICON_WIDTH=40
-ICON_HEIGHT=40
-
-echo
-echo "Usage: $0 <list of svg files to convert>"
-echo "This script converts svg icons into png icons with w=$ICON_WIDTH h=$ICON_HEIGHT"
-echo "DPI is default, 90dpi"
-echo "Edit the script to change the size\n"
-echo "... Requires librsvg2-bin package from ubuntu\n"
-
-echo "CONVERTING the files listed below:"
-
-for i in $*; do
-    rsvg-convert -w $ICON_WIDTH -h $ICON_HEIGHT $i -o `echo $i | sed -e s/svg$/png/`
-    echo $i;
-done
-