public class PSTTFGenerator
extends java.lang.Object
PSGenerator
that contains some members specific for streaming
TrueType fonts to a PostScript document.Modifier and Type | Field and Description |
---|---|
static int |
MAX_BUFFER_SIZE
The buffer is used to store the font file in an array of hex-encoded strings.
|
Constructor and Description |
---|
PSTTFGenerator(org.apache.xmlgraphics.ps.PSGenerator gen)
Creates a new instance wrapping the given generator.
|
Modifier and Type | Method and Description |
---|---|
void |
endString()
Finishes writing a string by appending '00' and '>' to the end.
|
void |
startString()
Writes the '<' character that starts a string.
|
void |
streamBytes(byte[] byteArray,
int offset,
int length)
Writes bytes from the given byte array to the output.
|
void |
write(java.lang.String cmd)
Writes the given string to the output.
|
void |
writeln(java.lang.String cmd)
Writes the given string to the output, followed by a newline.
|
public static final int MAX_BUFFER_SIZE
public PSTTFGenerator(org.apache.xmlgraphics.ps.PSGenerator gen)
gen
- the PSGenerator to wrappublic void startString() throws java.io.IOException
java.io.IOException
public void write(java.lang.String cmd) throws java.io.IOException
cmd
- a stringjava.io.IOException
public void writeln(java.lang.String cmd) throws java.io.IOException
cmd
- a stringjava.io.IOException
public void streamBytes(byte[] byteArray, int offset, int length) throws java.io.IOException
byteArray
- byte[] a byte arrayoffset
- the position in the byte array where the streaming must startlength
- the number of bytes to stream. This MUST be less than
MAX_BUFFER_SIZE
- 1 since strings are suffixed by '00' (see Section 4.2 of
Adobe Technical Note #5012, The Type 42 Font Format Specification.).java.io.IOException
public void endString() throws java.io.IOException
java.io.IOException
Copyright 1999-2012 The Apache Software Foundation. All Rights Reserved.