How can I read a JPEG on my filesystem and store it as a System.Drawing.Image within my C# code?
+8
A:
Image i = Image.FromFile("image.jpg");
If you need more information: http://msdn.microsoft.com/en-us/library/system.drawing.image.fromfile.aspx
Gonzalo Quero
2008-12-01 09:18:35
http://msdn.microsoft.com/en-us/library/system.drawing.image.fromfile.aspx for those not fluent in spansish...
Arjan Einbu
2008-12-01 09:27:18
Oops, sorry. Didn't notice the language.
Gonzalo Quero
2008-12-01 10:16:26
A:
how to read bitmap image not open it only but usin filestream to read the file header and bitmap header?
koky
2010-04-09 15:22:27