get Bytes from Bitmap - Android Graphics

Android examples for Graphics:Bitmap Read

Description

get Bytes from Bitmap

Demo Code


//package com.java2s;

import android.graphics.Bitmap;

import java.io.ByteArrayOutputStream;

public class Main {
    public static byte[] getBytes(Bitmap bitmap) {
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.PNG, 0, stream);
        return stream.toByteArray();
    }/*from  w w w  .  jav  a2s.  co m*/
}

Related Tutorials