I'm trying to insert some text into a batch of PDF files, a set of identically laid out hockey scoresheets. First try:
Code: Select all
composite -compose atop -geometry +355+344 some_text.png original.pdf new.pdf
Code: Select all
mogrify -draw "text 355,344 'some text'" original.pdf
And here's after:
The difference doesn't seem so bad to me on screen; but in print, which is where I need it, it looks awful. Is there something I could do better here?