Aspose.Cells将Excel转成pdf
时间:2019-12-31 14:39:52
收藏:0
阅读:610
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); }
原文:https://www.cnblogs.com/jiangqw/p/12124057.html
评论(0)