TCPDF UTF8 - 字符之间的奇怪间距

发布于 2024-08-18 21:07:16 字数 1313 浏览 7 评论 0原文

请看下面的图片 http://dev.mosaicware.pl/ tmp/PDF-utf-problem.png

正如您所见,PL 和 RO 字符看起来很奇怪,但它们在网页上看起来很好。有什么线索吗? 我使用了 arialunicid0 字体和以下代码(数据库中的字符是 UTF-8):

$pdf = new models_PdfUtf(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', true); 
$pdf->SetFont('arialunicid0'); $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE, PDF_HEADER_STRING); 
$pdf->SetAuthor($problem . ' ' . $problem['user_surname']); $pdf->SetTitle($problem['problem_title']); 
$pdf->SetSubject($problem['problem_title']); 
$pdf->Output('export.pdf','I');
$pdf = new models_PdfUtf(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', true);
    $pdf->SetFont('arialunicid0');
    $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE, PDF_HEADER_STRING);
    $pdf->setPrintFooter(false);
    $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
    $pdf->AddPage();
    $pdf->writeHTML($c, true, 0, true, 0);
    $pdf->SetAuthor($problem . ' ' . $problem['user_surname']); 
    $pdf->SetTitle($problem['problem_title']); 
    $pdf->SetSubject($problem['problem_title']); 
    $pdf->Output('export.pdf','I');

Pls have a look at the following picture http://dev.mosaicware.pl/tmp/PDF-utf-problem.png

As you can se PL and RO characters are looking weird, they look fine on the webpage. Any clue?
I've used arialunicid0 font and following code (characters in DB are UTF-8):

$pdf = new models_PdfUtf(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', true); 
$pdf->SetFont('arialunicid0'); $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE, PDF_HEADER_STRING); 
$pdf->SetAuthor($problem . ' ' . $problem['user_surname']); $pdf->SetTitle($problem['problem_title']); 
$pdf->SetSubject($problem['problem_title']); 
$pdf->Output('export.pdf','I');
$pdf = new models_PdfUtf(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', true);
    $pdf->SetFont('arialunicid0');
    $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE, PDF_HEADER_STRING);
    $pdf->setPrintFooter(false);
    $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
    $pdf->AddPage();
    $pdf->writeHTML($c, true, 0, true, 0);
    $pdf->SetAuthor($problem . ' ' . $problem['user_surname']); 
    $pdf->SetTitle($problem['problem_title']); 
    $pdf->SetSubject($problem['problem_title']); 
    $pdf->Output('export.pdf','I');

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

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

发布评论

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

评论(1

离旧人 2024-08-25 21:07:16

不幸的是,该图片现在受密码保护,但根据您的描述,我猜测 HTML 中存在某些内容。我遇到了 cou 所描述的带有链接的行为。你能检查一下 $c 是否包含任何链接吗?

Unfortunately, the picture is now password protected, but from your description I'd guess that there is something in the HTML. I encountered a behavior as described by cou with links. Could you check if $c contains any links at all?

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