How to read JPEG in .NET
How can I read JPEG, GIF and PNG in .NET if I am using J#?
I know one solution:
I can use System,Drawing.Bitmap to read JPEG/GIF. Use Bitmap to do further processing and then save back as JPEG.
- Bitmaps take more space than JPEGs.
- This is not an elegant solution,
VJ

