【发布时间】:2021-10-08 02:58:24
【问题描述】:
snappy.php 获取此代码
'pdf' => [
'enabled' => true,
'binary' => env('"C:\Program Files\wkhtmltox\bin\wkhtmltopdf-amd64.exe"'),
'timeout' => false,
'options' => [],
'env' => [],
],
当我在 web.php
中尝试使用此代码测试 html 到 pdf 时Route::get('/', function () {
$snappy = App::make('snappy.pdf');
$snappy->generateFromHtml('<h1>hello</h1>','exemple.pdf');
return view('welcome');
});
【问题讨论】:
标签: html laravel model-view-controller wkhtmltopdf