Android Image工具类

public class ImageUtils {

private int picType;//0表示默认png图片;1表示jpg或者jpeg

    public static ImageUtilsgetIntance(){

return new ImageUtils();

    }

public void setPicType(int picType) {

this.picType = picType;

    }

/**

* 质量压缩

*/

    public BitmapcompressImage(Bitmap image) {

ByteArrayOutputStream baos =new ByteArrayOutputStream();

        Bitmap.CompressFormat Type=picType==0?Bitmap.CompressFormat.PNG:Bitmap.CompressFormat.JPEG;

        //image.compress(Bitmap.CompressFormat.JPEG, 100, baos);//质量压缩方法,这里100表示不压缩,把压缩后的数据存放到baos中

        image.compress(Type, 100, baos);//质量压缩方法,这里100表示不压缩,把压缩后的数据存放到baos中

        int options =100;

        while (baos.toByteArray().length /1024 >100) {//循环判断如果压缩后图片是否大于100kb,大于继续压缩

            baos.reset();//重置baos即清空baos

            image.compress(Bitmap.CompressFormat.JPEG, options, baos);//这里压缩options%,把压缩后的数据存放到baos中

            options -=10;//每次都减少10

        }

ByteArrayInputStream isBm =new ByteArrayInputStream(baos.toByteArray());//把压缩后的数据baos存放到ByteArrayInputStream中

        Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null);//把ByteArrayInputStream数据生成图片

        return bitmap;

    }

/**

* 图片按比例大小压缩方法(根据路径获取图片并压缩)

*/

    public Bitmapgetimage(String srcPath) {

BitmapFactory.Options newOpts =new BitmapFactory.Options();

        //开始读入图片,此时把options.inJustDecodeBounds 设回true了

        newOpts.inJustDecodeBounds =true;

        Bitmap bitmap = BitmapFactory.decodeFile(srcPath, newOpts);//此时返回bm为空

        newOpts.inJustDecodeBounds =false;

        int w = newOpts.outWidth;

        int h = newOpts.outHeight;

        //现在主流手机比较多是800*480分辨率,所以高和宽我们设置为

        float hh =800f;//这里设置高度为800f

        float ww =480f;//这里设置宽度为480f

//缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可

        int be =1;//be=1表示不缩放

        if (w > h && w > ww) {//如果宽度大的话根据宽度固定大小缩放

            be = (int) (newOpts.outWidth / ww);

        }else if (w < h && h > hh) {//如果高度高的话根据宽度固定大小缩放

            be = (int) (newOpts.outHeight / hh);

        }

if (be <=0)

be =1;

        newOpts.inSampleSize = be;//设置缩放比例

//重新读入图片,注意此时已经把options.inJustDecodeBounds 设回false了

        bitmap = BitmapFactory.decodeFile(srcPath, newOpts);

        return compressImage(bitmap);//压缩好比例大小后再进行质量压缩

    }

/**

* 图片按比例大小压缩方法(根据Bitmap图片压缩)

*/

    public Bitmapcomp(Bitmap image) {

ByteArrayOutputStream baos =new ByteArrayOutputStream();

        image.compress(Bitmap.CompressFormat.JPEG, 100, baos);

        if (baos.toByteArray().length /1024 >1024) {//判断如果图片大于1M,进行压缩避免在生成图片(BitmapFactory.decodeStream)时溢出

            baos.reset();//重置baos即清空baos

            Bitmap.CompressFormat Type=picType==0?Bitmap.CompressFormat.PNG:Bitmap.CompressFormat.JPEG;

            //image.compress(Bitmap.CompressFormat.JPEG, 50, baos);//这里压缩50%,把压缩后的数据存放到baos中

            image.compress(Type, 50, baos);//这里压缩50%,把压缩后的数据存放到baos中

        }

ByteArrayInputStream isBm =new ByteArrayInputStream(baos.toByteArray());

        BitmapFactory.Options newOpts =new BitmapFactory.Options();

        //开始读入图片,此时把options.inJustDecodeBounds 设回true了

        newOpts.inJustDecodeBounds =true;

        Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, newOpts);

        newOpts.inJustDecodeBounds =false;

        int w = newOpts.outWidth;

        int h = newOpts.outHeight;

        //现在主流手机比较多是800*480分辨率,所以高和宽我们设置为

        float hh =800f;//这里设置高度为800f

        float ww =480f;//这里设置宽度为480f

//缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可

        int be =1;//be=1表示不缩放

        if (w > h && w > ww) {//如果宽度大的话根据宽度固定大小缩放

            be = (int) (newOpts.outWidth / ww);

        }else if (w < h && h > hh) {//如果高度高的话根据宽度固定大小缩放

            be = (int) (newOpts.outHeight / hh);

        }

