We're pleased to announce the release of Spire.Presentation 10.11.4. This version mainly focuses on improving conversion accuracy when exporting PowerPoint and ODP files to PDF. Several issues—such as incorrect image effects, inconsistent layout, and missing footer content—have been successfully resolved. More details are listed below.

Here is a list of changes made in this release

Category ID Description
Bug SPIREPPT-2873, SPIREPPT-2888 Fixes the issue where image effects were displayed incorrectly when converting PowerPoint to PDF.
Bug SPIREPPT-2951 Fixes the issue where layout became inconsistent when converting PowerPoint to PDF.
Bug SPIREPPT-3012 Fixes the issue where footer content was missing when converting ODP to PDF.
Click the link to download Spire.Presentation 10.11.4:
More information of Spire.Presentation new release or hotfix:

We are pleased to announce the release of Spire.PDF for Java 11.11.11. This version enhances the conversion from PDF to OFD and PDFA. It also fixes multiple issues related to PDF rendering, conversion, and performance, improving the library's stability and efficiency. Details are listed below.

Here is a list of changes made in this release

Category ID Description
Bug SPIREPDF-6604 Fixed the issue with incorrect drawing position of PDF footers.
Bug SPIREPDF-7005 Fixed the issue with excessive memory usage when loading documents.
Bug SPIREPDF-7448 Fixed the issue where converting PDF to PDF/A-2B would throw a "java.lang.StackOverflowError".
Bug SPIREPDF-7482 Fixed the issue with the display information content when adding a signature timestamp.
Bug SPIREPDF-7490 Fixed the issue where setting center alignment for a PdfGridCellContent did not take effect.
Bug SPIREPDF-7660 Fixed the issue with excessive time consumption when extracting images from PDF.
Bug SPIREPDF-7766 Fixed the issue with inconsistent image formats when converting PDF to OFD.
Bug SPIREPDF-7809 Fixed the issue where loading a PDF would report a "file structure is not valid" error.
Bug SPIREPDF-7814 Fixed the issue where the file could not be opened after drawing an image to the PDF.
Bug SPIREPDF-7827 Fixed the issue where setMaxLength() would throw a "StringIndexOutOfBoundsException".
Bug SPIREPDF-7830 Fixed the issue with incorrect content after converting PDF to PDF/A.
Click the link below to download Spire.PDF for Java 11.11.11:

We’re pleased to announce the release of Spire.XLS for Python 15.11.1. This version provides the RemoveDuplicates method that removes duplicate rows in a worksheet automatically, and fixes several known bugs as well. More details are as follows.

Here is a list of changes made in this release

Category ID Description
New feature SPIREXLS-5883 Added support for removing duplicate rows in a worksheet.
workbook = Workbook()
workbook.LoadFromFile(inputFile)
sheet = workbook.Worksheets[0]
sheet.RemoveDuplicates()
workbook.SaveToFile(outputFile, FileFormat.Version2013)
workbook.Dispose()
Bug SPIREXLS-5898 Fixed the issue where incorrect formulas occurred after calling Range.Move().
Bug SPIREXLS-5923 Fixed the issue where chart labels were missing when converting Excel to PDF.
Bug SPIREXLS-5924 Fixed the issue where output was inconsistent when converting Excel to PDF.
Bug SPIREXLS-5945 Fixed the issue where chart conversion failed using SaveChartAsImage.
Bug SPIREXLS-5992 Fixed the issue where formula calculations were incorrect when converting Excel to PDF.
Click the link to download Spire.XLS for Python 15.11.1:

We're pleased to announce the release of Spire.Doc 13.11.5. This version optimizes OfficeMath handling and enhances the display effect of formulas. More details are listed below.

Here is a list of changes made in this release

Category ID Description
Optimization - Optimized OfficeMath processing capabilities and enhanced the display effects of formula line wrapping and revisions.
Click the link to download Spire.Doc 13.11.5:
More information of Spire.Doc new release or hotfix:

