Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.graphics.Bitmap;
import android.util.Log;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

public class Main {
    private static final String TAG = "BitmapUtils";

    public static byte[] bitmapToByteArray(Bitmap bitmap, int imageQuality) {
        ByteArrayOutputStream bos = null;
        try {
            bos = new ByteArrayOutputStream();
            bitmap.compress(Bitmap.CompressFormat.JPEG, imageQuality, bos);
            return bos.toByteArray();
        } finally {
            if (bos != null) {
                try {
                    bos.close();
                } catch (IOException e) {
                    Log.w(TAG, "Failed to close ByteArrayOutputStream", e);
                    // Ignore exception
                }
            }
        }
    }
}