Package org.apache.fop.render.java2d
Interface FontMetricsMapper
-
- All Superinterfaces:
FontMetrics
- All Known Implementing Classes:
CustomFontMetricsMapper
,SystemFontMetricsMapper
public interface FontMetricsMapper extends FontMetrics
Adds method to retrieve the actualFont
for use byJava2DRenderer
s.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.awt.Font
getFont(int size)
Gets aFont
instance of the font that thisFontMetrics
describes in the desired size.-
Methods inherited from interface org.apache.fop.fonts.FontMetrics
getAscender, getBoundingBox, getCapHeight, getDescender, getEmbedFontName, getFamilyNames, getFontName, getFontType, getFontURI, getFullName, getKerningInfo, getMaxAscent, getStrikeoutPosition, getStrikeoutThickness, getUnderlinePosition, getUnderlineThickness, getWidth, getWidths, getXHeight, hasFeature, hasKerningInfo, isMultiByte
-
-
-
-
Method Detail
-
getFont
java.awt.Font getFont(int size)
Gets aFont
instance of the font that thisFontMetrics
describes in the desired size.- Parameters:
size
- font size- Returns:
- font with the desired characteristics.
-
-