Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 *  COPYRIGHT NOTICE  
 *  Copyright (C) 2015, Jhuster <lujun.hust@gmail.com>
 *  https://github.com/Jhuster/Android
 *   
 *  @license under the Apache License, Version 2.0 
 *
 *  @file    BitmapHelper.java
 *  @brief   Bitmap processor, include load,save,rotate,crop etc.
 *  
 *  @version 1.0     
 *  @author  Jhuster
 *  @date    2015/11/20    
 */

import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import android.graphics.Bitmap;

import android.graphics.Bitmap.CompressFormat;

public class Main {
    public static boolean save(Bitmap bitmap, String filepath) {
        try {
            FileOutputStream fos = new FileOutputStream(filepath);
            bitmap.compress(CompressFormat.JPEG, 100, fos);
            bitmap.recycle();
            fos.close();
            return true;
        } catch (FileNotFoundException e) {

        } catch (IOException e) {

        }
        return false;
    }
}