.Net Aspose将Word转Pdf文件

1、下载Aspose库,我是在网上下载的破解版的

2、word转pdf代码实现

1)使用Aspose需要从NuGet中搜索安装SkiaSharp(我使用的是VS2017)

2)添加引用 using Aspose.Words;

实现代码

        /// 
        /// Doc转Pdf
        /// 
        /// word文档路径
        public static void ConverDocToPdf(string docPath)
        {
		    //打开word文档,将doc文档转为pdf文档
            Aspose.Words.Document doc = new Aspose.Words.Document(docPath);
            bool isOk = false;
            if (doc != null)
            {
              doc.Save("D:\\NewPdf.pdf", SaveFormat.Pdf);
            }
        }

 

你可能感兴趣的:(.Net,.Net,Core,C#,Word)