You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off |
|
set "source_folder=\original" |
|
set "result_folder_1=\optimised" |
|
|
|
for %%a in ("%source_folder%\*jpg") do ( |
|
call scale.bat -source "%%~fa" -target "%result_folder_1%\%%~nxa" -max-height 300 -max-width 300 -keep-ratio no -force yes |
|
)
|
|
|