简体   繁体   中英

converting pixels array in bitmap for Android

I have a 262144 (512*512) one dimensional pixel int[] pixelsArray array taht I want to convert into Bitmap and display it in an Android app, so I put

 bitmap = Bitmap.createBitmap(512, 512, Bitmap.Config.ARGB_8888);
    bitmap.setPixels(pixelsArray, 0, 512, 0, 0, 512, 512);

I get this message 

java.lang.IllegalArgumentException: bitmap size exceeds 32bits
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
            at android.app.ActivityThread.access$600(ActivityThread.java:141)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
            at android.os.Handler.dispatchMessage(Handler.java:99)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:5041)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
            at dalvik.system.NativeStart.main(Native Method)
     Caused by: java.lang.IllegalArgumentException: bitmap size exceeds 32bits
            at android.graphics.Bitmap.nativeCreate(Native Method)
            at android.graphics.Bitmap.createBitmap(Bitmap.java:689)
            at android.graphics.Bitmap.createBitmap(Bitmap.java:666)
            at android.graphics.Bitmap.createBitmap(Bitmap.java:633)

I tried some SO solutions, but none worked. Could someone help ?

here's the answer that worked :

bitmap = Bitmap.createBitmap(512, 512, Bitmap.Config.ARGB_8888);
byte[] byteArray = new String(pixelsArray).getBytes("UTF-8");
BitmapFactory.Options thumbOpts = new BitmapFactory.Options();
thumbOpts.inSampleSize = 4;
bitmap = BitmapFactory.decodeByteArray(byteArray, 0, pixelsArray.length, thumbOpts);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM