2

I want to use wkhtmltopdf for html to pdf conversion. The program seems to work but I dont know where the target file is saved. Ideally it should be saved in programfiles-->wkhtmltopdf folder.

Does anyone experience this problem before?

user2614607
  • 151
  • 2
  • 6
  • 17

1 Answers1

2

When you generate the document, you choose where to save the file. Refer to their usage wiki page for simple examples on how to use it. There is also a manual for the various options and detailed information on it. You can find different versions of the manual here.

Usage:

wkhtmltopdf [OPTIONS]... <input file> [More input files] <output file>

Examples:

wkhtmltopdf http://google.com example.pdf
wkhtmltopdf http://google.com f:\example.pdf

If you choose the first example, the file will be saved in which ever directory you are currently located in.

matth
  • 6,112
  • 4
  • 37
  • 43