We're pleased to announce the release of Spire.PDF 11.11.5. This version focuses on improving conversion accuracy and enhancing overall stability. Multiple issues related to image processing, OFD conversion, PDF printing, metadata handling, and exception errors have been successfully resolved. More details are listed below.

Here is a list of changes made in this release

Category ID Description
Bug SPIREPDF-3749 Fixed the issue where incorrect effects were applied to added image watermarks.
Bug SPIREPDF-5688 Fixed the issue with incorrect output when converting PDF to PDF/A.
Bug SPIREPDF-5889 Fixed the issue with incorrect output when converting PDF to images.
Bug SPIREPDF-6457 Fixed the issue where background images were lost when converting a PDF to images.
Bug SPIREPDF-7063 Fixed the issue with incorrect output when printing PDF documents.
Bug SPIREPDF-7102 Optimized time consumption and memory usage when converting images using the NetStandard DLL.
Bug SPIREPDF-7105, SPIREPDF-7572 Fixed the issue where bookmarks were lost when converting PDF to OFD.
Bug SPIREPDF-7562 Fixed the issue where converting PDF to images threw “System.NotImplementedException”.
Bug SPIREPDF-7749 Fixed the issue where custom properties added via SetCustomProperty were lost when converting PDF to OFD.
Bug SPIREPDF-7767 Fixed the issue where converting PDF to OFD threw “System.ArgumentOutOfRangeException”.
Bug SPIREPDF-7807 Fixed the issue where loading PDF files threw “System.NullReferenceException”.
Bug SPIREPDF-7808 Fixed the issue where "pdfbuttonfield.IconLayout.IsFitBounds = true" did not take effect.
Click the link to download Spire.PDF 11.11.5:
More information of Spire.PDF new release or hotfix:

We are pleased to announce the release of Spire.Presentation for Java 10.11.4. This update focuses on improving platform compatibility by addressing an issue that occurred when the library was used on the ColdFusion platform. The fix enhances reliability in cross-platform integration scenarios. Details are as follows:

The following is a list of changes included in this release.

Category ID Description
Bug SPIREPPT-3029 Fixed an issue where a NullPointerException was thrown when running the library on the ColdFusion platform.
Click the link below to download Spire.Presentation for Java 10.11.4:

We’re pleased to announce the release of Spire.Presentation for Python 10.11.1. This update mainly fixes the issues occurred when converting PowerPoint files into images. More details are given below.

Here is a list of changes made in this release

Category ID Description
Bug SPIREPPT-3011 Fixed the issue where replacing images with SVG caused incorrect rendering.
Bug SPIREPPT-3013 Fixed the issue where loading files threw an "Error reading adjustment value" exception.
Bug SPIREPPT-3026 Fixed the issue where converting PPTX to images threw an "Error reading adjustment value" exception.
Bug SPIREPPT-3030 Fixed the issue with incorrect formula rendering when converting PPTX to images.
Click the link to download Spire.Presentation for Python 10.11.1:

We're pleased to announce the release of Spire.Doc for Java 13.11.2. This version supports creating combination charts in Word, and also fixes some issues that occurred when converting Word to PDF, Markdown to Word, and loading, saving Word documents. More details are listed below.

Here is a list of changes made in this release

Category ID Description
New feature SPIREDOC-10972 Added support for creating combination charts in Word documents.
Document doc = new Document();
Paragraph paragraph = doc.addSection().addParagraph();
Chart chart = paragraph.appendChart(ChartType.Column, 450, 300).getChart();
chart.changeSeriesType("Series 3", ChartSeriesType.Line, true);
System.out.println(chart.getSeries().get(2).getChartType());
doc.saveToFile("ComboChart.docx"); 
Bug SPIREDOC-11412 SPIREDOC-11607 Fixed the issue that incorrect revisions were received.
Bug SPIREDOC-11482 Fixed the issue that SEQ fields failed to update.
Bug SPIREDOC-11547 Fixed the issue where the rendering effect was incorrect when converting Markdown to Word.
Bug SPIREDOC-11606 SPIREDOC-11626 Fixed the issue where converting Markdown to Word threw "java.lang.NullPointerException".
Bug SPIREDOC-11608 Fixed the issue where WPS links became invalid after saving Word documents.
Bug SPIREDOC-11616 Fixed the issue where the file size increased significantly after loading and saving Word documents.
Bug SPIREDOC-11620 SPIREDOC-11633 Fixed the issue that converting HTML to Word threw "com.spire.doc.packages.sprepx: Index is less than 0 or more than or equal to the list count".
Bug SPIREDOC-11627 Fixed the issue where the chart content was inconsistent when converting Word to PDF.
Bug SPIREDOC-11639 Fixed the issue that “SdtCheckBox.setChecked(false)” did not take effect.
Click the link below to download Spire.Doc for Java 13.11.2:

