Skip to content

Commit 845ea8a

Browse files
committed
Force wkhtmltopdf to render with dpi of 300
1 parent 4be3c9c commit 845ea8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resume/Command/PdfCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
8383
file_put_contents($pdfSource, $rendered);
8484

8585
// Process the document with wkhtmltopdf
86-
exec('wkhtmltopdf ' . $pdfSource .' ' . $destFilename);
86+
exec('wkhtmltopdf --dpi 300' . $pdfSource .' ' . $destFilename);
8787

8888
// Unlink the temporary file
8989
unlink($pdfSource);

0 commit comments

Comments
 (0)