var fi = new FileInfo(Environment.CurrentDirectory + "\\AE9302C0-AE48-4F4B-8489-6A428D9163C9_ALL.doc");
            var doc = new Document(fi.FullName);
            var options = new HtmlSaveOptions(SaveFormat.Html)
            {
                ExportTextInputFormFieldAsText = false,
                ExportImagesAsBase64 = true
            };
            doc.Save(Environment.CurrentDirectory + "\\Document.SaveWithOptions Out.html", options);
            Console.WriteLine("恭喜,保存成功!");

相关文章:

  • 2022-12-23
  • 2021-12-15
  • 2021-12-26
  • 2021-10-20
  • 2021-08-25
  • 2021-10-22
猜你喜欢
  • 2021-11-01
  • 2022-12-23
  • 2021-10-06
  • 2022-02-18
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
相关资源
相似解决方案