Converting image files with macOS command line tool sips

Simple Image Conversion from the Command Line sips -s format [image type] [file name] --out [output file] Example sips -s format png test.jpg --out test.png Batch Image Conversion with sips for i in *.jpeg; do sips -s format png $i --out Converted/$i.png;done Links Converting Image File Formats with the Command Line & sips

December 30, 2024 · 1 min · pixelchrome