我正在使用带有Codeigniter(php 5 ++)的dompdf库,每个方法都很好用,但在显示pdf时我仍然遇到重音字符问题。
它用奇怪的字符(非utf8字符)取代所有的字母等。
全球的utf-8如何调试/尝试这个问题的解决方案?
我尝试在创建pdf之前通过php设置内容类型但没有任何变化...然后我放入pdf的相同html保存在db中它看起来没问题,重音字符是可以的所以这是一个主要的dompdf问题我认为,我设想了一些奇怪的编码:P
任何人都可以帮我调试和修复?
[EDITED]
这是我正在创建的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>
答案 0 :(得分:4)
我在将utf8_decode($html)
传递给$html
之前使用dompdf
解决了我的问题。这意味着重音字符现在可以工作。