我在PDF水印上收到这些未知字符
如何将它们转换为原始形式?
这是原始输入:
$pdf->Write(0, utf8_encode('àexception de') );
但在PDF格式中,它向我显示了这样的内容:
我该如何解决这个问题?
答案 0 :(得分:5)
不要utf8_encode
字符串。确保您在PDF库期望的编码中传递字符串。弄清楚究竟是什么。阅读What you need to know about encodings to work with text。