if (be <=0)

be =1;

        newOpts.inSampleSize = be;//设置缩放比例

//重新读入图片,注意此时已经把options.inJustDecodeBounds 设回false了

        isBm =new ByteArrayInputStream(baos.toByteArray());

        bitmap = BitmapFactory.decodeStream(isBm, null, newOpts);

        return compressImage(bitmap);//压缩好比例大小后再进行质量压缩

    }

/**判断图片类型*/

    public void getPicTypeByUrl(String url){

if(url==null){

return;

        }

if(url.equals("")){

return;

        }

String[] picArray=url.split("/");

        String picStr="";

        if(picArray.length>0){

picStr=picArray[picArray.length-1];

        }else{

picStr=picArray[0];

        }

if(picStr.toLowerCase().contains(".png")){

picType=0;

        }else if(picStr.toLowerCase().contains(".jpg")||picStr.toLowerCase().contains(".jpeg")){

picType=1;

        }

}

/**通过图片url生成Bitmap对象

    * @param urlpath

    * @return Bitmap

* 根据图片url获取图片对象

*/

    public static BitmapgetBitMBitmap(String urlpath) {

Bitmap map =null;

        try {

URL url =new URL(urlpath);

            URLConnection conn = url.openConnection();

            conn.connect();

            InputStream in;

            in = conn.getInputStream();

            map = BitmapFactory.decodeStream(in);

        }catch (IOException e) {

e.printStackTrace();

        }

return map;

    }

/**通过图片url生成Drawable对象

    * @param urlpath

    * @return Bitmap

* 根据url获取布局背景的对象

*/

    public static DrawablegetDrawable(String urlpath){

Drawable drawable =null;

        try {

URL url =new URL(urlpath);

            URLConnection conn = url.openConnection();

            conn.connect();

            InputStream in;

            in = conn.getInputStream();

            drawable = Drawable.createFromStream(in, "background.jpg");

        }catch (IOException e) {

e.printStackTrace();

        }

return drawable;

    }

/**

    * @param 将图片内容解析成字节数组

    * @param inStream

    * @return byte[]

    * @throws Exception

*/

    public static byte[]readStream(InputStream inStream)throws Exception {

byte[] buffer =new byte[1024];

        int len = -1;

        ByteArrayOutputStream outStream =new ByteArrayOutputStream();

        while ((len = inStream.read(buffer)) != -1) {

outStream.write(buffer, 0, len);

        }

byte[] data = outStream.toByteArray();

        outStream.close();

        inStream.close();

        return data;

    }

/**

    * @param 将字节数组转换为ImageView可调用的Bitmap对象

    * @param bytes

    * @param opts

    * @return Bitmap

*/

    public static BitmapgetPicFromBytes(byte[] bytes,

                                        BitmapFactory.Options opts) {

if (bytes !=null)

if (opts !=null)

return BitmapFactory.decodeByteArray(bytes, 0, bytes.length,

                        opts);

else

                return BitmapFactory.decodeByteArray(bytes, 0, bytes.length);

return null;

    }

/**

    * @param 图片缩放

    * @param bitmap 对象

    * @param w 要缩放的宽度

    * @param h 要缩放的高度

    * @return newBmp 新 Bitmap对象

*/

    public static BitmapzoomBitmap(Bitmap bitmap, int w, int h){

int width = bitmap.getWidth();

        int height = bitmap.getHeight();

        Matrix matrix =new Matrix();

        float scaleWidth = ((float) w / width);

        float scaleHeight = ((float) h / height);

        matrix.postScale(scaleWidth, scaleHeight);

        Bitmap newBmp = Bitmap.createBitmap(bitmap, 0, 0, width, height,

                matrix, true);

        return newBmp;

    }

/**

* 把Bitmap转Byte

    * @Author HEH

    * @EditTime 2010-07-19 上午11:45:56

*/

    public static byte[]Bitmap2Bytes(Bitmap bm){

ByteArrayOutputStream baos =new ByteArrayOutputStream();

        bm.compress(Bitmap.CompressFormat.PNG, 100, baos);

        return baos.toByteArray();

    }

/**

* 把字节数组保存为一个文件

    * @Author HEH

    * @EditTime 2010-07-19 上午11:45:56

*/

    public static FilegetFileFromBytes(byte[] b, String outputFile) {

BufferedOutputStream stream =null;

        File file =null;

        try {

file =new File(outputFile);

            FileOutputStream fstream =new FileOutputStream(file);

            stream =new BufferedOutputStream(fstream);

            stream.write(b);

        }catch (Exception e) {

e.printStackTrace();

        }finally {

if (stream !=null) {

try {

stream.close();

                }catch (IOException e1) {

e1.printStackTrace();

                }

}

}

return file;

    }

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容