Hi Jerry,
We have implemented our new PDF in version 5.2. In our new PDf the API's are different. The code that I send in the previous update was in the legacy version. You can create the cjkfont in our new pdf by using the below code snippet:
//Set the font
PdfCjkStandardFont font1 = new PdfCjkStandardFont( PdfCjkFontFamily.SinoTypeSongLight ,20f);
//ChineseTraditionalFont
PdfCjkStandardFont font2 = new PdfCjkStandardFont(PdfCjkFontFamily.MonotypeHeiMedium, 20.5f);
g.DrawString("你好!", font1, brush,new PointF(20,20));
Please refer the below link for more details about Unicode Support:
http://64.78.15.37:89/products/pdf/windows/codesamples/viewsource.aspx?&zip_path=1417_Unicode_support_src.zip&lang=csharp&id=1417Please refer the documentation link for how to use the PdfDocument class:
http://www2.syncfusion.com/ug_62/pdf/default.htmlPlease try this and let me know if this helps.
Regards,
G.Yavana