How can I read a JPEG on my filesystem and store it as a System.Drawing.Image within my C# code?
Asked
Active
Viewed 1.1e+01k times
1 Answers
82
Image i = Image.FromFile("image.jpg");
If you need more information, here is the link.

Hossein Narimani Rad
- 31,361
- 18
- 86
- 116

Gonzalo Quero
- 3,303
- 18
- 23
-
9http://msdn.microsoft.com/en-us/library/system.drawing.image.fromfile.aspx for those not fluent in spansish... – Arjan Einbu Dec 01 '08 at 09:27
-
2Oops, sorry. Didn't notice the language. – Gonzalo Quero Dec 01 '08 at 10:16