11.05.2009, 12:41:05
(11.05.2009, 02:56:38)mt. Wrote: Wonderful, thank you a lot for this (especially the mod support)I would not know, but I have made a simple program in the past that helps here. Use it like
Hmm, how long it will take before every major mod has the improved minimaps produced from this, and the possible uses of the full renders?
Code:
InjectThumbs.exe "c:\mymap.mpr" "d:\someminimapimage.mpr"
Quite simplified, my batch file to do this did the following:
go through all .map files in a folder,
call the rendering program on it,
create a nice thumbnail for it (the hovering previews for ra2maps.net)
Code:
i_view32 "%%d" /resize=^(600,0^) /aspectratio /resample /jpgq=95 /convert="thumb_%%~nd.jpg"
Code:
i_view32 "%%d" /resize=^(144,133^) /aspectratio /resample /convert="prev_%%~nd.png"
Code:
InjectThumbs.exe "%%c" "prev_%%~nd.png"