Aspose.Cells将Excel转成pdf

2021-05-03 02:28

阅读:407

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

Aspose.Cells Excel转成pdf

/// 
        /// excel转pdf
        /// 
        /// 文件地址
        /// 转换后的文件地址
        /// 
        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


评论


亲,登录后才可以留言!