Tagged Questions
1
vote
0answers
23 views
Rescale a PDF file [duplicate]
Possible Duplicate:
How to change height and width of each page of a pdf
Is it possible to rescale a PDF file (retaining perspective) to be within a maximum width / height?
Rendering to an ...
2
votes
0answers
178 views
Implementing a String -> PDF Stamp tool
I wrote a little shell function which creates a fixed-size PDF file (A4) from a character string using gs:
make_stamp() {
file=$1
string=$2
tmp=${file}-small.pdf
gs -o "$tmp" -sDEVICE=pdfwrite ...
3
votes
1answer
2k views
insert a blank page into a PDF using ghostscript or pdftk
I have a PDF file that needs a blank page inserted into it every so often. The pattern is unpredictable, so I need a command that will allow me to fit one in wherever necessary.