Bitmap bmp = new Bitmap(100, 100); Graphics g = Graphics.FromImage(bmp); g.Clear(Color.White); g.DrawString("abc", new Font("宋体", 12), new SolidBrush(Color.Red), 0, 0); System.IO.MemoryStream ms = new System.IO.MemoryStream(); bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Gif); Response.BinaryWrite(ms.GetBuffer());
时间: 2024-10-17 00:18:53