Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have succeed in loading an image to OpenGL as a texture (I use Gdk::Pixbuf from GTKmm library), but I have no idea how to get modified image from OpenGL and load it to Gdk::Pixbuf...

I want to modify images in OpenGL and the save them on hard disk.

There is some code:

Glib::RefPtr<Gdk::Pixbuf> pixmap = Gdk::Pixbuf::create_from_file("image.jpg");
GLuint texture[1];
glBindTexture(GL_TEXTURE_2D, texture[1]);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, pixmap->get_width(), pixmap->get_height(), 0,      GL_RGB, GL_UNSIGNED_BYTE, pixmap->get_pixels() );
share|improve this question
Welcome to StackOverflow, I hope you read the FAQ. – Christian Rau Oct 27 '11 at 19:33

2 Answers

up vote 3 down vote accepted

Render textured quad to the framebuffer and then glReadPixels().

share|improve this answer
Since he hasn't tagged it OpenGL ES, drawing a textured quad is not a good alternative to just using glGetTexImage. – Christian Rau Oct 27 '11 at 18:39
2  
@ChristianRau: But since the OP said "want to modify images in OpenGL", glGetTexImage is probably not what is wanted, since it will just read back the texture image that was previously uploaded (this is one of the functions of which I never understood why they exist). To read back something "modified", something like drawing a textured quad (with some kind of "operation", likely a shader) is needed, as genpfault suggested. – Damon Oct 28 '11 at 9:11
@Damon Perhaps. – Christian Rau Oct 28 '11 at 11:58

As long as you don't use OpenGL ES, but real desktop OpenGL, you can just use glGetTexImage.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.