PDFSimpleFontValuesAccessor.java
1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.fontengine.fontmanagement;
import com.adobe.fontengine.font.InvalidFontException;
import com.adobe.fontengine.font.Rect;
import com.adobe.fontengine.font.UnsupportedFontException;
import com.adobe.fontengine.inlineformatting.css20.CSS20Attribute;
public abstract class PDFSimpleFontValuesAccessor {
public abstract String getFontFamily() throws InvalidFontException, UnsupportedFontException;
public abstract String getPostscriptName() throws InvalidFontException, UnsupportedFontException;
public abstract Rect getFontBBox() throws InvalidFontException, UnsupportedFontException;
public abstract int getFlags() throws InvalidFontException, UnsupportedFontException;
public abstract double getCapHeight() throws InvalidFontException, UnsupportedFontException;
public abstract double getXHeight() throws InvalidFontException, UnsupportedFontException;
public abstract double getAscent() throws InvalidFontException, UnsupportedFontException;
public abstract double getDescent() throws InvalidFontException, UnsupportedFontException;
public abstract double getLeading() throws InvalidFontException, UnsupportedFontException;
public abstract double getStemV() throws InvalidFontException, UnsupportedFontException;
public abstract double getItalicAngle() throws InvalidFontException, UnsupportedFontException;
public abstract CSS20Attribute.CSSStretchValue getFontStretch() throws InvalidFontException, UnsupportedFontException;
public abstract int getFontWeight() throws InvalidFontException, UnsupportedFontException;
public abstract String getGlyphName(int var1) throws InvalidFontException, UnsupportedFontException;
public abstract double getGlyphWidth(int var1) throws InvalidFontException, UnsupportedFontException;
}