我在 JNI 中有一个灰度图像作为字节数组,我需要将它传递给 Android 以显示在屏幕上。目前我的代码如下:我将字节数组复制到 JNI 中的一个 int 数组,然后使用该数组设置位图的像素:
JNI端:
jintArray frame = g_env->NewIntArray(frameSize);
int tempFrame[frameSize];
for(int pix = 0; pix < frameSize; pix++){
//convert every byte to int
jint greyValue = 0xff000000 | (( byteArray[pix] << 16) & 0xffff0000) | ((byteArray[pix] << 8) & 0xff00ff00) | (byteArray[pix] & 0xff0000ff);
tempFrame[pix] = greyValue;
}
g_env->SetIntArrayRegion(frame, 0, frameSize, tempFrame);
//return the array setting a variable in java
g_env->SetObjectField(g_o, g_env->GetFieldID(g_class, "mFrame", "[I"), frame);
然后,Java方面:
//Somewhere in SurfaceView.surfaceCreated method
if(mBitmap == null)
mBitmap = Bitmap.createBitmap(mImageWidth, mImageHeight, Bitmap.Config.ARGB_8888);
//Somewhere in View.onDraw method
if(mBitmap != null && nativeClass.mFrame != null){
mBitmap.setPixels(nativeClass.mFrame, 0, mImageWidth, 0, 0, mImageWidth, mImageHeight);
//Do some operations on the bitmap with mBitmap.setPixel()
canvas.drawBitmap(mBitmap, srcRect, dstRect, null);
}
我想知道是否有一种方法可以加快这个过程,避免复制数组两次(首先从 jintArray 到 int[],然后从 int[] 到 Bitmap),例如通过直接在 Bitmap 中写入,或者通过创建JNI 中的位图并将其传递给 Android。(我知道canvas有一个drawBitmap方法接受int[]而不是Bitmap,但是那个方法不接受Rects进行缩放,所以不可行)