when I convert a PDF file, a specific line becomes this. The rest of the text is unaffected.
This behaviour does not occur with any other PDF file (so far).
The line does not contain special characters or similar. It says "Senior Vice President, Oracle University".
Unfortunately, I can not provide the said file because it's a certificate.
I am using ImageMagick version ImageMagick 7.0.7-22 Q16 x86_64 on Linux.
(For the sake of completeness: I use Ghostscript 9.22.)
The result above was generated with this bash code:
Code: Select all
file="some.pdf"
result="result.jpg"
magick -encoding unicode \
-density 300 \
"$file" \
"$result"
Did someone encountered a similar problem before?
Best regards
AVoeee