How to save stream as image and store the image in temp files?
Try
Image img = System.Drawing.Image.FromStream(myStream); img.Save(System.IO.Path.GetTempPath() + "\myImage.Jpeg", ImageFormat.Jpeg);
1.4m articles
1.4m replys
5 comments
57.0k users