We’re happy to announce the release of GroupDocs.Editor for Java 26.7, available as of July 2026. This release combines new features, enhancements, and bug fixes from the corresponding .NET 26.3, 26.6, and 26.6.1 updates, including support for TrueType Collection fonts, text-based PPT/PPS documents, and new PDF editing capabilities. It also introduces two new Spreadsheet conversion options and improves performance by removing the embedded imaging library.

What’s new in this release

  • [New feature] Add support of TrueType Collection font (EDITORNET-3019)
  • [New feature] Add support of text-based PPT and PPS (EDITORNET-3020)
  • [Improvement] Add support of new CSS properties (EDITORNET-3036)
  • [Improvement] Add support of XML processing instructions and XML-Stylesheet (EDITORNET-3037)
  • [Bug] Fix NRE in obfuscated assembly after HtmlCss was injected (EDITORNET-3022)
  • [New feature] Implement option to disable merging of horizontal cells when converting Spreadsheet documents (EDITORNET-3044)
  • [New feature] Implement option to disable emitting an empty bottom bogus row data when converting Spreadsheet documents (EDITORNET-3045)
  • [Improvement] Get rid of embedded imaging library and decrease byte size of final assembly (EDITORNET-3040)
  • [Bug] PDF output has different pagination after DOCX edit and save (EDITORNET-3017)
  • [Bug] Fix exception when creating and editing empty Email document (EDITORNET-3061)
  • [Bug] FileNotFoundException for Aspose.Common.Drawing 26.6 on .NET Framework 4.6.2 build (EDITORNET-3062)

Public API changes

  • Added new TtcFont type that represents a TrueType Collection (TTC) font and implements the FontResourceBase.
  • Added new setMergeEmptyAdjacentCells(boolean) / getMergeEmptyAdjacentCells() methods in SpreadsheetEditOptions.
  • Added new setExportBogusRowData(boolean) / getExportBogusRowData() methods in SpreadsheetEditOptions.

Both spreadsheet options are described in the corresponding article.

PDF editing

Starting from this release, GroupDocs.Editor for Java supports editing PDF documents through the same open–edit–save pipeline as other formats: load with PdfLoadOptions, edit with PdfEditOptions (pagination, page range, skip images), and save with PdfSaveOptions (password, compliance, font embedding). See the Edit PDF guide for details and code samples.

Code example

<dependency>
    <groupId>com.groupdocs</groupId>
    <artifactId>groupdocs-editor</artifactId>
    <version>26.7</version>
</dependency>

For detailed instructions, see Installation from GroupDocs Repository using Maven.

How to get the update

Maven

The package is available via the GroupDocs Maven repository.

Add the following dependency to your pom.xml:

<dependency>
    <groupId>com.groupdocs</groupId>
    <artifactId>groupdocs-editor</artifactId>
    <version>26.7</version>
</dependency>

Direct download

Download the latest release from the GroupDocs.Editor for Java 26.7 page.

Resources