imagemagick should do the trick. Install it on macOS:
brew install imagemagick- Get the images in one folder
- Open that folder in Terminal
- Run
convert *.jpg title.pdf
If page numbers encoded in filenames aren’t in order, run this command instead:
convert $(ls -1 outline-functional-model-nervous-system-*.jpg | sort -t'-' -k6 -n) title.pdfIt will produc a title.pdf file in that same directory.
convert $(ls -1 MODEL_OF_THE_NERVOUS_SYSTEM-page*.jpg | sort -V) MODEL_OF_THE_NERVOUS_SYSTEM.pdfThe -V flag does "version sort" which handles numbers correctly (1, 2, 3... 10, 11 instead of 1, 10, 11, 2, 3).