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

Viewed 106887

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

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

If you need more information, here is the link.

Related