I have printing text on round label for cd. I have used following function. How can I render curved text into a Bitmap?
and my parameters are as follow.
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);
Will anyone help me how to calculate co-ordinates? I need to start text from left to right currently it shows from up. for any help thanks in advance.
Image link: http://www.4shared.com/download/26CjNyh_ce/Untitled.jpg?lgfp=3000