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);
2.1m questions
2.1m answers
60 comments
57.0k users