Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Aspose.OMR for C++ 23.7.0 lets you define the physical dimensions (in millimeters, inches, or pixels) of your OMR forms during generation. This feature ensures consistency and eliminates the need for manual resizing after form creation.
Please check out the following C++ code example which highlights how to set the page size of your OMR forms.
System::SharedPtr<Api::OmrEngine> engine = System::MakeObject<Api::OmrEngine>(); System::SharedPtr<Api::GlobalPageSettings> settings = System::MakeObject<Api::GlobalPageSettings>(); settings->setPaperSize(Api::PaperSize::Letter); System::SharedPtr<Generation::GenerationResult> result = engine->GenerateTemplate(markupPath, nullptr, settings);
Source*
This C++ OMR API release introduces a new public API member:
Api::PaperSize
The newly added enumeration Api::PaperSize provides predefined page size options, such as A4, Letter, Legal, and more. You can also specify custom page dimensions in millimeters, inches, or pixels.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OMR for C++ 23.7.0 Release Notes.