-
Notifications
You must be signed in to change notification settings - Fork 140
Open
Labels
Description
I apologies if this is not the right place to report my problem.
I have a script that uses the cups filter to automatically convert pdf files. The command in question is
/usr/lib/cups/filter/pdftopdf 1 me '' 1 '' <./input.pdf > ./output.pdf
If I run it on my PC I get as output an A4 or A3 document, depending on the input. On Ubuntu server (updated) the input document format is ignored and I always get a US letter format.
The command
/usr/lib/cups/filter/pdftopdf 1 me '' 1 'PageSize=A3' <./input.pdf > ./output.pdf
works. But I would like to avoid having to specify A4 or A3 format each time. Is there any way to reproduce the old behavior with the new version?
Thanks