To pdfjoin without rotation and addition of white space

14

2

I have 4 scanned documents which contains 3x3 pictures. I run in the folder of files

pdfjoin *

I get some pages automatically rotated such that much white space around. This is annoying.

All pages in 4 files are in the right rotation. Documents should only by joined together without changing their rotation or adding white space.

How can you do pure pdfjoin without rotation and addition of white space?

Differential solution used nowadays by OP

LaTeX because you can automate but some work still in process for 5% of pictures, see the thread How to rotate image 90 if height overful? where you just loop through the images and adjust them to the document; you can also do there cropping, captions etc - - which works much better than any combination of terminal approaches with pdfjoin.

Léo Léopold Hertz 준영

Posted 2014-03-16T19:49:06.747

Reputation: 4 828

Question was closed 2014-09-13T07:00:06.897

Answers

19

Joining two pdfs with slightly different page size with pdfjoin

pdfjoin --paper a4paper --rotateoversize false

does the trick for me. rotateoversize is the important option

fto

Posted 2014-03-16T19:49:06.747

Reputation: 206