com.aspose.html.drawing

Interface ITrueTypeFont



  • public interface ITrueTypeFont

    Declares methods for working with truetype font.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      float getAscent(float fontSize)
      Returns the ascent, in design units.
      com.aspose.html.internal.ms.System.IO.Stream getData()
      Open the stream with font data.
      float getDataSize()
      Returns the size of the font data in bytes
      float getDescent(float fontSize)
      Returns the descent, in design units.
      String getFamilyName()
      Get the name of the font family.
      String getFullFontName()
      This should be a combination of "FamilyName" and "SubFamilyName".
      String getSubFamilyName()
      The Font Subfamily name distinguishes the font in a group with the same Font Family name.
    • Method Detail

      • getFamilyName

        String getFamilyName()

        Get the name of the font family.

        Returns:
        Famiy name of font
      • getSubFamilyName

        String getSubFamilyName()

        The Font Subfamily name distinguishes the font in a group with the same Font Family name. This is assumed to address style (italic, oblique) and weight (light, bold, black, etc.). A font with no particular differences in weight or style (e.g. medium weight, not italic and fsSelection bit 6 set) should have the string "Regular" stored in this position.

        Returns:
        Subfamiy name of font
      • getFullFontName

        String getFullFontName()

        This should be a combination of "FamilyName" and "SubFamilyName". Exception: if the font is "Regular" as indicated in "SubFamilyName", then use only the family name contained in "FamilyName". An exception to the above definition of Full font name is for Microsoft platform strings for CFF OpenType fonts: in this case, the Full font name string must be identical to the PostScript FontName in the CFF Name INDEX.

        Returns:
        Full name of font
      • getData

        com.aspose.html.internal.ms.System.IO.Stream getData()

        Open the stream with font data. The caller is responsible for disposing the stream.

        Returns:
        Stream with the font data
      • getDataSize

        float getDataSize()

        Returns the size of the font data in bytes

        Returns:
        Size of the font data
      • getDescent

        float getDescent(float fontSize)

        Returns the descent, in design units. Corresponds to FontFamily.GetCellDescent.

        Parameters:
        fontSize - Size of the font.
        Returns:
        The descent.
      • getAscent

        float getAscent(float fontSize)

        Returns the ascent, in design units. Corresponds to FontFamily.GetCellAscent.

        Parameters:
        fontSize - Size of the font.
        Returns:
        The ascent.