Uses of Class
java.awt.font.GlyphVector
-
Packages that use GlyphVector 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.awt.font 提供与字体相关的类和界面。 -
-
Uses of GlyphVector in java.awt
Methods in java.awt that return GlyphVector Modifier and Type 方法 描述 GlyphVector
Font. createGlyphVector(FontRenderContext frc, char[] chars)
通过在Font中基于Unicode cmap将字符映射到字形,创建一个Font
。GlyphVector
Font. createGlyphVector(FontRenderContext frc, int[] glyphCodes)
通过在Font中基于Unicode cmap将字符映射到字形,创建一个Font
。GlyphVector
Font. createGlyphVector(FontRenderContext frc, String str)
通过在Font中基于Unicode cmap将字符映射到字形,创建一个Font
。GlyphVector
Font. createGlyphVector(FontRenderContext frc, CharacterIterator ci)
通过在Font中基于Unicode cmap将指定的字符映射到字形,创建一个Font
。GlyphVector
Font. layoutGlyphVector(FontRenderContext frc, char[] text, int start, int limit, int flags)
返回一个新的GlyphVector
对象,如果可能,执行文本的全面布局。Methods in java.awt with parameters of type GlyphVector Modifier and Type 方法 描述 abstract void
Graphics2D. drawGlyphVector(GlyphVector g, float x, float y)
使用Graphics2D
上下文的呈现属性呈现指定的GlyphVector
的文本。 -
Uses of GlyphVector in java.awt.font
Methods in java.awt.font with parameters of type GlyphVector Modifier and Type 方法 描述 abstract boolean
GlyphVector. equals(GlyphVector set)
测试指定的GlyphVector
完全等于此GlyphVector
。
-