ArchivedTools/ScanScripts/Windows/1 - Indexed.cmd

10 lines
144 B
Batchfile
Raw Permalink Normal View History

2023-12-21 00:48:37 +00:00
@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
)