viewport-size
, this command not working in windows OS
Here is my config from laravel snappy pdf config/snappy.php
'pdf' => [
'enabled' => true,
'binary' => '"C:/Program Files/wkhtmltopdf/bin/wkhtmltopdf.exe --viewport-size 1024x768"',
'timeout' => false,
'options' => [],
'env' => [],
],
When I use above config, it shows an error like this:
The exit status code '1' says something went wrong: stderr: "'"C:/Program Files/wkhtmltopdf/bin/wkhtmltopdf.exe --viewport-size 1024x768"' is not recognized as an internal or external command, operable program or batch file. " stdout: "" command: "C:/Program Files/wkhtmltopdf/bin/wkhtmltopdf.exe --viewport-size 1024x768" --lowquality
Any solution of this case?