I have saved multiple images from google books. I wanted to convert them to a single pdf file, where in I need some inputs. The below two images(one png and one jpeg) are two continuous pages.
I save them in my system. I converted them to pdf using the command below
convert books.png books.jpeg combined.pdf
However the combined.pdf is not giving me expected results, not the combination of the two.
I also tried making individual pdf files, then combining them using pdftk, with no luck
convert books.png book1.pdf
convert books.jpeg book2.pdf
pdftk book1.pdf book2.pdf cat output combined.pdf
pdftk *.pdf cat output onelargepdfile.pdf
. – Tim Jul 09 '14 at 11:41magick first.png second.jpg output.pdf
. Works for me on Windows 7 (sorry, I don't use Linux) and ImageMagick 7.0.10-6 Q16 x86 2020-04-06. The result is a 2-page pdf file where the first page is the first image and the second page is the second image. – john c. j. May 21 '22 at 15:33