4 lines
152 B
Batchfile
4 lines
152 B
Batchfile
|
mkdir indexed
|
||
|
for %%i in (*.tif) DO (
|
||
|
convert %%i -separate -threshold 75%% -combine -remap "..\..\..\..\commodore_3_colour_index_ref.tif" indexed\%%i
|
||
|
)
|