我使用了 laravel-pdf ( https://github.com/niklasravnsborg/laravel-pdf ) 包。我想在我的 PDF 视图中使用 img 标签。
我的控制器代码:
public function generatePdf()
{
$pdf= Pdf::loadView('resume::resumePdf', compact('resume'));
return $pdf->stream('document.pdf');
}
我的观点:
<!doctype html>
<html dir="rtl">
<head>
<head>
<meta charset="UTF-8">
<style>
body {
font-family: persianfont;
}
</style>
</head>
</head>
<body>
</body>
<img id="resumeProfileImage" src="url('/images/avatar.png')" width="100" height="100"/>
</html>
当我运行此代码时,没有显示错误,只是正在加载。
郎朗坤
眼眸繁星