Package com.aowagie.text.pdf
Class DefaultFontMapper.BaseFontParameters
- java.lang.Object
-
- com.aowagie.text.pdf.DefaultFontMapper.BaseFontParameters
-
- Enclosing class:
- DefaultFontMapper
static class DefaultFontMapper.BaseFontParameters extends java.lang.Object
A representation of BaseFont parameters.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean
cached
Whether the font is cached of not.(package private) boolean
embedded
The embedding for that font.(package private) java.lang.String
encoding
The encoding for that font.(package private) java.lang.String
fontName
The font name.(package private) byte[]
pfb
The font bytes for pfb.(package private) byte[]
ttfAfm
The font bytes for ttf and afm.
-
Constructor Summary
Constructors Modifier Constructor Description private
BaseFontParameters(java.lang.String fontName)
Constructs default BaseFont parameters.
-
-
-
Field Detail
-
fontName
java.lang.String fontName
The font name.
-
encoding
java.lang.String encoding
The encoding for that font.
-
embedded
boolean embedded
The embedding for that font.
-
cached
boolean cached
Whether the font is cached of not.
-
ttfAfm
byte[] ttfAfm
The font bytes for ttf and afm.
-
pfb
byte[] pfb
The font bytes for pfb.
-
-