2025-12-03 11:35:49 +01:00

24 lines
435 B
Batchfile

@echo off
setlocal enabledelayedexpansion
echo Processando immagini PNG nella cartella...
for %%f in (*.png) do (
echo ---
echo File: %%f
rem 1. Trim del bordo bianco
magick "%%f" -trim +repage "_tmp_%%f"
rem 2. Aggiunta margine 15%
magick "_tmp_%%f" -bordercolor white -border 15%x15% "%%f"
rem 3. Rimozione file temporaneo
del "_tmp_%%f"
echo Fatto: %%f
)
echo Operazione completata!
pause