日期:2014-05-18 浏览次数:20476 次
public bool ConvertPdfToSwf(string inFilename, string swfFilename) { bool isStart; try { System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(@"D:\FlashPaper2\FlashPrinter.exe"); startInfo.Arguments = string.Concat(Server.MapPath(inFilename), " -o ", Server.MapPath(swfFilename)); System.Diagnostics.Process process = new System.Diagnostics.Process(); process.StartInfo = startInfo; isStart = process.Start(); process.WaitForExit(); process.Close(); } catch (Exception ex) { throw ex; } return isStart; }
string savedocfile ="../../studyFile/PDF/" + docFile; string saveswffile = "../../studyFile/PDF/" + saveswfFile; bool bo= ConvertPdfToSwf(savedocfile, saveswffile);