Zend_Pdf 德语字体问题......?

发布于 2024-10-20 11:18:24 字数 345 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猥︴琐丶欲为 2024-10-27 11:18:24

谢谢Zsub,

我使用以下代码得到了解决方案:

$text = $this->_font->encodeString($text, 'UTF-8');

Thanks Zsub,

I got the solution using following code :

$text = $this->_font->encodeString($text, 'UTF-8');
寻梦旅人 2024-10-27 11:18:24

您可能使用类似的方法写入 Zend_Pdf_Page

$page->drawText($text, $xpos, $ypos);

只需添加编码:

$page->drawText($text, $xpos, $ypos, 'UTF-8');

You probably write to a Zend_Pdf_Page using something like

$page->drawText($text, $xpos, $ypos);

Just add the encoding:

$page->drawText($text, $xpos, $ypos, 'UTF-8');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文