gpt4 book ai didi

c# - 如何使用.Net system.drawing.drawstring编写从右到左的字符串(项目是一个dll)?

转载 作者:行者123 更新时间:2023-12-03 03:46:23 24 4
gpt4 key购买 nike

嗨我需要从字符串创建位图文件,目前我正在使用

Bitmap b = new Bitmap(106, 21);
Font f = new Font("Tahoma",5 );
StringFormat sf = new StringFormat();
int faLCID = new System.Globalization.CultureInfo("fa-IR").LCID;
sf.SetDigitSubstitution(faLCID, StringDigitSubstitute.National);
Brush brush = Brushes.Black;
Point pos = new Point(2, 2);
Graphics c = Graphics.FromImage(b);
c.FillRectangle(Brushes.White, 0, 0, m_width, m_length);
c.DrawString(stringText, f, brush, pos,sf);

它可以工作,但问题是它是从左到右书写的。如何使 DrawString() 从右向左书写?感谢x

最佳答案

传递StringFormatFlags.DirectionRightToLeft

关于c# - 如何使用.Net system.drawing.drawstring编写从右到左的字符串(项目是一个dll)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4820593/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com