Interface SVGFont
-
- All Known Implementing Classes:
AWTSVGFont
public interface SVGFont
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description float
centerBaseline()
@NotNull Glyph
codepointGlyph(char codepoint)
static float
defaultFontSize()
float
effectiveEmHeight()
float
effectiveExHeight()
static float
emFromEx(float ex)
static float
exFromEm(float em)
@NotNull java.lang.String
family()
float
hangingBaseline()
float
mathematicalBaseline()
float
middleBaseline()
float
romanBaseline()
int
size()
float
textOverBaseline()
float
textUnderBaseline()
-
-
-
Method Detail
-
defaultFontSize
static float defaultFontSize()
-
exFromEm
static float exFromEm(float em)
-
emFromEx
static float emFromEx(float ex)
-
codepointGlyph
@NotNull @NotNull Glyph codepointGlyph(char codepoint)
-
family
@NotNull @NotNull java.lang.String family()
-
size
int size()
-
effectiveExHeight
float effectiveExHeight()
-
effectiveEmHeight
float effectiveEmHeight()
-
mathematicalBaseline
float mathematicalBaseline()
-
hangingBaseline
float hangingBaseline()
-
romanBaseline
float romanBaseline()
-
centerBaseline
float centerBaseline()
-
middleBaseline
float middleBaseline()
-
textUnderBaseline
float textUnderBaseline()
-
textOverBaseline
float textOverBaseline()
-
-