ImageLite 图片轻量型、链式调用操作工具类

本人一直都是很喜欢链式编程的风格的,因为简单、易用,还好看。所以闲来无事就整合了一下ImageUtil 图片操作工具类,提取了获取bitmap,保存图片,尺寸压缩,质量压缩等几个功能,利用建造者模式(还不敢确定是不是)写了这个ImageLite工具类,使用方式在下面:

/**
 * @desc
 * @auth 方毅超
 * @time 2018/1/4 10:42
 */

public class ImageLite {
    static private int PLAN = 0;
    static private RatioAttribute ratioAttribute;
    static private CompressAttribute compressAttribute;

    static {
        ratioAttribute = new RatioAttribute();
        compressAttribute = new CompressAttribute();
    }

    /**
     * Get bitmap from specified image path
     *
     * @param imgPath
     * @return
     */
    public static Bitmap getBitmap(String imgPath) {
        // Get bitmap through image path
        BitmapFactory.Options newOpts = new BitmapFactory.Options();
        // 防止OOM发生
        newOpts.inJustDecodeBounds = false;
        // Do not compress
        newOpts.inSampleSize = 1;
        newOpts.inPreferredConfig = Bitmap.Config.RGB_565;
        return BitmapFactory.decodeFile(imgPath, newOpts);
    }

