Spire.Doc 13.7.14 supports converting Word to PDF/UA-1

Spire.Doc 13.7.14 supports converting Word to PDF/UA-1

2025-07-25 04:01:13

We're pleased to announce the release of Spire.Doc 13.7.14. This version adds several new features, such as support for loading EPUB files and converting Word to PDF/UA-1 format. More details are listed below.

Category ID Description
New feature SPIREDOC-3144 Supports loading EPUB files for processing.
Document doc = new Document();
doc.LoadFromFile("in.epub", Spire.Doc.FileFormat.EPub);
doc.SaveToFile(@"out.docx", Spire.Doc.FileFormat.Docx);
doc.SaveToFile(@"out.pdf", Spire.Doc.FileFormat.PDF);
New feature SPIREDOC-11179 Supports converting Word to PDF/UA-1 format
Document doc = new Document();
doc.LoadFromFile("in.docx");
ToPdfParameterList list = new ToPdfParameterList();
list.PdfConformanceLevel = PdfConformanceLevel.Pdf_UA1;
doc.SaveToFile(@"out.pdf", list);
New feature SPIREDOC-11345 Adds new configuration parameters to enhance the performance and output quality of Word-to-Markdown conversion.
Click the link to download Spire.Doc 13.7.14:
More information of Spire.Doc new release or hotfix: