I have this code:
i realised that the font that i choose is not being put in there..if i change the font it just shows me the same font 4ever...what i am doin wrong?PHP Code:System.Drawing.Graphics lol;
lol = this.CreateGraphics();
Font font = new Font("Verdana", 10, FontStyle.Bold);
lol.DrawString("oiiabcd", font, Brushes.Red, 0,0);
SizeF size = lol.MeasureString("HI", font);
lol.DrawLine(new Pen(Color.Red), 0, 100, size.Width, 100);
![]()




Reply With Quote