Mogrify or composite on PDF makes it blurry
Posted: 2011-10-22T21:48:53-07:00
Hi,
I'm trying to insert some text into a batch of PDF files, a set of identically laid out hockey scoresheets. First try:
Second try:
Either way, the entire document gets pretty blurry -- not just the area around the text insertion. Here's a snippet of before:
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?
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?