I\'m doing some image processing, and I\'d like to individually read each pixel value in a JPEG and PNG images.
In my deployment scenario, it would be awkward for me
For jpeg, there is already a library called libjpeg, and there is libpng for png. The good news is that they compile right in and so target machines will not need dll files or anything. The bad news is they are in C :(
Also, don't even think of trying to read the files yourself. If you want an easy-to-read format, use PPM instead.