5 lines
112 B
Batchfile
5 lines
112 B
Batchfile
|
for %%i in (*.tif) DO (
|
||
|
convert.exe %%i -type Grayscale pages\%%i.png
|
||
|
)
|
||
|
pause
|
||
|
rename pages\*.tif.png pages\*.png
|