我想使用 c# 将 PDF 文件转换为 .swf 文件。我正在使用具有以下参数的 PDF2SWF。它可以转换小文件,但不能转换大文件.....比如说 4MB 文件(超过 20 页)。
以下是传递给转换的参数。
p.StartInfo.FileName = HttpContext.Current.Server.MapPath("~/Tools/PDF2SWF.exe"); p.StartInfo.Arguments = sourceFile + " -o " + sourceFile.Replace(".pdf", "") + ".swf -T 9 -f";
请建议。