Package org.apache.fop.afp.modca
Class MapCodedFont
- java.lang.Object
-
- org.apache.fop.afp.modca.AbstractAFPObject
-
- org.apache.fop.afp.modca.AbstractStructuredObject
-
- org.apache.fop.afp.modca.MapCodedFont
-
- All Implemented Interfaces:
Streamable
public class MapCodedFont extends AbstractStructuredObject
The Map Coded Font structured field maps a unique coded font resource local ID, which may be embedded one or more times within an object's data and descriptor, to the identifier of a coded font resource object. Additionally, the Map Coded Font structured field specifies a set of resource attributes for the coded font.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
MapCodedFont.FontDefinition
Private utility class used as a container for font attributes-
Nested classes/interfaces inherited from class org.apache.fop.afp.modca.AbstractAFPObject
AbstractAFPObject.Category, AbstractAFPObject.Type
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<MapCodedFont.FontDefinition>
fontList
the collection of map coded fonts (maximum of 254)-
Fields inherited from class org.apache.fop.afp.modca.AbstractAFPObject
LOG, SF_CLASS, SF_HEADER_LENGTH
-
-
Constructor Summary
Constructors Constructor Description MapCodedFont()
Main constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addFont(int fontReference, AFPFont font, int size, int orientation)
Add a font definition on the the map coded font object.void
writeToStream(java.io.OutputStream os)
DataStream objects must implement the writeToStream() method to write its data to the given OutputStream-
Methods inherited from class org.apache.fop.afp.modca.AbstractStructuredObject
writeContent, writeEnd, writeStart
-
Methods inherited from class org.apache.fop.afp.modca.AbstractAFPObject
copySF, copySF, truncate, writeChunksToStream, writeObjects
-
-
-
-
Field Detail
-
fontList
private final java.util.List<MapCodedFont.FontDefinition> fontList
the collection of map coded fonts (maximum of 254)
-
-
Method Detail
-
writeToStream
public void writeToStream(java.io.OutputStream os) throws java.io.IOException
DataStream objects must implement the writeToStream() method to write its data to the given OutputStream- Specified by:
writeToStream
in interfaceStreamable
- Overrides:
writeToStream
in classAbstractStructuredObject
- Parameters:
os
- the outputsteam stream- Throws:
java.io.IOException
- an I/O exception of some sort has occurred.
-
addFont
public void addFont(int fontReference, AFPFont font, int size, int orientation) throws MaximumSizeExceededException
Add a font definition on the the map coded font object.- Parameters:
fontReference
- the font number used as the resource identifierfont
- the fontsize
- the size of the fontorientation
- the orientation of the font- Throws:
MaximumSizeExceededException
- if the maximum number of fonts have been exceeded
-
-