如何使用OpenGl在android上截取屏幕截图

时间:2013-03-01 11:25:50

标签: android opengl-es screenshot pixels

我想拍一张Android设备的系统截图(不是布局截图)......我跟着这个:

Android OpenGL Screenshot

但是,gl变量在哪里?如何创建它?

1 个答案:

答案 0 :(得分:0)

在我的情况下,我正在使用NDK,因此,C ++在Java中调用了一些方法然后该方法有些bool var

if(capture)
{saveAlbum(gl);
capture=false; 
}

然后使用以下方法获取捕获glview屏幕:

Bitmap SavePixels(int x, int y, int w, int h, GL10 gl)
        {  
             int b[]=new int[w*(y+h)];
             int bt[]=new int[w*h];
             IntBuffer ib=IntBuffer.wrap(b);
             ib.position(0);
             gl.glReadPixels(x, 0, w, y+h, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, ib);

             for(int i=0, k=0; i<h; i++, k++)
             {
                  //Remember, that OpenGL bitmap is incompatible with Android bitmap
                  //and so, some correction need.        
                  for(int j=0; j<w; j++)
                  {
                       int pix=b[i*w+j];
                       int pb=(pix>>16)&0xff;
                       int pr=(pix<<16)&0xffff0000;
                       int pix1=(pix&0xff00ff00) | pr | pb;
                       bt[(h-k-1)*w+j]=pix1;
                  }
             }

            Bitmap sb = Bitmap.createBitmap(bt, w, h, Bitmap.Config.ARGB_8888); 
            return sb;
        }  

void saveAlbum(GL10 gl)
        {   
               Bitmap bmp = SavePixels(0, 0, windowWIDTH, windowHEIGHT, gl);  // display wid,height must be
            bmp = rotate(bmp,DefinallyROTATION);
           path =MediaStore.Images.Media.insertImage(m_Context.getContentResolver(), bmp, "hi", null);
             IntentFilter intentFilter = new IntentFilter(Intent.ACTION_MEDIA_SCANNER_STARTED); 
             intentFilter.addAction(Intent.ACTION_MEDIA_SCANNER_FINISHED); 
             intentFilter.addDataScheme("file"); 
             m_Context.registerReceiver(mReceiver, intentFilter);
             m_Context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"
                        + Environment.getExternalStorageDirectory())));
}