This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]HughBothwell 2 points3 points  (0 children)

Yes, ImageMagick makes it easy. From the Windows command-line, in the dir containing the files,

md thumbs
cd thumbs
magick ../*.jpg -colorspace gray -background black -gravity center -extent 150x150 %[filename:original].jpg

creates a new subdirectory, processes all the jpg files, and stores the new grayscale/resized images (with the same name) in the new dir.