[ vampslayer @ 05.08.2011. 19:20 ] @
Probao sam nesto da nacram na stranici ali dobijem uvijek neke heroglife. Jel netko zna zasto? Code: protected void Page_Load(Object sender, EventArgs e) { Bitmap image = new Bitmap(300, 50); Graphics g = Graphics.FromImage(image); g.FillRectangle(Brushes.LightYellow, 0, 0, 300, 50); g.DrawRectangle(Pens.Red, 0, 0, 299, 49); Font font = new Font("Alba Super", 20, FontStyle.Regular); g.DrawString("This is a test.", font, Brushes.Blue, 10, 0); //Da sliku posaljem browseru image.Save(Response.OutputStream,System.Drawing.Imaging.ImageFormat.Gif); g.Dispose(); image.Dispose(); } |