I'm fighting from some time with taking a screenshot of Android OpenGL.

The code I found is as follows:

nt size = width * height;
    ByteBuffer buf = ByteBuffer.allocateDirect(size * 4);
    buf.order(ByteOrder.nativeOrder());
    glContext.glReadPixels(0, 0, width, height, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, buf);
    int data[] = new int[size];
    buf.asIntBuffer().get(data);
    buf = null;
    Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
    bitmap.setPixels(data, size-width, -width, 0, 0, width, height);
    data = null;

    short sdata[] = new short[size];
    ShortBuffer sbuf = ShortBuffer.wrap(sdata);
    bitmap.copyPixelsToBuffer(sbuf);
    for (int i = 0; i < size; ++i) {
        //BGR-565 to RGB-565
        short v = sdata[i];
        sdata[i] = (short) (((v&0x1f) << 11) | (v&0x7e0) | ((v&0xf800) >> 11));
    }
    sbuf.rewind();
    bitmap.copyPixelsFromBuffer(sbuf);

    try {
        FileOutputStream fos = new FileOutputStream("/sdcard/screeshot.png");
        bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
        fos.flush();
        fos.close();
    } catch (Exception e) {
        // handle
    }

I tried also a code from that site link text

In each case the result is a png file which is completely black. I found there is some problem with glReadPixels method but I don't know how to bypass it. Any guidance will very helpfull.

Thank You in advance, Gordon

link|improve this question
feedback

3 Answers

Sorry for the late response...

In order to perform a correct screenshot You have to put into Your onDrawFrame(GL10 gl) handler the following code:

if(screenshot){                     
                int screenshotSize = width * height;
                ByteBuffer bb = ByteBuffer.allocateDirect(screenshotSize * 4);
                bb.order(ByteOrder.nativeOrder());
                gl.glReadPixels(0, 0, width, height, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, bb);
                int pixelsBuffer[] = new int[screenshotSize];
                bb.asIntBuffer().get(pixelsBuffer);
                bb = null;
                Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
                bitmap.setPixels(pixelsBuffer, screenshotSize-width, -width, 0, 0, width, height);
                pixelsBuffer = null;

                short sBuffer[] = new short[screenshotSize];
                ShortBuffer sb = ShortBuffer.wrap(sBuffer);
                bitmap.copyPixelsToBuffer(sb);

                //Making created bitmap (from OpenGL points) compatible with Android bitmap
                for (int i = 0; i < screenshotSize; ++i) {                  
                    short v = sBuffer[i];
                    sBuffer[i] = (short) (((v&0x1f) << 11) | (v&0x7e0) | ((v&0xf800) >> 11));
                }
                sb.rewind();
                bitmap.copyPixelsFromBuffer(sb);
                lastScreenshot = bitmap;

                screenshot = false;
            }

The "screenshot" class field is set to true whenever the user presses the button to create a screenshot or at any other circumstances You want. Inside the "if" body You may place any screenshot creating code sample You find in th internet - the most important thing is having the current instance of GL10. For example when You just save the GL10 instance to the class variable and then use it outside the event to create the screenshot You'll end up with the completely blank image. That's why You have to take a screenshot inside the OnDrawFrame event handler where the GL10 instance is the current one. Hope that it helps.

Best regards, Gordon.

link|improve this answer
i'm getting erroneal colours with this solution, for example, yellow colours are painted as blue colours...¿? how to solve it please? – AndroidUser99 Nov 16 '11 at 9:21
feedback

Got it!

My mistake was that I was remembering GL context in the class variable. In order to take a screenshot I have to use the gl context passed to the OnDraw in the class implementing GLSurfaceView.Renderer interface. I simply use my code in the "if" clause and everything works as expected. Hope that remark would help anyone.

Best regards, Gordon

link|improve this answer
feedback

I put the code in the onDrawFrame(),but I also take a empty photo, here is my code: public void onDrawFrame(GL10 gl) {

    long now = System.nanoTime();
    long interval = now - last;

    // should render a frame when onDrawFrame() is called
    // or there is a "ghost"


    if(screenshot){ 

        int screenshotSize = width * height; 
        ByteBuffer bb = ByteBuffer.allocateDirect(screenshotSize * 4); 
        bb.order(ByteOrder.nativeOrder()); 
        gl.glReadPixels(0, 0, width, height, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, bb); 
        int pixelsBuffer[] = new int[screenshotSize]; 
        bb.asIntBuffer().get(pixelsBuffer); 
        bb = null; 
        theBmp = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565); 
        theBmp.setPixels(pixelsBuffer, screenshotSize-width, -width, 0, 0, width, height); 
        pixelsBuffer = null; 

        short sBuffer[] = new short[screenshotSize]; 
        ShortBuffer sb = ShortBuffer.wrap(sBuffer); 
        theBmp.copyPixelsToBuffer(sb); 

        //Making created bitmap (from OpenGL points) compatible with Android bitmap 
        for (int i = 0; i < screenshotSize; ++i) {                   
            short v = sBuffer[i]; 
            sBuffer[i] = (short) (((v&0x1f) << 11) | (v&0x7e0) | ((v&0xf800) >> 11)); 
        } 
        sb.rewind(); 
        theBmp.copyPixelsFromBuffer(sb); 
        //lastScreenshot = bitmap; 

        //theBmp = captureScreen(m_context, 0, 0, width, height, gl);

        screenshot = false; 


        FileOutputStream fos = null; 
        try { 
            fos = new FileOutputStream("/sdcard/screenshot.png"); 
            if (null != fos) 
            { 
                theBmp.compress(Bitmap.CompressFormat.JPEG, 90, fos); 
                fos.flush(); 
                fos.close(); 
            } 
        } catch (FileNotFoundException e) { 
        e.printStackTrace(); 
        } catch (IOException e) { 
        e.printStackTrace(); 
        } 

I set screenshot = true outside this file. And this renderer is the only one renderer in my project. I had make a breakpoint and into debug and find the buffer while save the Pixels all value is the same "-15201214".

I don't know why. Wait for your help

link|improve this answer
Welcome to Stack Overflow! If you have another question, please ask it by clicking the Ask Question button. – oers Dec 16 '11 at 7:39
feedback

Your Answer

 
or
required, but never shown

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