Hello,
I try the latest version, and I want to use "SimSun-ExtB" font to show "𠵅𠮟𠁉𠀦𠁽𠀐𠀑𠁫" (CJK extend, 4 byte character) :
UTF-8 XML file:
<Style Id="Style4" Font="SimSunB" Brush="Black" />
<Text Style="Style4">𠵅𠮟𠁉𠀦𠁽𠀐𠀑𠁫</Text>
C# file:
report.Delegates.LoadFontDelegate = (path) =>
{
if (path == "SimSunB")
return new System.IO.FileStream("C:\\simsunb.ttf", System.IO.FileMode.Open);
return null;
};
But in the consequence, these Unicode characters can't be shown.
In addition, the PDF converted by word2010 can show these characters. it embed "SimSun-ExtB" font too.
I attach my xml file. would you like to reproduce the issue and help me to fix it?