Retrieving information about Aspose.Font library

Get Aspose.Font Details like Product name, Version, License state information. Easily using Node.js with C++.

 

Aspose.Font for Node.js goes beyond just font manipulation. It equips you with valuable information about helping you make informed decisions for your projects. Here’s why accessing these details is crucial:

  • Version Compatibility: Ensure your code seamlessly integrates with the current Aspose.Font version. This helps you identify if updates are necessary due to library changes.
  • Feature Availability: By checking the version, you gain insight into the available features, allowing you to plan your project implementation effectively.
  • License Compliance: Retrieve the license state to verify if your usage adheres to the licensing agreement. This includes confirming if the library is licensed or if additional steps are required for commercial use.
  • Support and Maintenance: Knowing the product name and version empowers you to seek efficient support or troubleshoot problems more easily.

By accessing this essential library information, you can optimize your development experience and ensure you’re using Aspose.Font to its full potential.

Getting 'About' information.

The example below explains how to get information about the library with Node.js with C++.

Here AsposeFontAbout() method is called to retrieve information about the Aspose.Font product.

If there are no errors (errorCode == 0), it displays product information such as product name, version, and licensing status. Otherwise, it displays the error message.

Go to the Documentation for Node.js to get all the needed information to start working with the solution, Release Notes, Developer Guide, or Documentation for .NET - the Tutorials for the main features or the set of articles to teach you about font and other useful things.

Node.js code example getting 'About' information

    const AsposeFont = require('asposefontnodejs');

    AsposeFont().then(AsposeFontModule => {
        //AsposeFontAbout - Get info about Product
        const json = AsposeFontModule.AsposeFontAbout();
        console.log("AsposeFontAbout => %O",  json.errorCode == 0 ? JSON.parse(JSON.stringify(json).replace('"errorCode":0,"errorText":"",','')) : json.errorText);
    });
  

Support and Learning Resources