view client/src/main/webapp/jquery/img/embedded_icons.cmd @ 892:ec077cb6a8dc mvnify

merge from jquery branch
author robcast
date Tue, 26 Apr 2011 10:44:10 +0200
parents 7ffb45138f61
children
line wrap: on
line source

rem @echo off
setlocal

rem saxon embedded.svg embedded_icons.xsl

set ink=C:\prog_mr\inkscape-0.48.1\inkscape.exe

for %%f in (embedded\svg\*.svg) do (
    echo %%~nf
	%ink% %%f --export-png=embedded\16\%%~nf.png -w16 -h16
	%ink% %%f --export-png=embedded\32\%%~nf.png -w32 -h32
	)

endlocal