@echo off
rem cls
title HDV v1.1 - 2011-04-20
rem Converting a large format image HDView and Silverlight with a batch and hdmake.
rem Update: http://myc01.free.fr/hdview
rem License: Public Domain Dedication (CC0 1.0)
rem  http://creativecommons.org/publicdomain/zero/1.0/

echo HDV v1.1 - 2011-04-20

rem http://www.codeplex.com/HDViewSL
rem http://research.microsoft.com/en-us/um/redmond/groups/ivm/HDView/HDView2.js

set _hdmake=

if exist "%ProgramFiles%\Microsoft Research\HD View Utilities\hdmake.exe" (
  set _hdmake=%ProgramFiles%\Microsoft Research\HD View Utilities
  )
if exist "%ProgramFiles(x86)%\Microsoft Research\HD View Utilities\hdmake.exe" (
  set _hdmake=%ProgramFiles(x86)%\Microsoft Research\HD View Utilities
  )

if "%_hdmake%" == "" (
echo.
echo Error: Utility not installed.
echo Please download and install "HD View Utilities (32 or 64 bit)"
echo HDMake v1.11:
echo   http://research.microsoft.com/en-us/um/redmond/groups/ivm/HDView/HDMake.htm
goto end
)

if "%~1" == "" (
echo Converting a large format image HDView and Silverlight with a batch and hdmake.
echo Update: http://myc01.free.fr/hdview
echo License: Public Domain Dedication ^(CC0 1.0^)
echo   http://creativecommons.org/publicdomain/zero/1.0/
echo.
echo Usage: HDV.exe ^<input^> [quality] [viewer] [output]
echo   input   : an image tif, jpg, png, wdp or bmp
echo   quality : 0..1 ^(default=0.9^)
echo   viewer  : 0=hdview, 1=deepzoom, 2=dual ^(default=2^)
echo   output  : jpg, png, wdp ^(only hdview^) ^(default=jpg^)
echo.
echo Example: HDV.exe ".\Paris_Night.jpg" "0.85" "2" "jpg"
goto end
)

rem quality : 0..1
if "%~2" == "" (
  set _quality=0.9
  ) else (
    set _quality=%~2
  )

rem viewer : 0 = hdview, 1 = deepzoom, 2 = dual
if "%~3" == "" (
  set _viewer=2
  ) else (
    set _viewer=%~3
  )

rem _output : jpg, png, wdp (only hdview)
if "%~4" == "" (
  set _output=jpg
  ) else (
    set _output=%~4
  )

set /a _size=%~z1/1048576
set _unit=MB
if "%_size%" == "0" (
  set /a _size=%~z1/1024
  set _unit=KB
)

pushD "%~dp1"

echo.
echo Folder : "%cd%"
echo Source : "%~f1" (%_size%%_unit%)
echo Viewer : %_viewer% (0=hdview; 1=deepzoom; 2=dual)
echo Output : %_output% (quality=%_quality%)
echo.

"%_hdmake%\hdmake.exe" -src "%~1" -html -xmlflat "%~n1.xml" -nozip -quality %_quality% -viewer %_viewer% -extension %_output%

if exist "%~dpn1.htm" (
  echo.
  echo New HTML page: "%~dpn1.htm"
  echo.
  echo Command to open the page with HDview:
  echo "%%ProgramFiles%%\Internet Explorer\iexplore.exe" "file:///%~dpn1.htm?FileName=%%23hdvxmlembed&Viewer=2"
  echo.
  echo Command to open the page with Silverlight:
  echo "%%ProgramFiles%%\Internet Explorer\iexplore.exe" "file:///%~dpn1.htm?FileName=%%23hdvxmlembed&Viewer=1"
)

popD

:end

set _quality=
set _viewer=
set _output=
set _size=
set _unit=
set _hdmake=