Bulk resizing photos
2024-08-16
sips is a CLI to bulk resize photos. Here is a sample command
mkdir -p resized && sips -Z 2000 *.jpg --out resized/
Z tells sips to respect the ratio, 2000 is the max width/height size, and output is written to resized directory.
ImageMagick looks pretty cool too, will check it out some time.