public class FontSavingArgs
When Aspose.Words saves a document to HTML or related formats and To decide whether to save a particular font resource, use the To save fonts into streams instead of files, use the
Property Getters/Setters Summary | ||
---|---|---|
boolean | getBold() | |
Indicates whether the current font is bold.
|
||
Document | getDocument() | |
Gets the document object that is being saved.
|
||
java.lang.String | getFontFamilyName() | |
Indicates the current font family name.
|
||
java.lang.String | getFontFileName() | |
void | setFontFileName(java.lang.Stringvalue) | |
Gets or sets the file name (without path) where the font will be saved to. | ||
java.io.OutputStream | getFontStream() | |
void | setFontStream(java.io.OutputStreamvalue) | |
Allows to specify the stream where the font will be saved to. | ||
boolean | isExportNeeded() | |
void | isExportNeeded(booleanvalue) | |
Allows to specify whether the current font will be exported as a font resource. Default is true .
|
||
boolean | isSubsettingNeeded() | |
void | isSubsettingNeeded(booleanvalue) | |
Allows to specify whether the current font will be subsetted before exporting as a font resource. | ||
boolean | getItalic() | |
Indicates whether the current font is italic.
|
||
boolean | getKeepFontStreamOpen() | |
void | setKeepFontStreamOpen(booleanvalue) | |
Specifies whether Aspose.Words should keep the stream open or close it after saving a font. | ||
java.lang.String | getOriginalFileName() | |
Gets the original font file name with an extension.
|
||
int | getOriginalFileSize() | |
Gets the original font file size.
|
public boolean getBold()
public Document getDocument()
public java.lang.String getFontFamilyName()
public java.lang.String getFontFileName() / public void setFontFileName(java.lang.String value)
This property allows you to redefine how the font file names are generated during export to HTML.
When the event is fired, this property contains the file name that was generated by Aspose.Words. You can change the value of this property to save the font into a different file. Note that file names must be unique.
Aspose.Words automatically generates a unique file name for every embedded font when exporting to HTML format. How the font file name is generated depends on whether you save the document to a file or to a stream.
When saving a document to a file, the generated font file name looks like <document base file name>.<original file name><optional suffix>.<extension>.
When saving a document to a stream, the generated font file name looks like Aspose.Words.<document guid>.<original file name><optional suffix>.<extension>.
public java.io.OutputStream getFontStream() / public void setFontStream(java.io.OutputStream value)
This property allows you to save fonts to streams instead of files during HTML export.
The default value is null
. When this property is null
, the font
will be saved to a file specified in the
public boolean isExportNeeded() / public void isExportNeeded(boolean value)
true
.
public boolean isSubsettingNeeded() / public void isSubsettingNeeded(boolean value)
Fonts can be exported as complete original font files or subsetted to include only the characters that are used in the document. Subsetting allows to reduce the resulting font resource size.
By default, Aspose.Words decides whether to perform subsetting or not by comparing the original font file size
with the one specified in
public boolean getItalic()
public boolean getKeepFontStreamOpen() / public void setKeepFontStreamOpen(boolean value)
Default is false
and Aspose.Words will close the stream you provided
in the true
to keep the stream open.
public java.lang.String getOriginalFileName()
This property contains the original file name of the current font if it is known. Otherwise it can be an empty string.
public int getOriginalFileSize()
This property contains the original file size of the current font if it is known. Otherwise it can be zero.