Welcome to the ASP.NET MVC feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET MVC, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
The different only is the text with more or less non-Chinese chars.
you can try some text like:
大中华汉字测试 - 中文邮箱测试 - 012345678
大中华汉字- [email protected] - 012345678

font = new PdfCjkStandardFont(PdfCjkFontFamily.SinoTypeSongLight, watermarkConfig.fontSize);foreach (var po in pos){PdfGraphicsState state = graphics.Save();graphics.TranslateTransform(po.midpointX, po.midpointY);graphics.SetTransparency(watermarkConfig.transparency);graphics.RotateTransform(angle);graphics.DrawRectangle(PdfBrushes.Red, new RectangleF(-(po.len / 2), -(wmheight / 2), po.len, wmheight));//draw the rectangle.graphics.DrawString(wmstring, font, color, new RectangleF(-(po.len / 2), -(wmheight / 2), po.len, wmheight), format);//draw the textgraphics.Restore();}
Thanks.