public class FontStoringArgs extends Object
Parameters for font storage in SVG
Constructor and Description |
---|
FontStoringArgs() |
Modifier and Type | Method and Description |
---|---|
InputStream |
getDestFontStream()
Gets or sets the destination stream where font data will be written to if FontStoreType is set to Stream.
|
boolean |
getDisposeStream()
Gets or sets a value indicating whether destionation stream should be disposed.
|
String |
getFontFileUri()
Gets or sets the font file URI.
|
int |
getFontStoreType()
Gets or sets a value indicating how to store font.
|
String |
getSourceFontFileName()
Gets the source font file name.
|
InputStream |
getSourceFontStream()
Gets the source font stream, where font data will be read from.
|
void |
setDestFontStream(InputStream value)
Gets or sets the destination stream where font data will be written to if FontStoreType is set to Stream.
|
void |
setDisposeStream(boolean value)
Gets or sets a value indicating whether destionation stream should be disposed.
|
void |
setFontFileUri(String value)
Gets or sets the font file URI.
|
void |
setFontStoreType(int value)
Gets or sets a value indicating how to store font.
|
public final String getSourceFontFileName()
Gets the source font file name.
public final InputStream getSourceFontStream()
Gets the source font stream, where font data will be read from.
public final InputStream getDestFontStream()
Gets or sets the destination stream where font data will be written to if FontStoreType is set to Stream.
public final void setDestFontStream(InputStream value)
Gets or sets the destination stream where font data will be written to if FontStoreType is set to Stream.
value
- The destination font stream.public final String getFontFileUri()
Gets or sets the font file URI.
public final void setFontFileUri(String value)
Gets or sets the font file URI.
value
- The font file URI.public final boolean getDisposeStream()
Gets or sets a value indicating whether destionation stream should be disposed.
true
if [dispose stream]; otherwise, false
.public final void setDisposeStream(boolean value)
Gets or sets a value indicating whether destionation stream should be disposed.
value
- true
if [dispose stream]; otherwise, false
.public final int getFontStoreType()
Gets or sets a value indicating how to store font.
public final void setFontStoreType(int value)
Gets or sets a value indicating how to store font.
value
- Do not store font, store embedded in SVG file, or store in provided destination stream.