Browse our Products

Aspose.Font for Node.js via C++ 26.3 Release Notes

Improvements and Changes

Added new functions AsposeFontGetGlyphCount and AsposeFontGetMetrics

Public API and Backwards Incompatible Changes

Added APIs

```html
    json = AsposeFontModule.AsposeFontGetMetrics(font_file);
    console.log("AsposeFontGetMetrics => %O",  json.errorCode == 0 ? JSON.parse(JSON.stringify(json).replace('"errorCode":0,"errorText":"",','')) : json.errorText);

    json = AsposeFontModule.AsposeFontGetGlyphCount(font_file);
    console.log("AsposeFontGetGlyphCount => %O",  json.errorCode == 0 ? "Glyph count:" + json.glyphCount : json.errorText);
```