view client/digitallibrary/jquery/img/embedded_icons.cmd @ 697:df92725e139d jquery

merge with 20b77008045a137b46ed0e52614312330d8084bd
author robcast
date Fri, 28 Jan 2011 11:52:06 +0100
parents b2ff035dc81a
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