Donate

Did you find articles useful? Please make a donation

PNG ve GDI+ hatasi

img.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Png);

ile
A generic error occurred in GDI+
hatası alıyorsanız asağıdaki kodu deneyin

MemoryStream ms= new MemoryStream();
Bitmap bitmap = new Bitmap(img);
bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
ms.WriteTo(Response.OutputStream);

1 comment to PNG ve GDI+ hatası

Leave a Reply

  

  

  

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>