C# read a JPEG from file and store as an Image

TK. picture TK. · Dec 1, 2008 · Viewed 97.1k times · Source

How can I read a JPEG on my filesystem and store it as a System.Drawing.Image within my C# code?

Answer

Gonzalo Quero picture Gonzalo Quero · Dec 1, 2008
Image i = Image.FromFile("image.jpg");

If you need more information, here is the link.