Blazor-PDF icon indicating copy to clipboard operation
Blazor-PDF copied to clipboard

KhmerText, KhmerUnicode is not rendering correctly script

Open chhinsras opened this issue 4 years ago β€’ 2 comments

chhinsras avatar Nov 07 '20 16:11 chhinsras

// Test Khmer Font
            BaseFont khmerFont = BaseFont.CreateFont(@"Assets/KhmerOSBattambang-Regular.ttf", BaseFont.CP1252, BaseFont.EMBEDDED);
            Font font = new Font(khmerFont, 14);

            string khmerText = "αž€αž˜αŸ’αž˜αžœαž·αž’αžΈαžŸαž·αž€αŸ’αžŸαžΆ";

            pdf.Add(new Paragraph(khmerText, font));

chhinsras avatar Nov 07 '20 16:11 chhinsras

Screen Shot 2020-11-07 at 11 40 24 PM

When I change to BaseFont.IDENTITY_H. It is showing, but not properly script

chhinsras avatar Nov 07 '20 16:11 chhinsras