9
জাভা বিটম্যাপকে বাইট অ্যারেতে রূপান্তর করা
Bitmap bmp = intent.getExtras().get("data"); int size = bmp.getRowBytes() * bmp.getHeight(); ByteBuffer b = ByteBuffer.allocate(size); bmp.copyPixelsToBuffer(b); byte[] bytes = new byte[size]; try { b.get(bytes, 0, bytes.length); } catch (BufferUnderflowException e) { // always happens } // do something with byte[] যখন আমি বাফারের দিকে তাকানোর পরে copyPixelsToBufferবাইটগুলিতে কল সমস্ত 0 হয় …