Skip to content

Commit 7f1acf3

Browse files
authored
Merge pull request #64 from there4/tiny-output
Force wkhtmltopdf to render with dpi of 300
2 parents 4be3c9c + 845ea8a commit 7f1acf3

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)