You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
722 B
PHP
26 lines
722 B
PHP
<?php
|
|
|
|
return [
|
|
'pdf' => [
|
|
'enabled' => true,
|
|
'binary' => env('WKHTMLTOPDF_BINARY', '"C:\\Program Files\\wkhtmltopdf\\bin\\wkhtmltopdf.exe"'),
|
|
'timeout' => false,
|
|
'options' => [
|
|
'encoding' => 'UTF-8',
|
|
'enable-local-file-access' => true,
|
|
'margin-top' => 0,
|
|
'margin-right' => 0,
|
|
'margin-bottom' => 0,
|
|
'margin-left' => 0,
|
|
'dpi' => 300,
|
|
'image-quality' => 94,
|
|
],
|
|
],
|
|
'image' => [
|
|
'enabled' => true,
|
|
'binary' => env('WKHTMLTOIMAGE_BINARY', '"C:\\Program Files\\wkhtmltopdf\\bin\\wkhtmltoimage.exe"'),
|
|
'timeout' => false,
|
|
'options' => [],
|
|
],
|
|
];
|