

cd /System/Library/Image\ Capture/Automatic\ Tasks/MakePDF.app/Contents/MacOS The program I'm talking about is /System/Library/Image\ Capture/Automatic\ Tasks/MakePDF.appĬhange to the directory with the terminal where the executable file is located.

It doesn't really have a graphical user interface, but it can still be started via GUI. Since the results are not nearly as good as I described with "sips" it is still there and it is good to know. This program enables you to convert images to PDF. There is a hidden program in the image capture. for i in *.jpg do sips -setProperty format pdf "$.pdf" done You can also change the "for" loop to convert png to jpg, for example. So what do i do I'm making a "for" loop that allows me to easily convert all files from ".jpg" to ".pdf". Now I want to convert all files with the extension ".jpg" to ".pdf". sips -setProperty format pdf file.jpg -out file.pdf In my example a file is called "file.jpg" and I want to convert it to "file.pdf".
