public interface OpenType
OpenType
接口代表OpenType和TrueType字体。
该界面使得可以从字体获取sfnt表。
一个特定的Font
对象可以实现这个接口。
有关TrueType和OpenType字体的更多信息,请参阅OpenType规范。 ( http://www.microsoft.com/typography/otspec/ )。
Modifier and Type | Field and Description |
---|---|
static int |
TAG_ACNT
重音附件。
|
static int |
TAG_AVAR
轴变化。
|
static int |
TAG_BASE
基准数据
|
static int |
TAG_BDAT
位图数据。
|
static int |
TAG_BLOC
位图位置。
|
static int |
TAG_BSLN
基线表。
|
static int |
TAG_CFF
紧凑字体格式(Type1字体)。
|
static int |
TAG_CMAP
字符到字形映射。
|
static int |
TAG_CVAR
CVT变化。
|
static int |
TAG_CVT
控制值表。
|
static int |
TAG_DSIG
电子签名。
|
static int |
TAG_EBDT
嵌入式位图数据。
|
static int |
TAG_EBLC
嵌入式位图位置。
|
static int |
TAG_EBSC
嵌入式位图缩放。
|
static int |
TAG_FDSC
字体描述符。
|
static int |
TAG_FEAT
功能名称
|
static int |
TAG_FMTX
字体指标。
|
static int |
TAG_FPGM
字体程序。
|
static int |
TAG_FVAR
字体变体。
|
static int |
TAG_GASP
网格拟合和扫描转换程序。
|
static int |
TAG_GDEF
字形定义。
|
static int |
TAG_GLYF
字形数据。
|
static int |
TAG_GPOS
字形定位
|
static int |
TAG_GSUB
雕文取代
|
static int |
TAG_GVAR
字形变异。
|
static int |
TAG_HDMX
水平设备指标。
|
static int |
TAG_HEAD
字体标题。
|
static int |
TAG_HHEA
水平度量标题。
|
static int |
TAG_HMTX
水平指标。
|
static int |
TAG_JSTF
理由。
|
static int |
TAG_JUST
理由。
|
static int |
TAG_KERN
字距。
|
static int |
TAG_LCAR
特征插入符号。
|
static int |
TAG_LOCA
位置索引
|
static int |
TAG_LTSH
线性阈值。
|
static int |
TAG_MAXP
最大配置文件。
|
static int |
TAG_MMFX
多个主字体指标
|
static int |
TAG_MMSD
多个主要补充数据。
|
static int |
TAG_MORT
雕文变态
|
static int |
TAG_NAME
命名表。
|
static int |
TAG_OPBD
光学界限。
|
static int |
TAG_OS2
OS / 2和Windows特定指标。
|
static int |
TAG_PCLT
PCL 5数据。
|
static int |
TAG_POST
PostScript信息。
|
static int |
TAG_PREP
CVT预制程序。
|
static int |
TAG_PROP
雕文属性。
|
static int |
TAG_TRAK
跟踪。
|
static int |
TAG_TYP1
Adobe Type 1字体数据。
|
static int |
TAG_VDMX
垂直设备指标。
|
static int |
TAG_VHEA
垂直度量标题。
|
static int |
TAG_VMTX
垂直指标。
|
Modifier and Type | Method and Description |
---|---|
byte[] |
getFontTable(int sfntTag)
将表作为指定标记的字节数组返回。
|
byte[] |
getFontTable(int sfntTag, int offset, int count)
将表的子集作为指定标记的字节数组返回。
|
byte[] |
getFontTable(String strSfntTag)
将表作为指定标记的字节数组返回。
|
byte[] |
getFontTable(String strSfntTag, int offset, int count)
将表的子集作为指定标记的字节数组返回。
|
int |
getFontTableSize(int sfntTag)
返回指定标记的表的大小。
|
int |
getFontTableSize(String strSfntTag)
返回指定标记的表的大小。
|
int |
getVersion()
返回
OpenType 字体的版本。
|
static final int TAG_CMAP
static final int TAG_HEAD
static final int TAG_NAME
static final int TAG_GLYF
static final int TAG_MAXP
static final int TAG_PREP
static final int TAG_HMTX
static final int TAG_KERN
static final int TAG_HDMX
static final int TAG_LOCA
static final int TAG_POST
static final int TAG_OS2
static final int TAG_CVT
static final int TAG_GASP
static final int TAG_VDMX
static final int TAG_VMTX
static final int TAG_VHEA
static final int TAG_HHEA
static final int TAG_TYP1
static final int TAG_BSLN
static final int TAG_GSUB
static final int TAG_DSIG
static final int TAG_FPGM
static final int TAG_FVAR
static final int TAG_GVAR
static final int TAG_CFF
static final int TAG_MMSD
static final int TAG_MMFX
static final int TAG_BASE
static final int TAG_GDEF
static final int TAG_GPOS
static final int TAG_JSTF
static final int TAG_EBDT
static final int TAG_EBLC
static final int TAG_EBSC
static final int TAG_LTSH
static final int TAG_PCLT
static final int TAG_ACNT
static final int TAG_AVAR
static final int TAG_BDAT
static final int TAG_BLOC
static final int TAG_CVAR
static final int TAG_FEAT
static final int TAG_FDSC
static final int TAG_FMTX
static final int TAG_JUST
static final int TAG_LCAR
static final int TAG_MORT
static final int TAG_OPBD
static final int TAG_PROP
static final int TAG_TRAK
int getVersion()
OpenType
字体的版本。
1.0表示为0x00010000。
OpenType
字体。
byte[] getFontTable(int sfntTag)
byte
数组是内存中字体数据的副本。
sfntTag
- 一个四位字符的代码,作为32位整数
byte
数组,它是包含与指定标签对应的字体数据的表。
byte[] getFontTable(String strSfntTag)
strSfntTag
- 一个四字符代码作为
String
byte
数组,它是包含与指定标签对应的字体数据的表。
byte[] getFontTable(int sfntTag, int offset, int count)
sfntTag
- 一个32位整数的四字符代码
offset
- 从表返回的第一个字节的索引
count
- 从表返回的字节数
sfntTag
并包含从
offset
字节开始并包括
count
字节的字节。
byte[] getFontTable(String strSfntTag, int offset, int count)
byte
数组是内存中字体数据的副本。
strSfntTag
- 一个四字符代码作为
String
offset
- 从表返回的第一个字节的索引
count
- 从表返回的字节数
strSfntTag
,并包含从
offset
字节开始的字节,包括
count
个字节。
int getFontTableSize(int sfntTag)
sfntTag
- 作为32位整数的四字符代码
int getFontTableSize(String strSfntTag)
strSfntTag
- 一个四字符代码作为
String
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.