AndroidでBitmap.CompressFormatクラスなしでビットマップをバイト配列に変換する方法はありますか? そうでない場合、どうしてですか?可能であれば、方法を教えてください、ありがとう
質問する
7538 次
1 に答える
1
このようなもの?
//b is the Bitmap
//calculate how many bytes our image consists of.
int bytes = b.getByteCount();
//or we can calculate bytes this way. Use a different value than 4 if you don't use 32bit images.
//int bytes = b.getWidth()*b.getHeight()*4;
ByteBuffer buffer = ByteBuffer.allocate(bytes); //Create a new buffer
b.copyPixelsToBuffer(buffer); //Move the byte data to the buffer
byte[] array = buffer.array(); //Get the underlying array containing the data.
于 2013-06-10T12:17:39.470 に答える