从 C# 调用时,wkhtmltopdf 不会将 html 字符串转换为 pdf

wkhtmltopdf not converting html string to pdf when invoked from c#

我正在尝试在我的 .net 5 控制台应用程序中使用 wkhtmltopdfhtml 字符串转换为 pdf。这是命令。

echo | set /p="<h3>test</h3>" | "C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe" -s A4 - "C:\Users\xxxx\Desktop\test.pdf"

当我在命令提示符下 运行 并获得 pdf 文件时,上述命令有效。但是当我 运行 在我的控制台应用程序中以编程方式执行相同的命令时,这没有任何作用。

这是我试过的代码,

string arguments = $@"echo | set /p=""<h3>test</h3>"" | ""C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe"" -s A4 - ""C:\Users\xxxx\Desktop\test.pdf""";

var p = new System.Diagnostics.Process()
{
    StartInfo =
    {
        FileName = "cmd.exe",
        Arguments = arguments,
        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 = Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location)),
        //WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden
    }
};

p.Start();

// read the output here...
var output = p.StandardOutput.ReadToEnd();
var errorOutput = p.StandardError.ReadToEnd();

// ...then 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 or 2, it worked so return path of pdf
if ((returnCode == 0) || (returnCode == 2))
    return outputFolder + outputFilename;
else
    throw new Exception(errorOutput);

请协助解决我遗漏的问题。

我知道问题出在哪里了。

当我们以编程方式 运行 命令时,看起来我们需要将 /C 添加到命令的开头。

string arguments = $@"/C echo | set /p=""<h3>test</h3>"" | ""C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe"" -s A4 - ""C:\Users\xxxx\Desktop\test.pdf""";

原因:

/C Carries out the command specified by the string and then terminates.