Type1Font
Inheritance: java.lang.Object, com.aspose.font.Font
public class Type1Font extends Font
表示 Type1 字体。
方法
convert(FontType fontType)
public Font convert(FontType fontType)
将 Font 转换为另一种格式。
Note: TTF Font type is now supported only.
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| fontType | FontType | 要转换成的字体格式类型。 |
Returns: Font - Font converted into new format.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| arg0 | java.lang.Object |
Returns: boolean
getAllGlyphIds()
public GlyphId[] getAllGlyphIds()
返回字体中所有可用字形 ID 的数组。字形 ID 是字形的唯一编号,取决于字体类型。Type1 字体的字形 ID 可以是 ( GlyphStringId ) 类的实例或 ( GlyphUInt32Id ) 类的实例。
Returns: com.aspose.font.GlyphId[]
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getEncoding()
public IFontEncoding getEncoding()
获取 Font 编码。
Returns: IFontEncoding - Font encoding.
getFontDefinition()
public FontDefinition getFontDefinition()
获取 Font 定义。
Returns: FontDefinition - Font definition.
getFontFamily()
public String getFontFamily()
获取 Font 家族。
Returns: java.lang.String - 字体族。
getFontName()
public String getFontName()
获取 Font 字体名称。
Returns: java.lang.String - 字体面名称。
getFontNames()
public MultiLanguageString getFontNames()
获取 Font 名称。
Returns: MultiLanguageString - Font names.
getFontSaver()
public IFontSaver getFontSaver()
获取 Font 保存功能。
Returns: IFontSaver - Font save functionality.
getFontStyle()
public int getFontStyle()
获取字体样式。这是一个在通用类型中计算并表示的值。
Returns: int - 字体样式。通常是 FontStyle 类常量标志值的组合或 0。
getFontType()
public FontType getFontType()
获取字体类型。返回 FontType.Type1 值。
Returns: FontType - Font type.
getGlyphAccessor()
public IGlyphAccessor getGlyphAccessor()
字体字形访问器。检索字形及其标识符。
Returns: IGlyphAccessor - Font glyph accessor.
getGlyphById(GlyphId id)
public Glyph getGlyphById(GlyphId id)
根据字形 ID 返回字形。字形 ID 是字形的唯一编号,取决于字体类型。Type1 字体的字形 ID 可以是 ( GlyphStringId ) 类的实例或 ( GlyphUInt32Id ) 类的实例。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| id | GlyphId |
Returns: Glyph
getGlyphById(String id)
public Glyph getGlyphById(String id)
根据字形 ID 返回字形。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| id | java.lang.String | 字形 ID。 |
Returns: Glyph - Glyph.
getGlyphById(long id)
public Glyph getGlyphById(long id)
根据字形 ID 返回字形。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| id | long | 字形 ID。 |
Returns: Glyph - Glyph.
getGlyphIdType()
public GlyphIdType getGlyphIdType()
字形 ID 类型规范。
Returns: GlyphIdType
getGlyphsForText(String text)
public GlyphId[] getGlyphsForText(String text)
获取文本的字形表示。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| text | java.lang.String | 输入文本。 |
Returns: com.aspose.font.GlyphId[] - GlyphId 数组。
getMetrics()
public IFontMetrics getMetrics()
获取 Font 度量。
Returns: IFontMetrics - Font metrics.
getNumGlyphs()
public int getNumGlyphs()
获取字体中的字形数量。
Returns: int - 字体中的字形数量。
getPostscriptNames()
public MultiLanguageString getPostscriptNames()
获取 PostScript 字体名称。
Returns: MultiLanguageString - Postscript Font names
getStyle()
public String getStyle()
获取字体样式。这是字体文件提供的原始字符串值。
Returns: java.lang.String - 字体样式。
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
open(FontDefinition fontDefinition)
public static Font open(FontDefinition fontDefinition)
打开字体,使用 FontDefinition 对象。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| fontDefinition | FontDefinition | 字体定义对象。 |
Returns: Font - Font loaded.
open(FontType fontType, byte[] fontData)
public static Font open(FontType fontType, byte[] fontData)
打开字体,使用字体类型和字体数据字节数组。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| fontType | FontType | 字体类型。 |
| fontData | byte[] | 用于加载字体的字节数组。 |
Returns: Font - Font loaded.
open(FontType fontType, StreamSource fontStreamSource)
public static Font open(FontType fontType, StreamSource fontStreamSource)
打开字体,使用字体类型和流源。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| fontType | FontType | 字体类型。 |
| fontStreamSource | StreamSource | 字体的流来源。 |
Returns: Font - Font loaded.
open(FontType fontType, String fileName)
public static Font open(FontType fontType, String fileName)
打开字体,使用字体类型和字体文件名。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| fontType | FontType | 字体类型。 |
| 文件名 | java.lang.String | 字体文件名。 |
Returns: Font - Font loaded.
save(OutputStream stream)
public void save(OutputStream stream)
将字体保存为原始格式。
Note: following Font types are supported for saving: New TTF fonts; TTF Font subsets; CFF Font subsets; Type1 Font subsets.
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| 流 | java.io.OutputStream | 用于保存字体的流。 |
save(String fileName)
public void save(String fileName)
将字体保存为原始格式。
Note: following Font types are supported for saving: New TTF fonts; TTF Font subsets; CFF Font subsets; Type1 Font subsets.
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| 文件名 | java.lang.String | 用于保存字体的文件。 |
saveToFormat(OutputStream stream, FontSavingFormats outFormat)
public void saveToFormat(OutputStream stream, FontSavingFormats outFormat)
将字体保存为指定格式。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| 流 | java.io.OutputStream | 用于保存字体的流 |
| outFormat | FontSavingFormats | 期望的格式 |
setFontFamily(String value)
public void setFontFamily(String value)
字体族的设置器尚未实现。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| 值 | java.lang.String | 新的字体族。 |
setFontName(String value)
public void setFontName(String value)
字体面名称的设置器尚未实现。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| 值 | java.lang.String | 新的字体面名称。 |
setStyle(String value)
public void setStyle(String value)
Style 设置器尚未实现。这是由字体文件提供的原始字符串值。
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| 值 | java.lang.String | 新的字体样式。 |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| 参数 | 类型 | 描述 |
|---|---|---|
| arg0 | long | |
| arg1 | int |