PhyrexTechs

2_Convert+Scale_MM+

Oct 27th, 2023 (edited)
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.32 KB | None | 0 0
  1. @echo off
  2. mkdir Imgs
  3. set "source_folder=."
  4. set "result_folder_1=.\Imgs"
  5.  
  6. for %%a in ("%source_folder%\*.png" "%source_folder%\*.jpg") do (
  7.    call scale.bat -source "%%~fa" -target "%result_folder_1%\%%~na.png" -max-height 360 -max-width 240 -keep-ratio yes -force yes
  8. )
  9.  
  10.  
  11. for %%A in (*.png *.jpg) do DEL *.png *.jpg
Advertisement
Add Comment
Please, Sign In to add comment