我在 Windows Server 2008 R2 上运行 IIS 7.5,并尝试使用 SWFTools 的 pdf2swf 将上传后的一些 PDF 转换为 SWF。如果我使用相同的参数手动启动转换器,一切都很好。但是,如果我从我的 HttpHandler 中启动转换器,则该过程不会返回任何输出(并且似乎根本没有启动)或转换没有任何文本的 PDF - 取决于我如何启动该过程。
这是我开始这个过程的方式:
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = ToolsPath;
p.StartInfo.Arguments = arguments
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.Password = secPw;
p.StartInfo.UserName = username;
p.StartInfo.Domain = domain;
p.Start();
p.WaitForExit();
以及我通过哪些论点:
"%%source%% -o %%target%% -v -v -v -f -T 9 -t -s storeallcharacters"
非常感谢您的帮助!
编辑:我也尝试过没有额外的 StartInfo(用户凭据),这是我第一次尝试的,导致 SWF 没有文本。使用凭据(作为管理员或标准),我没有从转换器获得任何 SWF 或输出。
编辑2:我也尝试了这些论点:
"%%source%% -o %%target%% -f -T 9 -t -s storeallcharacters"