tags:

views:

7843

answers:

2

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

+8  A: 
Image i = Image.FromFile("image.jpg");

If you need more information: http://msdn.microsoft.com/en-us/library/system.drawing.image.fromfile.aspx

Gonzalo Quero
http://msdn.microsoft.com/en-us/library/system.drawing.image.fromfile.aspx for those not fluent in spansish...
Arjan Einbu
Oops, sorry. Didn't notice the language.
Gonzalo Quero
A: 

how to read bitmap image not open it only but usin filestream to read the file header and bitmap header?

koky
please,ارجو الرد من حد متخصص فى image processing
koky
If you've got a problem ask your own question rather than posting an answer. Stack Overflow is a question and answer site, not a discussion forum.
ChrisF