码迷,mamicode.com
首页 > Web开发 > 详细

Aspose.Cells将Excel转成pdf

时间:2019-12-31 14:45:01      阅读:389      评论:0      收藏:0      [点我收藏+]

标签:path   excel转pdf   文件   mat   span   format   form   returns   pos   

Aspose.Cells Excel转成pdf

/// <summary>
        /// excel转pdf
        /// </summary>
        /// <param name="path">文件地址</param>
        /// <param name="newFilePath">转换后的文件地址</param>
        /// <returns></returns>
        public static void ExcelToPdf(string path, string newFilePath)
        {
            var dir = newFilePath.Substring(0, newFilePath.LastIndexOf("/") + 1);
            if (!Directory.Exists(dir))
            {
                Directory.CreateDirectory(dir);
            }
            Aspose.Cells.Workbook excel = new Aspose.Cells.Workbook(path);
            excel.Save(newFilePath, Aspose.Cells.SaveFormat.Pdf);
        }

 

Aspose.Cells将Excel转成pdf

标签:path   excel转pdf   文件   mat   span   format   form   returns   pos   

原文地址:https://www.cnblogs.com/jiangqw/p/12124057.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!