scaninverter/presets/default/preset.cmd

11 lines
238 B
Batchfile
Raw Permalink Normal View History

2023-02-17 13:06:57 +00:00
@echo off
setlocal enabledelayedexpansion
mkdir tmp
mkdir out
for %%f in (*.tif) do (
echo resize: %%f
<IMAGEMAGICK> <IMTOOL> %%f -resize 50%% -filter Gaussian ./tmp/_%%f
echo invert
<IMAGEMAGICK> <IMTOOL> <IMPARAMETERS>
)
pause