Browse our Products

Aspose.Font for JavaScript via C++ 26.7 Release Notes

Improvements and Changes

Added new function AsposeFontGetGlyphNames

Public API and Backwards Incompatible Changes

Added APIs

```html

  var ffileFontGetGlyphNames = function (e) {
    const file_reader = new FileReader();
    file_reader.onload = (event) => {
      const json = AsposeFontGetGlyphNames(event.target.result, e.target.files[0].name);
      if (json.errorCode == 0) {
        document.getElementById('output').textContent = "Glyph names: " + json.glyphNames.join(";");
      }
      else document.getElementById('output').textContent = json.errorText;
    }
    file_reader.readAsArrayBuffer(e.target.files[0]);
  }
```