13
0

commit "source" and tools for icons from thorsten

git-svn-id: svn://localhost/ardour2/branches/3.0@14130 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2013-03-04 15:29:26 +00:00
parent ab679308cf
commit 9e941a5647
4 changed files with 2861 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 257 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,14 @@
#! /bin/bash
# Export one PNG for every icon-size in app-icon_tango.svg. The "targets" layer in the SVG should be hidden.
for s in \
"ardour-app-icon_tango_256px" \
"ardour-app-icon_tango_048px" \
"ardour-app-icon_tango_032px" \
"ardour-app-icon_tango_022px" \
"ardour-app-icon_tango_016px" \
"ardour-app-icon_osx" \
"ardour-app-icon_osx_mask";
do inkscape --export-id "$s" --export-png "$s.png" app-icon_tango.svg;
done