Page 1 of 1

How to create layered PDF from set of images?

Posted: 2015-10-19T06:16:40-07:00
by daim1
Hello!

I have set of images like this:
page1_1.png
page1_2.png
page1_3.png
page2_1.png
page2_2.png
page2_3.png

What will I do with IM to create an output PDF file with 2 pages and 3 layers on each. For example page 1 should be with page1_* and has layers 1-3 that tweaks variations from page1_1 to page1_3. Same with page 2.

Thanks for any help!

Re: How to create layered PDF from set of images?

Posted: 2016-12-09T06:42:23-07:00
by snibgo
If each page should have its images vertically beneath each other:

Code: Select all

convert ^
  ( page1_1.png page1_2.png page1_3.png -append ) ^
  ( page2_1.png page2_2.png page2_3.png -append ) ^
  out.pdf
That is Windows CMD syntax. Adjust for other shells.