Browse our Products

Aspose.OMR for .NET 24.1.0 - Release Notes

What was changed

KeySummaryCategory
OMRNET‑950Added support for plugins that extend the functionality of the core library.New feature
n/aSimplified and streamlined the API by cleaning up deprecated methods.Enhancement

Public API changes and backwards compatibility

This section lists all public API changes introduced in Aspose.OMR for .NET 24.1.0 that may affect the code of existing applications.

Added public APIs:

The following public APIs have been added to Aspose.OMR for .NET 24.1.0:

Aspose.OMR.Api.OmrEngine.AddPlugin() method

This method extends the functionality of Aspose.OMR engine by incorporating additional features provided through a plugin.

Updated public APIs:

No changes

Removed public APIs:

The following public APIs have been removed from Aspose.OMR for .NET 24.1.0:

Aspose.OMR.Api.TemplateProcessor.RecognizeMultiPageTemplate() method

Use the universal Aspose.OMR.Api.TemplateProcessor.Recognize method.

Aspose.OMR.Api.TemplateProcessor.RecognizeImage() methods

Use the universal Aspose.OMR.Api.TemplateProcessor.Recognize method.

Usage examples

See the examples below to learn more about the changes introduced in this release:

Add handwriting recognition functionality

// Initialize Aspose.OMR API
Aspose.OMR.Api.OmrEngine omrEngine = new Aspose.OMR.Api.OmrEngine();
// Activate recognition of handwritten text
engine.AddPlugin(new HandwritingPlugin());