PNG ve GDI+ hatası

14 Jan
2010
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);
Be Sociable, Share!

1 Response to PNG ve GDI+ hatası

Avatar

PNG ve GDI+ Hatası « Web Tasarım Dünyası

April 6th, 2011 at 13:29

[…] Kaynak:http://www.cihantopcu.com/png-ve-gdi-hatasi.html GDI, PNG, PNG ve GDI+ Hatası […]

Comment Form

You must be logged in to post a comment.

top