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

cimagejpeg

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

Best Answer

Image i = Image.FromFile("image.jpg");

If you need more information, here is the link.