我在CD的圆形标签上打印文字。我用过以下功能。 How can I render curved text into a Bitmap?
我的参数如下。
Brush br = Brushes.Black;
Font f = new Font("Courier", 12);
string str = "te testt - 123-456";
Point pt = new Point(35, 35);
DrawCurvedText(gFinal, str, pt, 110, 90, f, br);
str = "123-456-7890";
Point pt2 = new Point(35, 35);
DrawCurvedText(gFinal, str, pt2, 80, 90, f, br);
gFinal.DrawImage(bmp, 35, 130);
有人会帮助我如何计算坐标吗?我需要从左到右开始文本,目前它从上面显示。提前感谢任何帮助。
图片链接:http://www.4shared.com/download/26CjNyh_ce/Untitled.jpg?lgfp=3000