Saving the OpenGL Graphics as a JPEG

Hello,
I have a Layout drawn using the OpenGL Commands,the Layout may be a Rectangle or anything…I want to know how can i save it as a JPEG.
not only JPEG is there any option for BMP files…
waiting for ur reply,
Kalpesh.

Hi !

If you poke around in the archive a bit you will find tons of solutions to this, OpenGL itself does not have support for saving images, you can use glReadPixels to get image to a memory buffer, then use a library that support your image format (libjpeg…) or make some code yourself (www.wotsit.org)

Mikael

Hi Mikael,
Thanks a lot for ur reply,
I think that might work out…by reading each and every pixel and storing it…
anywayz i have an another alternative way…since am working on LINUX…
in the Designer…there is an command available to grab the Window and store it as an image…
the only thing there will be playing wid the coordinates…
anywayz thanks a lot…

  • Kalpesh.

Hi !

You don’t have to read each pixel by calling glReadPixels for each pixel, glReadPixels can copy the entire window contents in one call.

Oh…yeah…
Thats nice…saves lot of time…
Thanks Mikael…

  • Kalpesh.