0

在我将代码从 word 转换为 PDf 后,如果我输入相同的 word 文档以转换为 PDf,则 PDF 文件已损坏。你能告诉我这个错误是因为多次输入相同的单词 PDf 还是其他错误。

 Microsoft.Office.Interop.Word.Application appWord = new Microsoft.Office.Interop.Word.Application();
            object _MissingValue = System.Reflection.Missing.Value;

              public void WordtoPdf_Input()
 {
string filename_doc=System.IO.Path.GetFileName(LblFleip.Text);
string wordFileName = LblFleip.Text;
      string pdfFileName=string.Empty;
     appWord.Visible = false;
     appWord.ScreenUpdating = false;

  // Cast as Object for word Open method
  object filename = (object)wordFileName;

  // Use the dummy value as a placeholder for optional arguments
  Microsoft.Office.Interop.Word.Document doc = appWord.Documents.Open(ref filename, ref _MissingValue,
   ref _MissingValue, ref _MissingValue, ref _MissingValue, ref _MissingValue, ref _MissingValue,
   ref _MissingValue, ref _MissingValue, ref _MissingValue, ref _MissingValue, ref _MissingValue,
   ref _MissingValue, ref _MissingValue, ref _MissingValue, ref _MissingValue);
  doc.Activate();

   InputFilename = pdfFileName = Path.ChangeExtension(wordFileName, "pdf");
  object fileFormat = WdSaveFormat.wdFormatPDF;

  // Save document into PDF Format
  doc.SaveAs(ref outputFileName,
   ref fileFormat, ref _MissingValue, ref _MissingValue,
   ref _MissingValue, ref _MissingValue, ref _MissingValue, ref _MissingValue,
   ref _MissingValue, ref _MissingValue, ref _MissingValue, ref _MissingValue,
   ref _MissingValue, ref _MissingValue, ref _MissingValue, ref _MissingValue);

  // Close the Word document, but leave the Word application open.
  // doc has to be cast to type _Document so that it will find the
  // correct Close method.    
  object saveChanges = WdSaveOptions.wdDoNotSaveChanges;
  ((_Document)doc).Close(ref saveChanges, ref _MissingValue, ref _MissingValue);
  doc = null;

  // word has to be cast to type _Application so that it will find
  // the correct Quit method.
  ((_Application)appWord).Quit(ref _MissingValue, ref _MissingValue, ref _MissingValue);
  appWord = null;
    }

我收到错误。这就是我如何将 word 转换为 pdf 并使用 itextsharp 阅读 Pages。

4

1 回答 1

1

试试这个代码:

        string tEmpName= Path.GetTempFileName();
        File.Delete(tmpName.ToString()); 
        File.Delete(Filename);
        File.Move(tEmpName, Filename);
于 2013-07-10T11:28:31.323 回答