Android 图片压缩 多种方式组合压缩 不失真

由于某些图片的过大,需要上传的图片需要进行处理在进行上传,上传图片既要保证质量又要对大小进行控制:

实现步骤:

    指定图片的后的最大大小和宽高;

        int maxSize = 500;

        float maxHeight = 1200.0f;

        float maxWidth = 800.0f;

    根据指定打最大宽高,保留原有比例来记性获取采样率进行压缩;

        Bitmap scaledBitmap;

        File imageFile = new File(filePath);

        if (!imageFile.exists()) {

            return null;

        }

        // 只解析图片的基本尺寸信息

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

        options.inJustDecodeBounds = true;

        BitmapFactory.decodeFile(filePath,options);

        // 计算图片比例  (Ratio : 比例)

        int actualHeight = options.outHeight;

        int actualWidth = options.outWidth;

        // 实际图片比例

        float imgRatio = (float)actualWidth / actualHeight;

        // 想要的最大图片比例

        float maxRatio = maxWidth / maxHeight;

        if(actualHeight == -1 || actualWidth == -1){

            try {

                ExifInterface exifInterface = new ExifInterface(filePath);

                actualHeight = exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_LENGTH, ExifInterface.ORIENTATION_NORMAL);//获取图片的高度

                actualWidth = exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_WIDTH, ExifInterface.ORIENTATION_NORMAL);//获取图片的宽度

                options.outWidth = actualWidth;

                options.outHeight = actualHeight;

            } catch (IOException e) {

                e.printStackTrace();

                return null;

            }

        }

        // 如果图片真实宽高里的某一个比设定的最大宽高大,才进行比例压缩

        if (actualHeight > maxHeight || actualWidth > maxWidth) {

            if (imgRatio < maxRatio) {

                imgRatio = maxHeight / actualHeight;

                actualWidth = (int) (imgRatio * actualWidth);

                actualHeight = (int) maxHeight;

            } else if (imgRatio > maxRatio) {

                imgRatio = maxWidth / actualWidth;

                actualHeight = (int) (imgRatio * actualHeight);

                actualWidth = (int) maxWidth;

            } else {

                actualHeight = (int) maxHeight;

                actualWidth = (int) maxWidth;

            }

        }

        // 计算 inSampleSize 的值

        options.inSampleSize = calculateInSampleSize(options, actualWidth, actualHeight);

        options.inJustDecodeBounds = false;

        options.inDither = false;

        options.inTempStorage = new byte[16*1024];

        Bitmap bmp;

        // 根据计算的 inSampleSize 的值从图片文件中提取Bitmap

        try{

            bmp = BitmapFactory.decodeFile(filePath,options);

        }

        catch(OutOfMemoryError exception){

            exception.printStackTrace();

            return null;

        }

    构建Matrix实现图片方向调整、和使用Canvas画到根据上面算出图片压缩后宽高构建的bitmap中;

       // 根据实际需要的图片尺寸创建新Bitmap

        try{

            scaledBitmap = Bitmap.createBitmap(actualWidth, actualHeight, Bitmap.Config.ARGB_8888);

        }

        catch(OutOfMemoryError exception){

            exception.printStackTrace();

            return null;

        }

        float ratioX = actualWidth / (float) options.outWidth;

        float ratioY = actualHeight / (float)options.outHeight;

        float middleX = actualWidth / 2.0f;

        float middleY = actualHeight / 2.0f;

        Matrix scaleMatrix = new Matrix();

        scaleMatrix.setScale(ratioX, ratioY, middleX, middleY);

        // 将从图片文件中提取的Bitmap画到新创建的Bitmap中

        Canvas canvas = new Canvas(scaledBitmap);

        canvas.setMatrix(scaleMatrix);

        canvas.drawBitmap(bmp, middleX - bmp.getWidth()/2, middleY - bmp.getHeight() / 2, new Paint(Paint.FILTER_BITMAP_FLAG));

        // 解析图片的Exif旋转信息,用于摆正图片

        ExifInterface exif;

        try {

            exif = new ExifInterface(filePath);

            int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED);

            Matrix matrix = new Matrix();

            if (orientation == ExifInterface.ORIENTATION_ROTATE_90) {

                matrix.postRotate(90);

            } else if (orientation == ExifInterface.ORIENTATION_ROTATE_180) {

                matrix.postRotate(180);

            } else if (orientation == ExifInterface.ORIENTATION_ROTATE_270) {

                matrix.postRotate(270);

            }

            // 如果图片是歪的,调整方向

            scaledBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0,scaledBitmap.getWidth(), scaledBitmap.getHeight(), matrix, true);

        } catch (IOException e) {

            e.printStackTrace();

            return null;

        }

    使用bitmap.compress进行质量压缩以控制最大大小 ,压缩的质量误差在规定最大质量的15%左右。

        ByteArrayOutputStream baos = null;

        FileOutputStream out = null;

        try {

            baos = new ByteArrayOutputStream();

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

            // 压缩比例

            int compressRatio = 100;

            while (approachTo(maxSize, baos.toByteArray().length) > 0) {

                baos.reset();

                scaledBitmap.compress(Bitmap.CompressFormat.JPEG, compressRatio,baos);

                compressRatio -= 3;

            }

            if(compressRatio != 100)

                compressRatio += 3;

            if(compressRatio != 100 && approachTo(maxSize, baos.toByteArray().length) < 0){

                baos.reset();

                compressRatio += 1;

                scaledBitmap.compress(Bitmap.CompressFormat.JPEG, compressRatio,baos);

            }

            out = new FileOutputStream(outPutFilename);

            baos.writeTo(out);

        } catch (FileNotFoundException e) {

            e.printStackTrace();

            return null;

        } catch (IOException e) {

            e.printStackTrace();

            return null;

        }finally {

            // 关闭各种流

            try {

                if (out != null) out.close();

                if (baos != null) baos.close();

            } catch (IOException e) {

                e.printStackTrace();

            }

        }

  完整代码如下:

    /**

    * @param filePath 输入路径

    * @param outPutFilename  输出路径

    */

    public static String compressImage(String filePath, String outPutFilename) {

        // 指定最大大小和最大宽高

        int maxSize = 500;

        float maxHeight = 1200.0f;

        float maxWidth = 800.0f;

        Bitmap scaledBitmap;

        File imageFile = new File(filePath);

        if (!imageFile.exists()) {

            return null;

        }

        // 只解析图片的基本尺寸信息

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

        options.inJustDecodeBounds = true;

        BitmapFactory.decodeFile(filePath,options);

        // 计算图片比例  (Ratio : 比例)

        int actualHeight = options.outHeight;

        int actualWidth = options.outWidth;

        // 实际图片比例

        float imgRatio = (float)actualWidth / actualHeight;

        // 想要的最大图片比例

        float maxRatio = maxWidth / maxHeight;

        if(actualHeight == -1 || actualWidth == -1){

            try {

                ExifInterface exifInterface = new ExifInterface(filePath);

                actualHeight = exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_LENGTH, ExifInterface.ORIENTATION_NORMAL);//获取图片的高度

                actualWidth = exifInterface.getAttributeInt(ExifInterface.TAG_IMAGE_WIDTH, ExifInterface.ORIENTATION_NORMAL);//获取图片的宽度

                options.outWidth = actualWidth;

                options.outHeight = actualHeight;

            } catch (IOException e) {

                e.printStackTrace();

                return null;

            }

        }

        // 如果图片真实宽高里的某一个比设定的最大宽高大,才进行比例压缩

        if (actualHeight > maxHeight || actualWidth > maxWidth) {

            if (imgRatio < maxRatio) {

                imgRatio = maxHeight / actualHeight;

                actualWidth = (int) (imgRatio * actualWidth);

                actualHeight = (int) maxHeight;

            } else if (imgRatio > maxRatio) {

                imgRatio = maxWidth / actualWidth;

                actualHeight = (int) (imgRatio * actualHeight);

                actualWidth = (int) maxWidth;

            } else {

                actualHeight = (int) maxHeight;

                actualWidth = (int) maxWidth;

            }

        }

        // 计算 inSampleSize 的值

        options.inSampleSize = calculateInSampleSize(options, actualWidth, actualHeight);

        options.inJustDecodeBounds = false;

        options.inDither = false;

        options.inTempStorage = new byte[16*1024];

        Bitmap bmp;

        // 根据计算的 inSampleSize 的值从图片文件中提取Bitmap

        try{

            bmp = BitmapFactory.decodeFile(filePath,options);

        }

        catch(OutOfMemoryError exception){

            exception.printStackTrace();

            return null;

        }

         // 根据实际需要的图片尺寸创建新Bitmap

        try{

            scaledBitmap = Bitmap.createBitmap(actualWidth, actualHeight, Bitmap.Config.ARGB_8888);

        }

        catch(OutOfMemoryError exception){

            exception.printStackTrace();

            return null;

        }

        float ratioX = actualWidth / (float) options.outWidth;

        float ratioY = actualHeight / (float)options.outHeight;

        float middleX = actualWidth / 2.0f;

        float middleY = actualHeight / 2.0f;

        Matrix scaleMatrix = new Matrix();

        scaleMatrix.setScale(ratioX, ratioY, middleX, middleY);

        // 将从图片文件中提取的Bitmap画到新创建的Bitmap中

        Canvas canvas = new Canvas(scaledBitmap);

        canvas.setMatrix(scaleMatrix);

        canvas.drawBitmap(bmp, middleX - bmp.getWidth()/2, middleY - bmp.getHeight() / 2, new Paint(Paint.FILTER_BITMAP_FLAG));

        // 解析图片的Exif旋转信息,用于摆正图片

        ExifInterface exif;

        try {

            exif = new ExifInterface(filePath);

            int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED);

            Matrix matrix = new Matrix();

            if (orientation == ExifInterface.ORIENTATION_ROTATE_90) {

                matrix.postRotate(90);

            } else if (orientation == ExifInterface.ORIENTATION_ROTATE_180) {

                matrix.postRotate(180);

            } else if (orientation == ExifInterface.ORIENTATION_ROTATE_270) {

                matrix.postRotate(270);

            }

            // 如果图片是歪的,调整方向

            scaledBitmap = Bitmap.createBitmap(scaledBitmap, 0, 0,scaledBitmap.getWidth(), scaledBitmap.getHeight(), matrix, true);

        } catch (IOException e) {

            e.printStackTrace();

            return null;

        }

        ByteArrayOutputStream baos = null;

        FileOutputStream out = null;

        try {

            baos = new ByteArrayOutputStream();

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

            // 压缩比例

            int compressRatio = 100;

            while (approachTo(maxSize, baos.toByteArray().length) > 0) {

                baos.reset();

                scaledBitmap.compress(Bitmap.CompressFormat.JPEG, compressRatio,baos);

                compressRatio -= 3;

            }

            if(compressRatio != 100)

                compressRatio += 3;

            if(compressRatio != 100 && approachTo(maxSize, baos.toByteArray().length) < 0){

                baos.reset();

                compressRatio += 1;

                scaledBitmap.compress(Bitmap.CompressFormat.JPEG, compressRatio,baos);

            }

            out = new FileOutputStream(outPutFilename);

            baos.writeTo(out);

        } catch (FileNotFoundException e) {

            e.printStackTrace();

            return null;

        } catch (IOException e) {

            e.printStackTrace();

            return null;

        }finally {

            // 关闭各种流

            try {

                if (out != null) out.close();

                if (baos != null) baos.close();

            } catch (IOException e) {

                e.printStackTrace();

            }

        }

        return outPutFilename;

    }


    //计算采样率

    public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {

        final int height = options.outHeight;

        final int width = options.outWidth;

        int inSampleSize = 1;

        if (height > reqHeight || width > reqWidth) {

            final int heightRatio = Math.round((float) height / (float) reqHeight);

            final int widthRatio = Math.round((float) width / (float) reqWidth);

            inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio;

        }

        final float totalPixels = width * height;

        final float totalReqPixelsCap = reqWidth * reqHeight * 2;


        while (totalPixels / (inSampleSize * inSampleSize) > totalReqPixelsCap) {

            inSampleSize++;

        }

        return inSampleSize;

    }


  //因为图片压缩不能精确压缩,所以实际文件大小约等于规定大小就不压缩了, 这里默认误差 15%

    private static int approachTo(int maxSize, long realSize){

        double approachTopSize = maxSize * 1.15 * 1024;

        double approachBottomSize = maxSize * 0.85 * 1024;

        if(realSize > approachTopSize){

            return 1;

        }else if(realSize < approachBottomSize){

            return -1;

        }else{

            return 0;

        }

    }

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

推荐阅读更多精彩内容