Browse our Products

Aspose.OMR for .NET 21.7 Release Notes

All Changes

KeySummaryCategory
OMRNET-201Implement horizontal layout
OMRNET-202Add WriteIn element

Public API and Backwards Incompatible Changes

Added APIs:

TypeTitleDescription
PropertyAspose.OMR.Generation.GlobalPageSettings.OrientationThe orientation of the Page
PropertyAspose.OMR.Model.RecognitionResult.ImagesList of Write-in fild Images

Updated APIs:

No Changes

Removed APIs:

No Changes

Usage Example for Orientation

using System;
using System.IO;
using Aspose.OMR;
using Aspose.OMR.Api;
using Aspose.OMR.Generation;
using Aspose.OMR.Model;

namespace ProgramOMR
{
    static void Main(string[] args)
    {
        // Create license
        SetLicense();   

        // Generate method
        Generate();
    }

    private static void SetLicense()
    {
        // Set license 
        License lic = new License();
        lic.SetLicense(@"D:\ProgramOMR\Properties\Aspose.Total.lic");
    }

    public static void Generate()
    {
        // Get file for generate template
        string path = @"D:\ProgramOMR\Generation\Grid.txt";

        OmrEngine engine = new OmrEngine();

        string[] imagePaths = new string[2];
        imagePaths[0] = @"D:\ProgramOMR\Generation\logo1.jpg";
        imagePaths[1] = @"D:\ProgramOMR\Generation\logo2.png";

        GlobalPageSettings settings = new GlobalPageSettings
        {
            Orientation = Orientation.Horizontal
        };

        GenerationResult result = engine.GenerateTemplate(path, settings);
        result.Save(@"D:\ProgramOMR\Results", "letter");
    }
}