zoukankan      html  css  js  c++  java
  • Office/Pdf格式转换,Net5环境下Aspose最新版21.8全系列,去水印等

    var byteKey = Convert.FromBase64String("xxxxxx");
     
                //注册,实现去水印            
                new Aspose.Pdf.License().SetLicense(new MemoryStream(byteKey));
                new Aspose.Cells.License().SetLicense(new MemoryStream(byteKey));
                new Aspose.Words.License().SetLicense(new MemoryStream(byteKey));
                new Aspose.Slides.License().SetLicense(new MemoryStream(byteKey));
                string wordFile = "wordFile.docx";
                string excelFile = "excelFile.xlsx";
                string pptFile = "pptFile.pptx";
                string pdfFile = "pdfFile.pdf";
                Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook();
                workbook.Worksheets.Add();
                workbook.Worksheets[0].Cells[1, 1].Value = "excelTest";
                workbook.Save(excelFile);
                workbook.Save(wordFile, Aspose.Cells.SaveFormat.Docx);
                workbook.Save(pptFile, Aspose.Cells.SaveFormat.Pptx);
                workbook.Save(pdfFile, Aspose.Cells.SaveFormat.Pdf);
                Console.WriteLine("保存成功!");
    

      

    示例代码不包含key,下面有获取key方法

    office所有版本2003-2022,Pdf所有版本均支持。

    pdf

     

    加微信25489181,获取key

  • 相关阅读:
    计算机网络第一章_20210512
    bootloader_华清远见
    C#3.17
    linux--cd命令
    国内的开源网站
    安装linux
    如何自我介绍
    课堂破冰游戏“猜猜他是谁”
    办公软件---word
    计算机网络--技能训练
  • 原文地址:https://www.cnblogs.com/cordova/p/15224817.html
Copyright © 2011-2022 走看看