Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c#

image

jpeg

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

like image 245
TK. Avatar asked Dec 01 '08 09:12

TK.


1 Answers

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

If you need more information, here is the link.

like image 82
Gonzalo Quero Avatar answered Sep 29 '22 10:09

Gonzalo Quero