Browse our Products

Aspose.OCR for Java 25.2.0 - Release Notes

What was changed

KeySummaryCategory
OCRJAVA‑411Recognition results can now be saved in hOCR format.New feature

Public API changes and backwards compatibility

This section lists all public API changes introduced in Aspose.OCR for Java 25.2.0 that may affect the code of existing applications.

Added public APIs:

Format.hOcr

Instructs Aspose.OCR library to save the recognition results in hOCR format - an open standard of data representation for formatted text obtained from OCR. It includes extracted text, style, layout, and other information.

Updated public APIs:

No changes.

Removed public APIs:

No changes.

Examples

The code samples below illustrate the changes introduced in this release:

Save recognition results to hOCR

AsposeOCR api = new AsposeOCR();
// Add an image to OcrInput object
OcrInput input = new OcrInput(InputType.SingleImage);
input.Add("source.png");
// Recognize image
ArrayList<RecognitionResult> results = api.Recognize(input);
// Save result
results[0].Save("result.txt", Format.hOcr);