8 lines
173 B
Batchfile
8 lines
173 B
Batchfile
|
@echo off
|
||
|
setlocal enabledelayedexpansion
|
||
|
mkdir tmp
|
||
|
mkdir out
|
||
|
for %%f in (*.tif) do (
|
||
|
echo resize: %%f
|
||
|
convert %%f -resize 50%% -filter Gaussian ./tmp/_%%f
|
||
|
echo invert
|