Search found 1 match

by Gus
2018-06-16T11:10:04-07:00
Forum: Users
Topic: Using convert or mogrify - recursive sub-directories
Replies: 2
Views: 25935

Re: Using convert or mogrify - recursive sub-directories

In my case, I have achieved the goal with the following instruction in a CMD window in the root folder: FOR /R %f IN (*.jpg) DO mogrify -verbose -quality 96 "%f" My goal was to reduce the size of thousands of images organized in hundreds of folders (I added -verbose to follow the process) ...