4 lines
107 B
Batchfile
4 lines
107 B
Batchfile
|
mkdir indexed
|
||
|
for %%i in (*.tif) DO (
|
||
|
convert %%i +dither -remap D:\Retro-Work\3col.png indexed\%%~ni.png
|
||
|
)
|