Bitmap oBmp1 = new Bitmap(460, 60);
Graphics oGrp1 = Graphics.FromImage(oBmp1);
System.Drawing.Color ocolor = new Color();
string sText = "'sexybear'";
string sFont = "Verdana";
ocolor = Color.Blue;
SolidBrush oBrush = new SolidBrush(ocolor);
SolidBrush oBrushWrite = new SolidBrush(Color.White);
oGrp1.FillRectangle(oBrush, 0, 0, 500, 75);
Font oFont = new Font(sFont, 13);
PointF oPoint = new PointF(5F, 5F);
oGrp1.DrawString(sText, oFont, oBrushWrite, oPoint);
Response.ContentType = "image/jpeg";
oBmp1.Save(Response.OutputStream, ImageFormat.Jpeg);