how to draw string to an image from left bottom corner to right upper corner

AROUPSUNEWORE

New Member
Here is my code:\[code\] Graphics g = Graphics.FromImage(newImage); var myBrush = new SolidBrush(Color.FromArgb(32, 205, 205, 205)); g.DrawString(label, new Font("verdana", 10, GraphicsUnit.Pixel), myBrush, 10,10);\[/code\]It doesn't work very well about put the string on the image. This code can write very well but I couldn't put the string from left buttom corner to right upper corner. Do you have any suggestion?
 
Back
Top