Any C++ examples available to convert raw pixel data obtained from glReadPixels to JPEG format and back?
feedback
|
|
You can use ImageMagick library to convert raw data to the jpeg image data, and opposite. Using the same library, you can convert jpeg image data into raw (RGB) data. | |||
|
feedback
|
|
I'm not sure if OpenGL has support for dealing with JPEG images. It's not what the library is really for. Once you've got access to the pixel data, you should be able to use easily OpenCV to write the image to JPEG (or any other format), though. Here's some pseudo-code to get you going.
Other libraries for dealing with JPEG also exist, if you look around. | |||||||||||
feedback
|
|
Use an external library for that. I'll recommend DevIL, your number one Swiss Army Knife for handling image files. You'll just need to
Simple. | |||
|
feedback
|