編輯:高級開發
public static Bitmap SavePixels(int x, int y, int w, int h, GL10 gl)
{
int b[]=new int[w*h];
int bt[]=new int[w*h];
IntBuffer ib=IntBuffer.wrap(b);
ib.position(0);
gl.glReadPixels(x, y, w, h, GL10.GL_RGBA, GL10.GL_UNSIGNED_BYTE, ib);
for(int i=0; i<>
{
for(int j=0; j<>
{
int pix=b[i*w+j];
int pb=(pix>>16)&0xff;
int pr=(pix<<16)&0x00ff0000;
int pix1=(pix&0xff00ff00) | pr | pb;
bt[(h-i-1)*w+j]=pix1;
}
}
Bitmap sb=Bitmap.createBitmap(bt, w, h, true);
return sb;
}
上面是一個簡單的GL讀取RGBA分量的方法,然後生成android通用的Bitmap對象,
public static void SavePNG(int x, int y, int w, int h, String fileName, GL10 gl)
{
Bitmap bmp=SavePixels(x,y,w,h,gl);
try
{
FileOutputStream fos=new FileOutputStream("/sdcard/android123/"+fileName); //android123提示大家,如何2.2或更高的系統sdcard路徑為/mnt/sdcard/
bmp.compress(CompressFormat.PNG, 100, fos); //保存為png格式,質量100%
try
{
fos.flush();
}
catch (IOException e)
{
e.printStackTrace();
}
try
{
fos.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
如何調用呢,直接執行這個靜態的方法SavePNG即可,比如SavePNG(0, 0, Config.SCREEN_W, Config.SCREEN_H, "cwj.png", gl); 最後一個參數為你的OpenGL對象。
Andrew Koenig也寫了一本現代android操作系統教程《Accelerated C++》,然而這麼多年來,android操作系統的狀況改善了嗎?androi
2001 年春,Danger 開始吸引媒體的關注:有媒體這麼說:“從 Danger 的得名就能看出來它很酷。不過 Danger 的產品也很厲害。雖然產品現在還神神秘秘,
下面文章著重進行介紹下什麼是android手機系統,在熟知Android手機系統之前,先讓我們熟知下什麼是Android?所謂的Android:Android 包括一個
Launcher不是android特有的,更不是智能手機特有的。很多設備都具有類似Launcher這種東西。就算是Windows,Linux也是有的。android中的