ArchivedTools/ScanScripts/Windows/magazines/Rarely used scripts/2 - resize_to_tablet.cmd

5 lines
109 B
Batchfile
Raw Normal View History

2023-12-21 01:01:29 +00:00
@echo off
mkdir tablet
for %%i in (*.tif) DO (
convert %%i -resize 1024x4096 -quality 85%% tablet\%%~ni.jpg
)