C# Microsoft.Office.Interop.Word进行Word转PDF
2021-03-14 15:27
标签:word sof logs nal get off div https ima 原文:https://www.cnblogs.com/huage-1234/p/10879860.html 之前用Aspose.Word进行Word转PDF发现‘\‘这个字符会被转换成‘¥‘这样的错误,没办法只能换个方法了。下面是Microsoft.Office.Interop.Word转PDF的方法: 这样是解决了问题,但是发布到服务器上面的时候。先是未发现下面的错误: 这个错误还好解决,因为这是服务器上没有安装Office的组件,咱们安装个Office就好了。 C# Microsoft.Office.Interop.Word进行Word转PDF 标签:word sof logs nal get off div https ima 原文地址:https://www.cnblogs.com/zhang1f/p/12468820.html public bool WordToPDF(string sourcePath, string targetPath)
{
bool result = false;
Microsoft.Office.Interop.Word.Application application = new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document document = null;
try
{
application.Visible = false;
document = application.Documents.Open(sourcePath);
document.ExportAsFixedFormat(targetPath, Microsoft.Office.Interop.Word.WdExportFormat.wdExportFormatPDF);
result = true;
}
catch (Exception e)
{
LogHelper.WriteLog(GetType(), e, Level.Error);
result = false;
}
finally
{
document.Close();
}
return result;
}
文章标题:C# Microsoft.Office.Interop.Word进行Word转PDF
文章链接:http://soscw.com/index.php/essay/64603.html