4

AndroidでBitmap.CompressFormatクラスなしでビットマップをバイト配列に変換する方法はありますか? そうでない場合、どうしてですか?可能であれば、方法を教えてください、ありがとう

4

1 に答える 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.

から; https://stackoverflow.com/a/10192092/1868384

于 2013-06-10T12:17:39.470 に答える