Dompdfを使用してHTMLページをPDFにエクスポートしています。私は、HTMLファイル自体に表示されるいくつかのフォント驚くばかりのアイコンを使用していますが、結果のPDFでは、アイコンの代わりに疑問符があります。ここでDompdfを使用してHTMLをPDFにエクスポートする際に素晴らしいフォントが表示されない
HTMLコードの一部です:これらのアイコンは表示されません
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Some title</title>
<!-- Latest compiled and minified CSS - Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href="http://domain.com/public/assets/css/font-awesome-4.6.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<!-- -->
<div id="wrapper" > <div id="page-wrapper"> <div class="container-fluid">
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<div class="panel panel-default panel-table">
<div class="panel-heading">
<div class="row">
<div class="col-xs-12">
<div class="bs-callout bs-callout-primary">
<h4>Contact name</h4>
<ul>
<li><span class="fa fa-envelope"></span> <strong>Email</strong>: [email protected]</li>
<li><span class="fa fa-phone"></span> <strong>Telephone</strong>: 0000-0000</li>
<li><span class="fa fa-location-arrow"></span> <strong>Location</strong>: Address</li>
</ul>
</div>
</div>
</div>
</div>
<div class="panel-body">
<!-- A table goes here -->
</div> </div>
</div>
</div>
</div>
</div>
</div><!-- .wrapper -->
</body>
</html>
、唯一の問題は、PDFではなくマーク:
<li><span class="fa fa-envelope"></span> <strong>Email</strong>: [email protected]</li>
<li><span class="fa fa-phone"></span> <strong>Telephone</strong>: 0000-0000</li>
<li><span class="fa fa-location-arrow"></span> <strong>Location</strong>: Address</li>
私はこれをどのように修正すればよいですか?
それはエンコードの問題がある可能性がありますように聞こえます。あなたのHTMLファイルのエンコーディングは何ですか?それは 'utf-8'でなければなりません。そうでない場合は、CDNのawesomeフォントにリンクし、それが修正されているかどうか確認してください。 – timgavin
ええ、 ''で、CDNにリンクしようとしましたが、フォントも表示されません。 : – Pathros
エンコーディングとは、ドキュメントが実際にどのように保存されるかということです。テキストエディタでは、異なるエンコーディングでドキュメントを保存できるため、これらの問題が発生しやすくなります。 – timgavin