我有这段代码应该打开一个 docx 文件,我想将它保存为 pdf。
不幸的是,没有引发错误,但没有保存 PDF。
关于如何保存它的任何提示?
var wordApplication = new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document wordDocument = null;
try
{
wordDocument = wordApplication.Documents.Open(docPath + ".docx");
if (wordDocument != null)
wordDocument.SaveAs2(docPath + ".pdf", Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatPDF);
//wordDocument.ExportAsFixedFormat(docPath + ".pdf", Microsoft.Office.Interop.Word.WdExportFormat.wdExportFormatPDF);
else throw new Exception("CUSTOM ERROR: Cannot Open Word Application");
}
catch (Exception ex)
{
new Exception("CUSTOM ERROR" + ex.Message);
}