view client/digitallibrary/jquery/img/embedded_icons.cmd @ 810:5de6c7a73855 stream

Alternative versions of Scaler without async and without threads. Should still work with Servlet API 2.3 (i.e. Tomcat < 7, Jetty < 8).
author robcast
date Sun, 20 Feb 2011 19:34:05 +0100
parents 2294e91613e6
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