使用dompdf

时间:2015-05-16 11:50:09

标签: fonts pdf-generation laravel-5 dompdf

我今天开始使用dompdf。我能够很好地运行演示加载html但在运行加载文件的过程中运行:

return PDF::loadFile(public_path().'/myfile.html')->save('/path-to/my_stored_file.pdf')->stream('download.pdf');

我收到以下错误消息 [2015-05-16 11:32:49] production.ERROR: exception 'ErrorException' with message 'file_put_contents(D:\xampp\htdocs\laraApps\...\storage/fonts/eb3e0c0cc4b263877903c9509310e3b3.ttf): failed to open stream: No such file or directory' in D:\xampp\htdocs\laraApps\...\vendor\dompdf\dompdf\include\font_metrics.cls.php:343 Stack trace:

我甚至将我所有的html dom复制到文件中,并在“loadHTML()'例如,但是收到了相同的错误消息。

这是我的html文件的标题如下:

<!DOCTYPE html>
<html>
<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Birth certificate template</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />

<style type="text/css">
#header{ text-align: center;}
.ans{ border-bottom: dotted 2px #999; padding: 2px 0 1px 2px; margin:0       !important; width:90%; }
.ans-head{ border-bottom: dotted 2px #999;  margin-left: auto; margin-right: auto; padding: 2px 0 1px 0;}
#frame{margin-left: auto; margin-right: auto;}

li{ display:block;} 
div { display:block;}
</style>
</head>

我真的需要帮助。感谢

0 个答案:

没有答案