[ artriba @ 07.02.2008. 17:44 ] @
Recimo ovaj kod uredno radi na IE7 dok na Safariju ili FF dobijam hijeroglife
Code:
private void Page_Load(object sender, System.EventArgs e)
  {
   
   Bitmap bm = new Bitmap(200, 200);
   Graphics g = Graphics.FromImage(bm);
   g.FillRectangle(brush, 50, 50, 100, 100);
   g.DrawLine(Pens.WhiteSmoke, 10, 10, 180, 10);
   g.DrawLine(Pens.White, 10, 10, 10, 180);
   bm.Save(Response.OutputStream,ImageFormat.Jpeg);
 
  }
[ Shadowed @ 07.02.2008. 18:08 ] @
Dodaj Response.ContentType = "image/jpg"; pre save-a. A korisno je i Response.AppendHeader("content-disposition", "attachment; filename=imeslike.jpg");
[ mmix @ 07.02.2008. 18:08 ] @
Moras da podesis contenttype na "image/jpeg"

[ artriba @ 07.02.2008. 18:27 ] @
thx guys