MacOS – How to batch convert image files and PDFs to TIFF

file conversiongraphicsmacos

I have a lot .jpeg, .png and .pdf Files and I want to convert all of them to .tiff all at once.

How can I do this?

Best Answer

for i in *; do sips -s format tif $i --out $i.tif; done

Bash.