array []字节RGB到位图-三星s9失败

时间:2019-05-30 16:47:49

标签: android android-bitmap android-camera2 createbitmap

当我获得RGB数组字节并将其传递给JPEG whit Bitmap.createBitmap时,我有了android app,在三星s6 edge(7.0 Android版)中工作完美。但是在三星s9(8.0 Android版)中

    Bitmap bitmap = null;
    int width = w;
    int height = h;
    Bitmap.Config conf = Bitmap.Config.ARGB_8888; 
    bitmap = Bitmap.createBitmap(width, height, conf);
    bitmap.setPixels(arraInt, 0, bitmap.getWidth(), 0, 0,  
    bitmap.getWidth(), bitmap.getHeight());
            createBitmapDraw(bitmap);
    ImageView iw = (ImageView)findViewById(R.id.imgview);
    iw.setImageBitmap(bmp);

三星s6 edge(7.0 Android版)-颜色很好,它是遮罩颜色
-我不能放图片,因为stackoverflow.com不需要。
good img

三星s9(8.0 Android版)
-我不能放图片,因为stackoverflow.com不需要。
bad img

我使用了ndk示例googlesamples/android-ndk

我不知道在android s6边缘工作,但失败了

0 个答案:

没有答案