user17227456
user17227456

Reputation: 1317

How can we uniform all PDF paper sizes

What utility, How's its syntax usage, which can uniform all PDF paper sizes on Linux the simplest way, preferably by CLI?

Upvotes: 0

Views: 164

Answers (1)

Jukka Matilainen
Jukka Matilainen

Reputation: 10198

You could give Ghostscript a try; it is a versatile tool for working with PDF files.

Something like this might work for you:

gs -o output.pdf -sDEVICE=pdfwrite -sPAPERSIZE=a4 -dPDFFitPage input.pdf ...

If the paper size you want is not on the list of known paper sizes, you can give a custom paper size in points (1/72ths of an inch) by -dDEVICEWIDTHPOINTS and -dDEVICEHEIGHTPOINTS.

Upvotes: 1

Related Questions