I want to write a batch command script for osx that will crop off the bottom of an image. Is that possible using sips?
I have a bunch of images 640 x 1136 and I want crop them (not scale or resize) to 640 x 960. When the image is cropped, I want the bottom of the image removed and the top to stay the same. Basically, I just want to cut the bottom of the image off.
I have this but it's cropping both from the top of the image and bottom.
sips --cropToHeightWidth 640 960
Doesn't look like it's possible. Thanks guys.