Zend_Pdf 德语字体问题......?
我正在使用 Zend_Pdf 类
创建一个 PDF 文档
。
这里的内容是德语语言,所以当我将内容写入 pdf 时,它会自动将这些字符转换为一些特殊的字符字符。
我无法弄清楚问题所在......?
我尝试了一些代码,例如
$str = html_entity_decode($str, ENT_COMPAT, "UTF-8");
但它没有接受它并且显示相同的结果
.....!!!!!!
请提供一些对我有帮助的代码或链接......
提前致谢......
I am using Zend_Pdf class
to create a PDF document
.
Here the contents are in the GERMAN language
, So when I write the content to the pdf it automatically converts
those characters
to some special chars
.
I am not able to figure out the problem....?
I tried some code like
$str = html_entity_decode($str, ENT_COMPAT, "UTF-8");
But it is not taking it and showing the same result
.....!!!!!!
Please provide some code or links that helps me........
Thanks in advance.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
谢谢Zsub,
我使用以下代码得到了解决方案:
Thanks Zsub,
I got the solution using following code :
您可能使用类似的方法写入 Zend_Pdf_Page
只需添加编码:
You probably write to a Zend_Pdf_Page using something like
Just add the encoding: