有æøå HTML2PDF 字符集中的字符

发布于 2024-12-03 09:59:09 字数 315 浏览 1 评论 0原文

$content = "ÆØÅ";
$html2pdf = new HTML2PDF('P', 'A4', 'en');
$html2pdf->writeHTML($content, false)

$html2pdf->Output('', 'S'));

给我一个带有“¤”的 PDF 文件,

我检查了 html2pdf.class.php 中的编码,并将其设置为 UTF-8,应该没问题。

我尝试将“en”更改为“da”(丹麦语),结果仍然相同..

请问我该如何解决这个问题?现在花了几个小时寻找..

$content = "ÆØÅ";
$html2pdf = new HTML2PDF('P', 'A4', 'en');
$html2pdf->writeHTML($content, false)

$html2pdf->Output('', 'S'));

Gives me a PDF file with "ÆØÃ"

I checked the encoding in html2pdf.class.php and it is set to UTF-8 which should be fine.

I tried to change 'en' to 'da' (danish), still same result..

How can i fix this please? Spent hours now looking..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

小忆控 2024-12-10 09:59:09

您必须做两件事才能在 html2pdf 中看到奇怪的 UTF8 字符:

  1. 设置“UTF-8”编码,正如 Erik 已经建议的那样
  2. 使用 html2pdf 中唯一的 UTF-8 字体 : freeserif

我知道这是个老问题,但我需要一些要点:)

You have to do two things to see strange UTF8 characters in html2pdf:

  1. Set 'UTF-8' encoding, as already suggested by Erik
  2. Use the only UTF-8 font in html2pdf: freeserif

I know it's old question, but I need some points :)

冰雪梦之恋 2024-12-10 09:59:09

看起来您指定了错误的输出编码。例如,如果尝试将 UTF-8 输出显示为 ISO8859-1,则该输出是典型的输出。

看起来 HTML2PDF 构造函数也有一个以字符编码作为参数的版本:

$html2pdf = new HTML2PDF('P','A4','da', true, 'UTF-8');

可能有效...

Looks like you are specifying the wrong output encoding. The output is typical of what you'd get if trying to show UTF-8 output as ISO8859-1, for example.

Looks like the HTML2PDF constructor also has a version that takes a character encoding as the parameter:

$html2pdf = new HTML2PDF('P','A4','da', true, 'UTF-8');

could possibly work...

〃安静 2024-12-10 09:59:09

您可以使用这个 PHP 函数,

utf8_decode($article_content);

如果它不起作用,唯一的解决方案是创建一个 str_replace()

$content = "ÆØÅ"; 
$code_html = array("Æ","Ø","Å");
$caract_sp = array("Æ","Ø","Å");
str_replace($code_html, $caract_sp, $content);

对于任何其他特殊字符,您可以在此处查看等效的 HTML 代码: http://www.toutimages.com/codes_caracteres.htm

You can use this PHP function

utf8_decode($article_content);

If it doesn't work the only solution is to make a str_replace()

$content = "ÆØÅ"; 
$code_html = array("Æ","Ø","Å");
$caract_sp = array("Æ","Ø","Å");
str_replace($code_html, $caract_sp, $content);

For any other specials characters you can see the equivalents HTML codes here : http://www.toutimages.com/codes_caracteres.htm

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