I use the below code:
Bitmap myBmp = Bitmap.createBitmap( 720, 1280, Config.ARGB_8888 );
byte []data = myBmp.mBuffer ????
But I find that the mBuffer of android.graphics.Bitmap can not be accessed. And there is no hint for this in Eclipse.
How to solve this?