Processing whole directories of images
Posted: 2017-12-07T08:11:28-07:00
I've gone through the online documentation, and read many examples, but I'm obviously missing something rather basic.
How does one process a whole folder of image files (jpgs) while keeping the filenames intact, but putting the resulting files in a new folder? (I'm working in a Windows 10 environment, not Linux or Unix)
For example:
convert *.jpg -quality 75 -resize 1920x1920^> -unsharp 10x4+1+0 C:\Resized\
doesn't work as I had hoped.
nor does:
convert *.jpg -quality 75 -resize 1920x1920^> -unsharp 10x4+1+0 C:\Resized
nor does:
convert *.jpg -quality 75 -resize 1920x1920^> -unsharp 10x4+1+0 C:\Resized\*.jpg
So what am I missing?
How does one process a whole folder of image files (jpgs) while keeping the filenames intact, but putting the resulting files in a new folder? (I'm working in a Windows 10 environment, not Linux or Unix)
For example:
convert *.jpg -quality 75 -resize 1920x1920^> -unsharp 10x4+1+0 C:\Resized\
doesn't work as I had hoped.
nor does:
convert *.jpg -quality 75 -resize 1920x1920^> -unsharp 10x4+1+0 C:\Resized
nor does:
convert *.jpg -quality 75 -resize 1920x1920^> -unsharp 10x4+1+0 C:\Resized\*.jpg
So what am I missing?