1

I have 41 PDF pages converted into PNGs that I need to collate as one long vertical image, in order.

I can't do this manually because I have roughly a thousand other sets of 41 images, I need to create an automated procedure.

Maythux
  • 84,289
TNG
  • 11

2 Answers2

1

Install the package named imagemagick:

sudo apt-get install imagemagick

Now you can use the tool called convert:

convert -append input1.jpg input2.jpg inputn.jpg out.jpg

or you can use to append all images

convert -append *.jpg out.jpg
Maythux
  • 84,289
0

I had the same issue, but I used

convert -adjoin *.jpg outputfile.pdf

I hope this help another users.

muru
  • 197,895
  • 55
  • 485
  • 740
alex
  • 1