We're pleased to announce the release of Spire.PDF 11.11.1. This version adds support for enabling print logging in the NETStandard DLL. Meanwhile, it removes certain dependencies in NetCore and NetStandard platforms and includes several important bug fixes and optimizations to enhance performance and stability. More details are listed below.

Here is a list of changes made in this release

Category ID Description
Adjustment Removed dependencies on System.Security.Cryptography.Pkcs, System.Security.Permissions, and System.Security.Cryptography.Xml in NetCore and NetStandard platforms.
New feature Added support for enabling print logging in NETStandard DLL.
PdfDocument doc = new PdfDocument();
doc.LoadFromFile("in.pdf");
doc.PrintSettings.PrintLogger= new DefaultPrintLogger("log.txt");
doc.PrintSettings.PaperSize =PdfPaperSize.A4;
doc.Print();
Bug SPIREPDF-3758 Fixed the issue where background color was lost when converting PDF to images.
Bug SPIREPDF-4271 Fixed the issue where Arabic text content displayed incorrectly when converting PDF to PDF/A-3A.
Bug SPIREPDF-5542 Optimized the performance of text extraction and search in NETStandard DLL.
Bug SPIREPDF-7753 Fixed the issue where font effects were incorrect after text replacement.
Bug SPIREPDF-7771 Fixed the issue where validation failed when converting PDF to PDF/A-1B.
Bug SPIREPDF-7779 Fixed the issue where errors occurred when printing PDF documents using the NETStandard DLL on UOS x86 systems.
Click the link to download Spire.PDF 11.11.1:
More information of Spire.PDF new release or hotfix:
Friday, 31 October 2025 10:43

Spire Office 10.10.0 is released

We’re pleased to announce the release of Spire.Office 10.10.0. In this version, Spire.Doc supports extracting pages from a Word file to a separate file; Spire.XLS supports reading Office cached cloud fonts, Spire.Presentation supports setting fade-in or fade-out duration of audio; Spire.PDF supports validating the timestamp service URL. Meanwhile, a series of known issues are fixed in this update. More details are given below.

In this version, the most recent versions of Spire.Doc, Spire.PDF, Spire.XLS, Spire.Presentation, Spire.Barcode, Spire.DocViewer, and Spire.PDFViewer are included.

DLL Versions:

  • Spire.Doc.dll v13.10.3
  • Spire.Pdf.dll v11.10.4
  • Spire.XLS.dll v15.10.3
  • Spire.Presentation.dll v10.10.7
  • Spire.Barcode.dll v7.4.1
  • Spire.Email.dll v6.6.3
  • Spire.DocViewer.Forms.dll v8.9.4
  • Spire.PdfViewer.Asp.dll v8.2.6
  • Spire.PdfViewer.Forms.dll v8.2.6
  • Spire.Spreadsheet.dll v7.5.2
  • Spire.OfficeViewer.Forms.dll v8.8.0
  • Spire.DataExport.dll 4.9.0
  • Spire.DataExport.ResourceMgr.dll v2.1.0
Click the link to get the version Spire.Office 10.10.0:
More information of Spire.Office new release or hotfix:

Here is a list of changes made in this release

Spire.Doc

