using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Drawing; using System.Drawing.Imaging; public partial class pildiloomine : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Bitmap pilt = new Bitmap(200, 200); Graphics g = Graphics.FromImage(pilt); g.DrawLine(Pens.Green, 10, 20, 10, 60); g.DrawString("Tere", new Font("Courier", 20), Brushes.Blue, 50, 20); Response.ContentType = "image/gif"; pilt.Save(Response.OutputStream, ImageFormat.Gif); } }