public class PdfFontEmbeddingMode
Example:
// Load the document to render
Document doc = new Document(getMyDir() + "Rendering.docx");
// To disable embedding standard windows font use the PdfSaveOptions and set the EmbedStandardWindowsFonts property to false
PdfSaveOptions options = new PdfSaveOptions();
options.setFontEmbeddingMode(PdfFontEmbeddingMode.EMBED_NONE);
// The output PDF will be saved without embedding standard windows fonts
doc.save(getArtifactsDir() + "Rendering.DisableEmbedWindowsFonts.pdf", options);
Field Summary | ||
---|---|---|
static final int | EMBED_ALL | |
Aspose.Words embeds all fonts.
|
||
static final int | EMBED_NONSTANDARD | |
Aspose.Words embeds all fonts excepting standard Windows fonts Arial and Times New Roman.
Only Arial and Times New Roman fonts are affected in this mode because MS Word doesn't embed
only these fonts when saving document to PDF.
|
||
static final int | EMBED_NONE | |
Aspose.Words do not embed any fonts.
|
public static final int EMBED_ALL
public static final int EMBED_NONSTANDARD
public static final int EMBED_NONE