public class SystemFontSource
Example:
Shows how to access a document's system font source and set font substitutes.Document doc = new Document(); doc.setFontSettings(new FontSettings()); // By default, a blank document always contains a system font source. Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); SystemFontSource systemFontSource = (SystemFontSource) doc.getFontSettings().getFontsSources()[0]; Assert.assertEquals(FontSourceType.SYSTEM_FONTS, systemFontSource.getType()); Assert.assertEquals(0, systemFontSource.getPriority()); if (SystemUtils.IS_OS_WINDOWS) { final String FONTS_PATH = "C:\\WINDOWS\\Fonts"; Assert.assertEquals(FONTS_PATH.toLowerCase(), SystemFontSource.getSystemFontFolders()[0].toLowerCase()); } for (String systemFontFolder : SystemFontSource.getSystemFontFolders()) { System.out.println(systemFontFolder); } // Set a font that exists in the Windows Fonts directory as a substitute for one that does not. doc.getFontSettings().getSubstitutionSettings().getFontInfoSubstitution().setEnabled(true); doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().addSubstitutes("Kreon-Regular", "Calibri"); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular"))); Assert.assertTrue(IterableUtils.toString(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")).contains("Calibri")); // Alternatively, we could add a folder font source in which the corresponding folder contains the font. FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), false); doc.getFontSettings().setFontsSources(new FontSourceBase[]{systemFontSource, folderFontSource}); Assert.assertEquals(2, doc.getFontSettings().getFontsSources().length); // Resetting the font sources still leaves us with the system font source as well as our substitutes. doc.getFontSettings().resetFontSources(); Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); Assert.assertEquals(FontSourceType.SYSTEM_FONTS, doc.getFontSettings().getFontsSources()[0].getType()); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")));
Constructor Summary |
---|
SystemFontSource()
Ctor. |
SystemFontSource(intpriority)
Ctor. |
Property Getters/Setters Summary | ||
---|---|---|
int | getPriority() | |
Returns the font source priority.
|
||
int | getType() | |
Returns the type of the font source.
The value of the property is FontSourceType integer constant. |
||
IWarningCallback | getWarningCallback() | |
void | ||
Called during processing of font source when an issue is detected that might result in formatting fidelity loss. |
Method Summary | ||
---|---|---|
java.util.ArrayList<PhysicalFontInfo> | getAvailableFonts() | |
Returns list of fonts available via this source.
|
||
static java.lang.String[] | getSystemFontFolders() | |
Returns system font folders or empty array if folders are not accessible.
|
public SystemFontSource()
Example:
Shows how to access a document's system font source and set font substitutes.Document doc = new Document(); doc.setFontSettings(new FontSettings()); // By default, a blank document always contains a system font source. Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); SystemFontSource systemFontSource = (SystemFontSource) doc.getFontSettings().getFontsSources()[0]; Assert.assertEquals(FontSourceType.SYSTEM_FONTS, systemFontSource.getType()); Assert.assertEquals(0, systemFontSource.getPriority()); if (SystemUtils.IS_OS_WINDOWS) { final String FONTS_PATH = "C:\\WINDOWS\\Fonts"; Assert.assertEquals(FONTS_PATH.toLowerCase(), SystemFontSource.getSystemFontFolders()[0].toLowerCase()); } for (String systemFontFolder : SystemFontSource.getSystemFontFolders()) { System.out.println(systemFontFolder); } // Set a font that exists in the Windows Fonts directory as a substitute for one that does not. doc.getFontSettings().getSubstitutionSettings().getFontInfoSubstitution().setEnabled(true); doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().addSubstitutes("Kreon-Regular", "Calibri"); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular"))); Assert.assertTrue(IterableUtils.toString(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")).contains("Calibri")); // Alternatively, we could add a folder font source in which the corresponding folder contains the font. FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), false); doc.getFontSettings().setFontsSources(new FontSourceBase[]{systemFontSource, folderFontSource}); Assert.assertEquals(2, doc.getFontSettings().getFontsSources().length); // Resetting the font sources still leaves us with the system font source as well as our substitutes. doc.getFontSettings().resetFontSources(); Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); Assert.assertEquals(FontSourceType.SYSTEM_FONTS, doc.getFontSettings().getFontsSources()[0].getType()); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")));
public SystemFontSource(int priority)
priority
- Font source priority. See the Example:
Shows how to access a document's system font source and set font substitutes.Document doc = new Document(); doc.setFontSettings(new FontSettings()); // By default, a blank document always contains a system font source. Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); SystemFontSource systemFontSource = (SystemFontSource) doc.getFontSettings().getFontsSources()[0]; Assert.assertEquals(FontSourceType.SYSTEM_FONTS, systemFontSource.getType()); Assert.assertEquals(0, systemFontSource.getPriority()); if (SystemUtils.IS_OS_WINDOWS) { final String FONTS_PATH = "C:\\WINDOWS\\Fonts"; Assert.assertEquals(FONTS_PATH.toLowerCase(), SystemFontSource.getSystemFontFolders()[0].toLowerCase()); } for (String systemFontFolder : SystemFontSource.getSystemFontFolders()) { System.out.println(systemFontFolder); } // Set a font that exists in the Windows Fonts directory as a substitute for one that does not. doc.getFontSettings().getSubstitutionSettings().getFontInfoSubstitution().setEnabled(true); doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().addSubstitutes("Kreon-Regular", "Calibri"); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular"))); Assert.assertTrue(IterableUtils.toString(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")).contains("Calibri")); // Alternatively, we could add a folder font source in which the corresponding folder contains the font. FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), false); doc.getFontSettings().setFontsSources(new FontSourceBase[]{systemFontSource, folderFontSource}); Assert.assertEquals(2, doc.getFontSettings().getFontsSources().length); // Resetting the font sources still leaves us with the system font source as well as our substitutes. doc.getFontSettings().resetFontSources(); Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); Assert.assertEquals(FontSourceType.SYSTEM_FONTS, doc.getFontSettings().getFontsSources()[0].getType()); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")));
public int getPriority()
This value is used when there are fonts with the same family name and style in different font sources. In this case Aspose.Words selects the font from the source with the higher priority value.
The default value is 0.
Example:
Shows how to use a font file in the local file system as a font source.FileFontSource fileFontSource = new FileFontSource(getMyDir() + "Alte DIN 1451 Mittelschrift.ttf", 0); Document doc = new Document(); doc.setFontSettings(new FontSettings()); doc.getFontSettings().setFontsSources(new FontSourceBase[]{fileFontSource}); Assert.assertEquals(getMyDir() + "Alte DIN 1451 Mittelschrift.ttf", fileFontSource.getFilePath()); Assert.assertEquals(FontSourceType.FONT_FILE, fileFontSource.getType()); Assert.assertEquals(0, fileFontSource.getPriority());
public int getType()
Example:
Shows how to access a document's system font source and set font substitutes.Document doc = new Document(); doc.setFontSettings(new FontSettings()); // By default, a blank document always contains a system font source. Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); SystemFontSource systemFontSource = (SystemFontSource) doc.getFontSettings().getFontsSources()[0]; Assert.assertEquals(FontSourceType.SYSTEM_FONTS, systemFontSource.getType()); Assert.assertEquals(0, systemFontSource.getPriority()); if (SystemUtils.IS_OS_WINDOWS) { final String FONTS_PATH = "C:\\WINDOWS\\Fonts"; Assert.assertEquals(FONTS_PATH.toLowerCase(), SystemFontSource.getSystemFontFolders()[0].toLowerCase()); } for (String systemFontFolder : SystemFontSource.getSystemFontFolders()) { System.out.println(systemFontFolder); } // Set a font that exists in the Windows Fonts directory as a substitute for one that does not. doc.getFontSettings().getSubstitutionSettings().getFontInfoSubstitution().setEnabled(true); doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().addSubstitutes("Kreon-Regular", "Calibri"); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular"))); Assert.assertTrue(IterableUtils.toString(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")).contains("Calibri")); // Alternatively, we could add a folder font source in which the corresponding folder contains the font. FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), false); doc.getFontSettings().setFontsSources(new FontSourceBase[]{systemFontSource, folderFontSource}); Assert.assertEquals(2, doc.getFontSettings().getFontsSources().length); // Resetting the font sources still leaves us with the system font source as well as our substitutes. doc.getFontSettings().resetFontSources(); Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); Assert.assertEquals(FontSourceType.SYSTEM_FONTS, doc.getFontSettings().getFontsSources()[0].getType()); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")));
public IWarningCallback getWarningCallback() / public void setWarningCallback(IWarningCallback value)
Example:
Shows how to call warning callback when the font sources working with.@Test public void fontSourceWarning() { FontSettings settings = new FontSettings(); settings.setFontsFolder("bad folder?", false); FontSourceBase source = settings.getFontsSources()[0]; FontSourceWarningCollector callback = new FontSourceWarningCollector(); source.setWarningCallback(callback); // Get the list of fonts to call warning callback. ArrayList<PhysicalFontInfo> fontInfos = source.getAvailableFonts(); Assert.assertEquals("Error loading font from the folder \"bad folder?\": ", callback.FontSubstitutionWarnings.get(0).getDescription()); } private static class FontSourceWarningCollector implements IWarningCallback { /// <summary> /// Called every time a warning occurs during processing of font source. /// </summary> public void warning(WarningInfo info) { FontSubstitutionWarnings.warning(info); } public WarningInfoCollection FontSubstitutionWarnings = new WarningInfoCollection(); }
public java.util.ArrayList<PhysicalFontInfo> getAvailableFonts()
Example:
Shows how to list available fonts.// Configure Aspose.Words to source fonts from a custom folder, and then print every available font. FontSourceBase[] folderFontSource = {new FolderFontSource(getFontsDir(), true)}; for (PhysicalFontInfo fontInfo : folderFontSource[0].getAvailableFonts()) { System.out.println(MessageFormat.format("FontFamilyName : {0}", fontInfo.getFontFamilyName())); System.out.println(MessageFormat.format("FullFontName : {0}", fontInfo.getFullFontName())); System.out.println(MessageFormat.format("Version : {0}", fontInfo.getVersion())); System.out.println(MessageFormat.format("FilePath : {0}\n", fontInfo.getFilePath())); }
public static java.lang.String[] getSystemFontFolders() throws java.lang.Exception
Example:
Shows how to access a document's system font source and set font substitutes.Document doc = new Document(); doc.setFontSettings(new FontSettings()); // By default, a blank document always contains a system font source. Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); SystemFontSource systemFontSource = (SystemFontSource) doc.getFontSettings().getFontsSources()[0]; Assert.assertEquals(FontSourceType.SYSTEM_FONTS, systemFontSource.getType()); Assert.assertEquals(0, systemFontSource.getPriority()); if (SystemUtils.IS_OS_WINDOWS) { final String FONTS_PATH = "C:\\WINDOWS\\Fonts"; Assert.assertEquals(FONTS_PATH.toLowerCase(), SystemFontSource.getSystemFontFolders()[0].toLowerCase()); } for (String systemFontFolder : SystemFontSource.getSystemFontFolders()) { System.out.println(systemFontFolder); } // Set a font that exists in the Windows Fonts directory as a substitute for one that does not. doc.getFontSettings().getSubstitutionSettings().getFontInfoSubstitution().setEnabled(true); doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().addSubstitutes("Kreon-Regular", "Calibri"); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular"))); Assert.assertTrue(IterableUtils.toString(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")).contains("Calibri")); // Alternatively, we could add a folder font source in which the corresponding folder contains the font. FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), false); doc.getFontSettings().setFontsSources(new FontSourceBase[]{systemFontSource, folderFontSource}); Assert.assertEquals(2, doc.getFontSettings().getFontsSources().length); // Resetting the font sources still leaves us with the system font source as well as our substitutes. doc.getFontSettings().resetFontSources(); Assert.assertEquals(1, doc.getFontSettings().getFontsSources().length); Assert.assertEquals(FontSourceType.SYSTEM_FONTS, doc.getFontSettings().getFontsSources()[0].getType()); Assert.assertEquals(1, IterableUtils.size(doc.getFontSettings().getSubstitutionSettings().getTableSubstitution().getSubstitutes("Kreon-Regular")));