package com.basic.security.utils;
|
|
import android.graphics.Bitmap;
|
|
import java.nio.ByteBuffer;
|
|
public class BgrUtils {
|
ByteBuffer buffer;
|
byte[] pixels;
|
|
public byte[] getPixelsBGR(Bitmap image) {
|
int bytes = image.getByteCount();
|
if (buffer == null || buffer.array().length != bytes) {
|
buffer = ByteBuffer.allocate(bytes);
|
}
|
buffer.clear();
|
image.copyPixelsToBuffer(buffer);
|
byte[] temp = buffer.array();
|
if (pixels == null || pixels.length != (temp.length / 4) * 3) {
|
pixels = new byte[(temp.length / 4) * 3];
|
}
|
for (int i = 0; i < temp.length / 4; i++) {
|
pixels[i * 3] = temp[i * 4 + 2];
|
pixels[i * 3 + 1] = temp[i * 4 + 1];
|
pixels[i * 3 + 2] = temp[i * 4];
|
}
|
return pixels;
|
}
|
}
|