ArchivedTools/ScanScripts/Windows/1 - Indexed.cmd
2023-12-21 01:48:37 +01:00

10 lines
144 B
Batchfile

@echo off
set /p nr="Amount of colors: "
if %nr% LSS 1 DO set nr=256
mkdir pages
for %%i in (*.tif) DO (
convert %%i -colors %nr% pages\%%i
)