Category ID Description
New Feature SPIREDOC-11429 Added the ExtractPages(int index, int count) method to extract a specified range of pages from the document.
Document doc = new Document();
doc.LoadFromFile("sample.docx");
Document extractPage = doc.ExtractPages(0, 1);
extractPage.SaveToFile("result.docx");
Bug Fix SPIREDOC-11174 Fixed the issue where content layout was incorrect when converting Word to PDF.
Bug Fix SPIREDOC-11408 Fixed the issue where table styles were not rendered correctly when converting Word to PDF.
Bug Fix SPIREDOC-11527 Fixed the issue where fonts were not displayed correctly when converting Word to PDF.
Bug Fix SPIREDOC-11541 Fixed the issue where a "System.NotSupportedException" exception was thrown when loading a Markdown stream.
Bug Fix SPIREDOC-11544 Fixed the issue where text position was offset when converting Word to PDF.
Bug Fix SPIREDOC-11552 Fixed the issue where a "System.ArgumentException: Parent cannot be null" exception was thrown when getting the page count.
Bug Fix SPIREDOC-11553 Fixed the issue where restricted editing regions inside tables were not preserved correctly when saving Word document.

Spre.XLS

Category ID Description
New Feature SPIREXLS-5979 Adds support for reading Office cached cloud fonts by default, besides system font directories and in-memory fonts.
Adjustment - Modifies the parameter list of the AddDigitalSignature() and IDigitalSignatures.Add() methods.
Old:
AddDigitalSignature(X509Certificate2 certificate, string comments, DateTime signTime)

New: 
AddDigitalSignature(string certificatePath, string certificatePassword, string comments, DateTime signTime)
Bug Fix SPIREXLS-5908 Fixes the issue where extra blank pages were generated when converting Excel files to PDF.
Bug Fix SPIREXLS-5918 Fixes the issue where an “ArgumentOutOfRangeException” was thrown when loading XLSB files.
Bug Fix SPIREXLS-5933 Fixes the issue where a “FormatException” was thrown when adding HTML strings.
Bug Fix SPIREXLS-5985 Fixes the issue where files containing FILTER formulas caused errors when opened in Microsoft Excel.

Spire.Presentation

Category ID Description
New Feature SPIREPPT-2988 Added support for setting the fade-in or fade-out duration of audio.
// New Append Audio
Presentation pres = new Presentation();
FileStream from_stream = File.OpenRead(inputFile);
RectangleF audioRect = new RectangleF(50, 50, 100, 100);
IAudio audio = pres.Slides[0].Shapes.AppendAudioMedia(from_stream, audioRect);
// Set the duration of the starting fade for 13s
audio.FadeInDuration = 13000f;
// Set the duration of the ending fade for 40s
audio.FadeOutDuration = 10000f;
pres.SaveToFile(outputFile, FileFormat.Pptx2013);

// Retrieve existing documents
FileStream from_stream = File.OpenRead(inputFile);
Presentation presentation = new Presentation();
presentation.LoadFromStream(from_stream, FileFormat.Auto);
foreach (IShape shape in presentation.Slides[0].Shapes)
{
    if (shape is IAudio)
    {
        IAudio audio = shape as IAudio;
        // Set the duration of the starting fade for 13s
        audio.FadeInDuration = 13000f;
        // Set the duration of the ending fade for 20s
        audio.FadeOutDuration = 20000f;
    }
}
presentation.SaveToFile(outputFile, FileFormat.Pptx2013);
New Feature SPIREPPT-2990 Added support for cropping audio.
// New Append Audio
Presentation pres = new Presentation();
FileStream from_stream = File.OpenRead(inputFile);
RectangleF audioRect = new RectangleF(50, 50, 100, 100);
IAudio audio = pres.Slides[0].Shapes.AppendAudioMedia(from_stream, audioRect);
// Set the start trimming time 8 seconds
audio.TrimFromStart = 8000f;
// Set the end trimming time 13 seconds
audio.TrimFromEnd = 13000f;
pres.SaveToFile(outputFile, FileFormat.Pptx2013);

