ArchivedTools/ScanScripts/Windows/png_to_1bit.cmd

7 lines
105 B
Batchfile
Raw Permalink Normal View History

2023-12-21 00:48:37 +00:00
@echo off
mkdir pages
for %%i in (*.png) DO (
convert %%i -colors 2 -threshold 75%% +repage pages\%%i
)