DOMPDF Wrapper for Laravel 5, It's a html to pdf converter for laravel 5.
I have tried to convert laravel default auth register page to PDF and the path is http://ift.tt/1j5njX3. Code used for this purpose is given below. But I am getting font issue. Could you please help me to solve this issue?
routes.php
Route::post('/screenshot', function(){
$pdf = App::make('dompdf.wrapper');
//$pdf->loadHTML('<h1>Test</h1>');
$view = View::make('auth.register')->render();
$pdf->loadHTML($view);
$pdf->stream();
//return $pdf->stream('invoice');
return $pdf->download('profile.pdf');
});
Error
ErrorException in font_metrics.cls.php line 343: file_put_contents(C:\xampp\htdocs\careertag\storage\fonts/13350985545a9988387f8a573f409063.ttf): failed to open stream: No such file or directory
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire