Search found 1 match

by chakiss
2017-09-13T11:40:12-07:00
Forum: Users
Topic: Mogrify not working on batch
Replies: 2
Views: 4225

Mogrify not working on batch

Hey all! I am trying to create a batch file that process all jpgs in multiple subdirectories of certain folder. It looks like this: cd C:\codigo2\ for /r /d %%a in (*) do mogrify -fuzz 30% -trim "%%~a\*.jpg" pause for /r /d %%a in (*) do mogrify -resize 1000x5000 "%%~a\*.jpg" for...