web-dev-qa-db-ja.com

ASP.netでwkhtmltopdf.exeを使用する方法

10時間後、他の4つのHTMLをPDFツールに試しました。爆発する準備ができました。

wkhtmltopdf 優れたソリューションのように聞こえます...問題は、asp.netから十分な権限を持つプロセスを実行できないことです...

_Process.Start("wkhtmltopdf.exe","http://www.google.com google.pdf");
_

開始しますが、何もしません。

簡単な方法はありますか:

-a)asp.netがプロセスを開始できるようにする(実際に何かを実行できる)または
-b)wkhtmltopdf.exeを次のようにC#から使用できるものにコンパイル/ラップ/ whateverします:WkHtmlToPdf.Save("http://www.google.com", "google.pdf");

37
David Murdoch

Pechkin を使用することもできます

WkHtmlToPdf DLL用の.NETラッパー。Webkitエンジンを使用してHTMLページをPDFに変換するライブラリ。

Nugetパッケージ:

Pechkin.Synchronized

ペチキン

22

WkhtmltopdfのC#P/Invokeラッパーを提供する新しいプロジェクトを開始しました。

あなたは私のコードをチェックアウトすることができます: https://github.com/pruiz/WkHtmlToXSharp

あいさつ。

23

Paul のおかげで、Codaxyによって書かれた NuGet で簡単にダウンロードできる wrapper が見つかりました。

いくつかの試行の後、このMVCアクションを管理しました。これはPDFファイルをストリームとして即座に作成して返します。

public ActionResult Pdf(string url, string filename)
{
    MemoryStream memory = new MemoryStream();
    PdfDocument document = new PdfDocument() { Url = url };
    PdfOutput output = new PdfOutput() { OutputStream = memory };

    PdfConvert.ConvertHtmlToPdf(document, output);
    memory.Position = 0;

    return File(memory, "application/pdf", Server.UrlEncode(filename));
}

ここでは、Pdf *クラスがラッパーに実装されており、すてきなきれいなコードで、残念ながらドキュメントがありません。

コンバーター内で、URLはPDFに変換され、一時ファイルに保存され、パラメーターとして指定したストリームにコピーされます。その後、PDFファイルが削除されます。

最後に、ストリームをFileStreamResultとしてプッシュする必要があります。

出力ストリームのPositionをゼロに設定することを忘れないでください。そうしないと、PDFファイルがサイズ0バイトとしてダウンロードされます。

15
Bolt Thunder

これが実際に使用したコードです。これを編集して、匂いやその他のひどいものを取り除いてください。

using System;
using System.Diagnostics;
using System.IO;
using System.Web;
using System.Web.UI;

public partial class utilities_getPDF : Page
{
    protected void Page_Load(Object sender, EventArgs e)
    {
        string fileName = WKHtmlToPdf(myURL);

        if (!string.IsNullOrEmpty(fileName))
        {
            string file = Server.MapPath("~\\utilities\\GeneratedPDFs\\" + fileName);
            if (File.Exists(file))
            {
                var openFile = File.OpenRead(file);
                // copy the stream (thanks to http://stackoverflow.com/questions/230128/best-way-to-copy-between-two-stream-instances-c)
                byte[] buffer = new byte[32768];
                while (true)
                {
                    int read = openFile.Read(buffer, 0, buffer.Length);
                    if (read <= 0)
                    {
                        break;
                    }
                    Response.OutputStream.Write(buffer, 0, read);
                }
                openFile.Close();
                openFile.Dispose();

                File.Delete(file);
            }
        }
    }

    public string WKHtmlToPdf(string Url)
    {
        var p = new Process();

        string switches = "";
        switches += "--print-media-type ";
        switches += "--margin-top 10mm --margin-bottom 10mm --margin-right 10mm --margin-left 10mm ";
        switches += "--page-size Letter ";
        // waits for a javascript redirect it there is one
        switches += "--redirect-delay 100";

        // Utils.GenerateGloballyUniuqueFileName takes the extension from
        // basically returns a filename and prepends a GUID to it (and checks for some other stuff too)
        string fileName = Utils.GenerateGloballyUniqueFileName("pdf.pdf");

        var startInfo = new ProcessStartInfo
                        {
                            FileName = Server.MapPath("~\\utilities\\PDF\\wkhtmltopdf.exe"),
                            Arguments = switches + " " + Url + " \"" +
                                        "../GeneratedPDFs/" + fileName
                                        + "\"",
                            UseShellExecute = false, // needs to be false in order to redirect output
                            RedirectStandardOutput = true,
                            RedirectStandardError = true,
                            RedirectStandardInput = true, // redirect all 3, as it should be all 3 or none
                            WorkingDirectory = Server.MapPath("~\\utilities\\PDF")
                        };
        p.StartInfo = startInfo;
        p.Start();

        // doesn't work correctly...
        // read the output here...
        // string output = p.StandardOutput.ReadToEnd();

        //  wait n milliseconds for exit (as after exit, it can't read the output)
        p.WaitForExit(60000);

        // read the exit code, close process
        int returnCode = p.ExitCode;
        p.Close();

        // if 0, it worked
        return (returnCode == 0) ? fileName : null;
    }
}
4
David Murdoch

コメントできないので、上記の回答のコメントに対する「回答」としてこれを投稿します ASP.netでwkhtmltopdf.exeを使用する方法

--redirect-delayは動作しません。試してください--javascript-delayすべてのオプションについては、こちらを参照してください。 https://github.com/antialize/wkhtmltopdf/blob/master/README_WKHTMLTOPDF

またはwkhtmltopdf -H拡張ヘルプ(上記のリンクと同じ出力)。

0
alwin