// Retrieve existing documents			
FileStream from_stream = File.OpenRead(inputFile);
Presentation presentation = new Presentation();
presentation.LoadFromStream(from_stream, FileFormat.Auto);
foreach (IShape shape in presentation.Slides[0].Shapes)
{
    if (shape is IAudio)
    {
        IAudio audio = shape as IAudio;
        // Set the start trimming time 8 seconds
        audio.TrimFromStart = 8000f;
        // Set the end trimming time 13 seconds
        audio.TrimFromEnd = 13000f;
    }
}
presentation.SaveToFile(outputFile, FileFormat.Pptx2013);
New Feature SPIREPPT-3002 Added support for setting transparency for tables.
table.Fill.Transparency = 0.5f; // Value range is 1-0, table default color is black
// Need to set specific table color, set color code as follows:
table[0, 0].FillFormat.FillType = Spire.Presentation.Drawing.FillFormatType.Solid;
table[0, 0].FillFormat.SolidColor.Color = Color.Orange;
Adjustment - Adjusted the usage of the AddDigitalSignature method.
Presentation ppt = new Presentation();
ppt.LoadFromFile("in.pptx");
//Add a digital signature,The parameters: string certificatePath, string certificatePassword, string comments, DateTime signTime
ppt.AddDigitalSignature("test.pfx", "e-iceblue", "111", DateTime.Now);
ppt.SaveToFile("result.pptx", Spire.Presentation.FileFormat.Pptx2016);
ppt.Dispose();
Bug Fix SPIREPPT-2887, SPIREPPT-2954, SPIREPPT-2989 Fixed the issue with incorrect content when converting PPT to PDF.
Bug Fix SPIREPPT-2997 Optimized saving time when creating PPT using templates.

Spire.PDF

Category ID Description
New Feature SPIREPDF-7465 Added support for validating the timestamp service URL address.
TSAHttpService timestampService = new TSAHttpService("http://time2.certum.pl");
TSAResponse response = timestampService.Check();
//if it is success to receive tsa token
if (response.Success)
  { formatter.TimestampService = timestampService; }
Bug Fix SPIREPDF-3890 SPIREPDF-5888 SPIREPDF-6680 Improved the conversion effect from PDF to Word.
Bug Fix SPIREPDF-5657 Fixed the issue of content loss after converting PDF to image.
Bug Fix SPIREPDF-6451 Fixed the issue of content loss when converting XPS to PDF.
Bug Fix SPIREPDF-7213 Fixed the issue of incorrect highlighted vertical text rendering.
Bug Fix SPIREPDF-7378 Fixed the issue of merging PDF documents throwing exceptions.
Bug Fix SPIREPDF-7680 Improved the font rendering effect when replacing content.
Bug Fix SPIREPDF-7693 Fixed the issue of adding timestamps throwing errors.
Bug Fix SPIREPDF-5303 SPIREPDF-7247 SPIREPDF-7719 Fixed the issue of inconsistent rendering when converting PDF to Tiff.
Bug Fix SPIREPDF-7729 Fixed the issue of loading PDF documents throwing "NullReferenceException".
Bug Fix SPIREPDF-7768 Fixed the issue of CreateTemplate() method throwing "IndexOutOfRangeException" when comparing PDFs.

Spire.PDFViewer

New Feature SPIREPDFVIEWER-616 Added support for “Find Previous” and “Find Next” functions. The pdfDocumentViewer1.SearchText() method has been deprecated and replaced with pdfDocumentViewer1.Find().
private void Form1_Load(object sender, EventArgs e)
{
    string pdfDoc = @"test.pdf";
    if (File.Exists(pdfDoc))
    {
        this.pdfDocumentViewer1.LoadFromFile(pdfDoc);
        this.pdfDocumentViewer1.Find("FindedText", Color.Empty);
    }
}
private void before_Click(object sender, EventArgs e)
{
    this.pdfDocumentViewer1.FindPrevious();
}

private void next_Click(object sender, EventArgs e)
{
    this.pdfDocumentViewer1.FindNext();
}