wkhtmltoxsharp.dll と Common.Logging.dll を参照の欲望に追加しました。次のコードを使用して、html ファイルを pdf ファイルに変換しています。
WkHtmlToPdfConverter converter = new WkHtmlToPdfConverter();
byte[] strHTML = converter.Convert("C:\\test.html");
File.WriteAllBytes("C:\\test.pdf", strHTML);
converter.Dispose();
「C:\test.html」という内容の pdf ファイルを提供するだけです。
誰かが私が間違っていることを教えてもらえますか? どんな助けでも大歓迎です!
よろしく、SS