How to resize large files only by mogrify
Posted: 2017-10-27T09:24:58-07:00
I convert non-jpg files to jpg in a folder with mogrify:
I want to resize files, which are larger than 800px in width.
With convert command, the solution is
How can I do this with morigy, which well works with the files in a folder.
Code: Select all
mogrify -format jpg -flatten images/*.*
With convert command, the solution is
Code: Select all
-resize 800/>