Merge pull request #64 from there4/tiny-output

Force wkhtmltopdf to render with dpi of 300
This commit is contained in:
Craig Davis 2017-10-19 16:55:41 -07:00 committed by GitHub
commit 7f1acf3223
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class PdfCommand extends HtmlCommand
file_put_contents($pdfSource, $rendered);
// Process the document with wkhtmltopdf
exec('wkhtmltopdf ' . $pdfSource .' ' . $destFilename);
exec('wkhtmltopdf --dpi 300' . $pdfSource .' ' . $destFilename);
// Unlink the temporary file
unlink($pdfSource);