Zend certified PHP/Magento developer

Merge Multiple Images into PDF from List [closed]

I have thousands of images that need to be converted and combined into multiple PDF files. Some of the images are used multiple times. I’m looking for a solution to automate this. Example below, using 15 sequential .tif files:

  • 1.tif – 4.tif named 0001.pdf
  • 5.tif – 6.tif named 0002.pdf
  • 7.tif – 9.tif named 0003.pdf
  • 7.tif & 10.tif – 11.tif named 0004.pdf
  • 7.tif & 12.tif – 13.tif named 0005.pdf
  • 14.tif – 15.tif named 0006.pdf

I have all of the .tif files named and organized in a spreadsheet. I want to use that file list and run an automated script to save myself hundreds of hours converting these files one by one.

All the files are in the same folder.

I’m not a programmer. I’ve tried finding some kind of documentation, code, or third-party tool, but this seems to be an uncommon task. Thanks in advance.