    /**
     * Store bitmap into specified image path
     *
     * @param bitmap
     * @param outPath
     * @throws FileNotFoundException
     */
    public static void storeImage(Bitmap bitmap, String outPath) throws FileNotFoundException {
        try {
            FileOutputStream os = new FileOutputStream(outPath);
            bitmap.compress(Bitmap.CompressFormat.PNG, 100, os);
            os.flush();
            os.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * 尺寸压缩,直接压缩位图
     * 实际上只是设置参数,只有调用start()才会执行动作
     *
     * @param image
     * @return
     */
    public static RatioAttribute ratio(Bitmap image) {
        PLAN = RatioAttribute.RATIO_BY_BITMAP;
        ratioAttribute.image = image;
        return ratioAttribute;
    }

    /**
     * 尺寸压缩,通过图片路径
     * 实际上只是设置参数,只有调用start()才会执行动作
     *
     * @param imgPath image path
     * @return
     */
    public static RatioAttribute ratio(String imgPath) {
        PLAN = RatioAttribute.RATIO_BY_STR;
        ratioAttribute.imgPath = imgPath;
        return ratioAttribute;
    }


    /**
     * 质量压缩,直接压缩位图,并生成压缩图
     * 实际上只是设置参数,只有调用start()才会执行动作
     * Compress by quality,  and generate image to the path specified
     *
     * @param bitmap
     * @throws IOException
     */
    public static CompressAttribute compress(Bitmap bitmap) {
        PLAN = CompressAttribute.COMPRESS_BY_BITMAP;
        compressAttribute.image = bitmap;
        return compressAttribute;
    }

    /**
     * 质量压缩,通过图片路径,并生成压缩图
     * 实际上只是设置参数,只有调用start()才会执行动作
     * Compress by quality,  and generate image to the path specified
     *
     * @param imgPath
     * @param needsDelete Whether delete original file after compress
     * @throws IOException
     */
    public static CompressAttribute compress(String imgPath, boolean needsDelete) {
        PLAN = CompressAttribute.COMPRESS_BY_STR;
        compressAttribute.imgPath = imgPath;
        compressAttribute.needsDelete = needsDelete;
        return compressAttribute;
    }

    /**
     * 尺寸压缩真正的属性、操作类
     */
    public static class RatioAttribute {
        static private final int RATIO_BY_BITMAP = 1;
        static private final int RATIO_BY_STR = 2;
        float pixelW = 120f;//需要压缩成的宽度,默认120像素
        float pixelH = 240f;//需要压缩成的高度,默认240像素
        Bitmap image;//需要被压缩的位图
        String imgPath;//需要被压缩图片的路径
        String outPath;//压缩完之后保存的路径

        public RatioAttribute setPixel(float w, float h) {
            pixelW = w;
            pixelH = h;
            return ratioAttribute;
        }

        public RatioAttribute setOutPath(String path) {
            outPath = path;
            return ratioAttribute;
        }

        /**
         * 尺寸压缩,直接压缩位图
         * Compress image by size, this will modify image width/height.
         * Used to get thumbnail
         *
         * @param image
         * @return
         */
        private Bitmap doRatioAndGenThumbByBitmap(Bitmap image) throws FileNotFoundException {
            ByteArrayOutputStream os = new ByteArrayOutputStream();
            image.compress(Bitmap.CompressFormat.JPEG, 100, os);
            if (os.toByteArray().length / 1024 > 1024) {//判断如果图片大于1M,进行压缩避免在生成图片(BitmapFactory.decodeStream)时溢出
                os.reset();//重置baos即清空baos
                image.compress(Bitmap.CompressFormat.JPEG, 50, os);//这里压缩50%,把压缩后的数据存放到baos中
            }
            ByteArrayInputStream is = new ByteArrayInputStream(os.toByteArray());
            BitmapFactory.Options newOpts = new BitmapFactory.Options();
            //开始读入图片,此时把options.inJustDecodeBounds 设回true了
            newOpts.inJustDecodeBounds = true;
            newOpts.inPreferredConfig = Bitmap.Config.RGB_565;
            Bitmap bitmap = BitmapFactory.decodeStream(is, null, newOpts);

            newOpts.inJustDecodeBounds = false;
            int w = newOpts.outWidth;
            int h = newOpts.outHeight;
            float hh = pixelH;// 设置高度为240f时,可以明显看到图片缩小了
            float ww = pixelW;// 设置宽度为120f,可以明显看到图片缩小了
            //缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可
            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了
            is = new ByteArrayInputStream(os.toByteArray());
            bitmap = BitmapFactory.decodeStream(is, null, newOpts);
            //压缩好比例大小后再进行质量压缩
//      return compress(bitmap, maxSize); // 这里再进行质量压缩的意义不大,反而耗资源,删除

            // Generate compressed image file
            if (outPath != null && !outPath.isEmpty()) {
                storeImage(bitmap, outPath);
                outPath = null;//使用完立即置空
            }
            return bitmap;
        }

        /**
         * 尺寸压缩,通过图片路径
         * Compress image by pixel, this will modify image width/height.
         * Used to get thumbnail
         *
         * @param imgPath image path
         * @return
         */
        private Bitmap doRatioAndGenThumbByStr(String imgPath) throws FileNotFoundException {
            BitmapFactory.Options newOpts = new BitmapFactory.Options();
            // 开始读入图片,此时把options.inJustDecodeBounds 设回true,即只读边不读内容
            newOpts.inJustDecodeBounds = true;
            newOpts.inPreferredConfig = Bitmap.Config.RGB_565;
            // Get bitmap info, but notice that bitmap is null now
            Bitmap bitmap = BitmapFactory.decodeFile(imgPath, newOpts);

            newOpts.inJustDecodeBounds = false;
            int w = newOpts.outWidth;
            int h = newOpts.outHeight;
            // 想要缩放的目标尺寸
            float hh = ratioAttribute.pixelH;// 设置高度为240f时,可以明显看到图片缩小了
            float ww = ratioAttribute.pixelW;// 设置宽度为120f,可以明显看到图片缩小了
            // 缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可
            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(imgPath, newOpts);
            // 压缩好比例大小后再进行质量压缩
//        return compress(bitmap, maxSize); // 这里再进行质量压缩的意义不大,反而耗资源,删除

            // Generate compressed image file
            if (outPath != null && !outPath.isEmpty()) {
                storeImage(bitmap, outPath);
                outPath = null;//使用完立即置空
            }
            return bitmap;
        }

        public Bitmap start() {
            Bitmap bitmap = null;
            try {
                switch (PLAN) {
                    case RATIO_BY_BITMAP:
                        bitmap = doRatioAndGenThumbByBitmap(image);
                        break;
                    case RATIO_BY_STR:
                        bitmap = doRatioAndGenThumbByStr(imgPath);
                        break;
                }
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
            return bitmap;
        }
    }

    /**
     * 质量压缩真正的属性、操作类
     */
    public static class CompressAttribute {
        static private final int COMPRESS_BY_BITMAP = 3;
        static private final int COMPRESS_BY_STR = 4;
        Bitmap image;//需要被压缩的位图
        String imgPath;//需要被压缩图片的路径
        int maxSize = 100;//需要被压缩成的大小,默认100k
        boolean needsDelete;//用于判断压缩完之后是否删除原路径下的原图片
        String outPath;//压缩完之后保存的路径

        public CompressAttribute setMaxSize(int maxSize) {
            this.maxSize = maxSize;
            return compressAttribute;
        }

        public CompressAttribute setOutPath(String path) {
            outPath = path;
            return compressAttribute;
        }

        /**
         * 质量压缩,直接压缩位图,并生成压缩图
         * Compress by quality,  and generate image to the path specified
         *
         * @param bitmap
         * @param maxSize target will be compressed to be smaller than this size.(kb)
         * @throws IOException
         */
        private Bitmap doCompressAndGenImageByBitmap(Bitmap bitmap, int maxSize) throws IOException {
            ByteArrayOutputStream os = new ByteArrayOutputStream();
            // scale
            int options = 100;
            // Store the bitmap into output stream(no compress)
            bitmap.compress(Bitmap.CompressFormat.JPEG, options, os);
            // Compress by loop
            while (os.toByteArray().length / 1024 > maxSize) {
                // Clean up os
                os.reset();
                // interval 10
                options -= 10;
                bitmap.compress(Bitmap.CompressFormat.JPEG, options, os);
            }

            // Generate compressed image file
            if (outPath != null && !outPath.isEmpty()) {
                FileOutputStream fos = new FileOutputStream(outPath);
                fos.write(os.toByteArray());
                fos.flush();
                fos.close();
                outPath = null;//使用完立即置空
            }

            ByteArrayInputStream isBm = new ByteArrayInputStream(os.toByteArray());// 把压缩后的数据baos存放到ByteArrayInputStream中
            return BitmapFactory.decodeStream(isBm, null, null);// 把ByteArrayInputStream数据生成图片

        }

        /**
         * 质量压缩,通过图片路径,并生成压缩图
         * Compress by quality,  and generate image to the path specified
         *
         * @param imgPath
         * @param maxSize     target will be compressed to be smaller than this size.(kb)
         * @param needsDelete Whether delete original file after compress
         * @throws IOException
         */
        private Bitmap doCompressAndGenImageByStr(String imgPath, int maxSize, boolean needsDelete) throws IOException {
            Bitmap bitmap = doCompressAndGenImageByBitmap(getBitmap(imgPath), maxSize);

            // Delete original file
            if (needsDelete) {
                File file = new File(imgPath);
                if (file.exists()) {
                    file.delete();
                }
            }
            return bitmap;
        }

        public Bitmap start(){
            Bitmap bitmap = null;
            try {
                switch (PLAN) {
                    case COMPRESS_BY_BITMAP:
                        bitmap = doCompressAndGenImageByBitmap(image, maxSize);
                        break;
                    case COMPRESS_BY_STR:
                        bitmap = doCompressAndGenImageByStr(imgPath, maxSize, needsDelete);
                        break;
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
            return bitmap;
        }
    }

}

使用方式:是不是很清新很明了。

ImageLite.ratio(qrcodeBitmap)
                        .setPixel(100f, 100f)
                        .setOutPath(Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "Csair")
                        .start();
ImageLite.compress(qrcodeBitmap)
                        .setMaxSize(100)
                        .setOutPath(Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "Csair")
                        .start();

好吧!其实有点多此一举了,就这么几个功能完全没有必要写成这样,但是重点是要了解这种设计模式,不是吗?保不齐以后碰到某些功能类、模块,就得这样写呢!

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