我正在使用带有 Codeigniter (php 5 ++) 的 dompdf 库,一切都很好,但是在显示 pdf 时我仍然遇到重音字符的问题。
它用奇怪的字符(非utf8字符)替换了所有的àòèù等。
环境是全局 utf-8 我如何调试/尝试解决这个问题?
在创建 pdf 之前,我尝试通过 php 设置内容类型,但没有任何变化......然后我放入 pdf 的相同 html 保存在 db 中,它看起来不错,重音字符也可以,所以我认为这是一个主要的 dompdf 问题,它设置我认为一些奇怪的编码:P
谁能帮我调试和修复?
[编辑]
这是我正在创建的 pdf 文档的 HTML 示例。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />
<style type="text/css">
body{margin:0 auto;padding:0px;font-size:10px;font-family:helvetica, sans-serif;}
#wrapper{margin:30px;}
#logo{margin:2px;background-image:url(http://localhost/img/logo.png);background-repeat:no-repeat;}
#ricevuta{font-weight:bold;margin-top:4px;padding:5px;font-size:14px;}
#order-n{color:#fff;padding:3px;font-weight:bold;background-color:#785a3b;}
#address-order{background-color:#ebe0d5;padding:5px;}
.h1-p{font-weight:bold;font-size:14px;margin:5px;}
table{width:100%;}
table tr{width:100%;padding:4px;}
.align-right{text-align:right;}
thead {background-color:#785a3b;color:#fff;font-weight:bold;}
#table-total{background-color:#ebe0d5;}
</style>
</head>
<body>
<div id="wrapper">
<div id="logo">
<img src="http://localhost/img/logo.png" />
</div>
<div id="ricevuta">
Ricevuta Ordine
</div>
<div id="order-n">
ORDINE numero - <strong>1 - Data (15-08-2011)</strong>
</div>
<p class="h1-p">Indirizzo Spedizione</p>
<div id="address-order">
<p>
<strong></strong><br>
<strong>sdfsdf sdfsd</strong><br>
sfgfdg (sdgfdg), Austria, 45666<br>
sdfsdf<br>
telefono fisso: <br>
telefono mobile: <br>
</p>
</div>
<p class="h1-p">Riepilogo Ordine</p>
<table>
<thead>
<tr>
<td><strong>Nome Prodotto</strong></td>
<td><strong>Codice Prodotto</strong></td>
<td><strong>Quantita</strong></td>
<td><strong>Prezzo</strong></td>
</tr>
</thead>
<tr>
<td>3423rf</td>
<td><strong># </strong></td>
<td><strong>2</strong></td>
<td><strong>29,70 euro</strong></td>
</tr>
</table>
<table id="table-total">
<tr class="align-right">
<td></td>
<td></td>
<td></td>
<td><strong>Sub-totale:</strong> euro 59,40</td>
</tr>
<tr class="align-right">
<td></td>
<td></td>
<td></td>
<td><strong> Spedizione:</strong> euro 26,50</td>
</tr>
<tr class="align-right">
<td></td>
<td></td>
<td></td>
<td><strong>Totale (tax,incluse):</strong> euro 85,90</td>
</tr>
</table>
</div>
</body></html>