Hello!
We are using Aspose.Words for Java 4.0.3 to save documents as RTF-files. Due to certain circumstances in our backend we figured out, that Aspose.Words writes the font info for that font as "\f18\fnil\fcharset0 Wingdings;" instead of "\f18\fnil\fcharset2 Wingdings;" as we expect and need it.
We tried the following code to alter the charset with no success (the written file has charset 0):
FontInfoCollection fontInfos = document.getFontInfos();
for (FontInfo fontInfo : fontInfos)
{
if (fontInfo.getName().equalsIgnoreCase("wingdings"))
{
fontInfo.setCharset(2);
}
}
Is this a bug or desired behaviour? Is there a chance to change the charset?
Thanks in advance
Klemens Schrage