最接近微信的图片压缩算法Luban

2023-10-27 18:10

本文主要是介绍最接近微信的图片压缩算法Luban,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Luban是一个国内很牛逼的图片压缩库:https://github.com/Curzibn/Luban

使用这个库有很多东西都没法自己修改了(比如压缩后图片保存的地址)。所以我把源码弄下来。自己做一个util包。用起来就很方便了。


这里把luban的代码全部弄过来。放到imageutil包里。

贴代码:

调用的时候:


Preconditions类:

final class Preconditions {/**
     * Ensures that an object reference passed as a parameter to the calling method is not null.
     *
     * @param reference an object reference
     * @return the non-null reference that was validated
     * @throws NullPointerException if {@code reference} is null
     */
    static <T> T checkNotNull(T reference) {if (reference == null) {throw new NullPointerException();
        }return reference;
    }/**
     * Ensures that an object reference passed as a parameter to the calling method is not null.
     *
     * @param reference    an object reference
     * @param errorMessage the exception message to use if the check fails; will be converted to a
     *                     string using {@link String#valueOf(Object)}
     * @return the non-null reference that was validated
     * @throws NullPointerException if {@code reference} is null
     */
    static <T> T checkNotNull(T reference, @Nullable Object errorMessage) {if (reference == null) {throw new NullPointerException(String.valueOf(errorMessage));
        }return reference;
    }
}
OnMultiCompressListener类:
public interface OnMultiCompressListener {/**
     * Fired when the compression is started, override to handle in your own code
     */
    void onStart();

    /**
     * Fired when a compression returns successfully, override to handle in your own code
     */
    void onSuccess(List<File> fileList);

    /**
     * Fired when a compression fails to complete, override to handle in your own code
     */
    void onError(Throwable e);


}
OnCompressListener类
public interface OnCompressListener {/**
     * Fired when the compression is started, override to handle in your own code
     */
    void onStart();

    /**
     * Fired when a compression returns successfully, override to handle in your own code
     */
    void onSuccess(File file);

    /**
     * Fired when a compression fails to complete, override to handle in your own code
     */
    void onError(Throwable e);

}
Luban类
/**
 * 选择什么档位看需要--一般情况都推荐选THIRD_GEAR * 1.3种档次都进行了质量压缩,要上传到服务器的话尽量选3(清晰度可以,大小可以)
 * 2.如果像素不能变,就只能选CUSTOM_GEAR(纯质量压缩)
 * 3.getCacheFilePath方法中修改图片保存路径
 */
public class Luban {//最后图片效果4好于3好于1
    //也就是1压缩都最厉害但是不清晰了
    //3也压缩的厉害清晰度也可以
    //4是压缩的最少的。清晰度最好
    public static final int FIRST_GEAR = 1;//质量,尺寸压缩都进行了
    public static final int THIRD_GEAR = 3;//质量,尺寸压缩都进行了
    public static final int CUSTOM_GEAR = 4;//只进行质量压缩,像素不变


    private static final String TAG = "Luban";
    private static String DEFAULT_DISK_CACHE_DIR = "luban_disk_cache";

    private static volatile Luban INSTANCE;

    private final File mCacheDir;

    private OnCompressListener compressListener;

    private File mFile;

    private List<File> mFileList;

    private int gear = THIRD_GEAR;

    private String filename;

    private int mMaxSize;
    private int mMaxHeight;
    private int mMaxWidth;

    protected Luban(File cacheDir) {mCacheDir = cacheDir;
    }/**
     * Returns a directory with a default name in the private cache directory of the application to
     * use to store
     * retrieved media and thumbnails.
     *
     * @param context A context.
     * @see #getPhotoCacheDir(Context, String)
     */
    private static File getPhotoCacheDir(Context context) {return getPhotoCacheDir(context, Luban.DEFAULT_DISK_CACHE_DIR);
    }/**
     * Returns a directory with the given name in the private cache directory of the application to
     * use to store
     * retrieved media and thumbnails.
     *
     * @param context A context.
     * @param cacheName The name of the subdirectory in which to store the cache.
     * @see #getPhotoCacheDir(Context)
     */
    private static File getPhotoCacheDir(Context context, String cacheName) {File cacheDir = context.getCacheDir();
        if (cacheDir != null) {File result = new File(cacheDir, cacheName);
            if (!result.mkdirs() && (!result.exists() || !result.isDirectory())) {// File wasn't able to create a directory, or the result exists but not a directory
                return null;
            }return result;
        }if (Log.isLoggable(TAG, Log.ERROR)) {Log.e(TAG, "default disk cache dir is null");
        }return null;
    }public static Luban get(Context context) {if (INSTANCE == null) INSTANCE = new Luban(Luban.getPhotoCacheDir(context));

        return INSTANCE;
    }public Luban clearCache() {if (mCacheDir.exists()) {deleteFile(mCacheDir);
        }return this;
    }@Deprecated
    public Subscription launch() {checkNotNull(mFile,
                "the image file cannot be null, please call .load() before this method!");

        return Observable.just(mFile).map(new Func1<File, File>() {@Override
                    public File call(File file) {return compressImage(gear, file);
                    }}).subscribeOn(Schedulers.computation()).observeOn(AndroidSchedulers.mainThread()).onErrorResumeNext(Observable.<File>empty()).doOnRequest(new Action1<Long>() {@Override
                    public void call(Long aLong) {compressListener.onStart();
                    }}).subscribe(new Action1<File>() {@Override
                    public void call(File file) {if (compressListener != null) compressListener.onSuccess(file);
                    }}, new Action1<Throwable>() {@Override
                    public void call(Throwable throwable) {compressListener.onError(throwable);
                    }});
    }// for single file
    public Subscription launch(final OnCompressListener listener) {checkNotNull(listener, "the listener cannot be null !");

        if (mFile == null) {if (mFileList != null && !mFileList.isEmpty()) {mFile = mFileList.get(0);
            } else {throw new NullPointerException("the image file cannot be null, please call .load() before this method!");
            }}return Observable.just(mFile).map(new Func1<File, File>() {@Override
                    public File call(File file) {return compressImage(gear, file);
                    }}).subscribeOn(Schedulers.computation()).observeOn(AndroidSchedulers.mainThread()).onErrorResumeNext(Observable.<File>empty()).doOnRequest(new Action1<Long>() {@Override
                    public void call(Long aLong) {listener.onStart();
                    }}).subscribe(new Action1<File>() {@Override
                    public void call(File file) {listener.onSuccess(file);
                    }}, new Action1<Throwable>() {@Override
                    public void call(Throwable throwable) {listener.onError(throwable);
                    }});
    }// for multi file
    public Subscription launch(final OnMultiCompressListener listener) {checkNotNull(listener, "the listener cannot be null !");

        if (mFileList == null) {if (mFile != null) {mFileList = new ArrayList<>();
                mFileList.add(mFile);
            } else {throw new NullPointerException("the file list cannot be null, please call .load() before this method!");
            }}List<Observable<File>> observables = new ArrayList<>();
        for (File file : mFileList) {observables.add(Observable.just(file).map(new Func1<File, File>() {@Override
                public File call(File file) {return compressImage(gear, file);
                }}));
        }return Observable.merge(observables).subscribeOn(Schedulers.computation()).toSortedList(SORT_FILE).observeOn(AndroidSchedulers.mainThread()).doOnRequest(new Action1<Long>() {@Override
                    public void call(Long aLong) {listener.onStart();
                    }}).subscribe(new Action1<List<File>>() {@Override
                    public void call(List<File> fileList) {listener.onSuccess(fileList);
                    }}, new Action1<Throwable>() {@Override
                    public void call(Throwable throwable) {listener.onError(throwable);
                    }});
    }public Luban load(File file) {mFile = file;
        return this;
    }public Luban load(List<File> fileList) {mFileList = fileList;
        return this;
    }@Deprecated
    public Luban setCompressListener(OnCompressListener listener) {compressListener = listener;
        return this;
    }public Luban putGear(int gear) {this.gear = gear;
        return this;
    }public Luban setFilename(String filename) {this.filename = filename;
        return this;
    }public Luban setMaxSize(int size) {this.mMaxSize = size;
        return this;
    }public Luban setMaxWidth(int width) {this.mMaxWidth = width;
        return this;
    }public Luban setMaxHeight(int height) {this.mMaxHeight = height;
        return this;
    }public Observable<File> asObservable() {return asObservable(Schedulers.computation());
    }public Observable<File> asObservable(Scheduler scheduler) {checkNotNull(mFile,
                "the image file cannot be null, please call .load() before this method!");

        return Observable.fromCallable(new Callable<File>() {@Override
            public File call() throws Exception {return compressImage(gear, mFile);
            }}).subscribeOn(scheduler);
    }public Observable<List<File>> asListObservable() {return asListObservable(Schedulers.computation());
    }public Observable<List<File>> asListObservable(Scheduler scheduler) {checkNotNull(mFileList,
                "the image list cannot be null, please call .load() before this method!");

        List<Observable<File>> observables = new ArrayList<>();
        for (File file : mFileList) {observables.add(Observable.just(file).map(new Func1<File, File>() {@Override
                public File call(File file) {return compressImage(gear, file);
                }}));
        }return Observable.merge(observables).toSortedList(SORT_FILE).subscribeOn(scheduler);
    }private Func2<File, File, Integer> SORT_FILE = new Func2<File, File, Integer>() {@Override
        public Integer call(File file, File file2) {return file.getName().compareTo(file2.getName());
        }};

    private File compressImage(int gear, File file) {switch (gear) {case THIRD_GEAR:return thirdCompress(file);
            case CUSTOM_GEAR:return customCompress(file);
            case FIRST_GEAR:return firstCompress(file);
            default:return file;
        }}private File thirdCompress(@NonNull File file) {String thumb = getCacheFilePath();

        double size;
        String filePath = file.getAbsolutePath();

        int angle = getImageSpinAngle(filePath);
        int width = getImageSize(filePath)[0];
        int height = getImageSize(filePath)[1];
        int thumbW = width % 2 == 1 ? width + 1 : width;
        int thumbH = height % 2 == 1 ? height + 1 : height;

        width = thumbW > thumbH ? thumbH : thumbW;
        height = thumbW > thumbH ? thumbW : thumbH;

        double scale = ((double) width / height);

        if (scale <= 1 && scale > 0.5625) {if (height < 1664) {if (file.length() / 1024 < 150) return file;

                size = (width * height) / Math.pow(1664, 2) * 150;
                size = size < 60 ? 60 : size;
            } else if (height >= 1664 && height < 4990) {thumbW = width / 2;
                thumbH = height / 2;
                size = (thumbW * thumbH) / Math.pow(2495, 2) * 300;
                size = size < 60 ? 60 : size;
            } else if (height >= 4990 && height < 10240) {thumbW = width / 4;
                thumbH = height / 4;
                size = (thumbW * thumbH) / Math.pow(2560, 2) * 300;
                size = size < 100 ? 100 : size;
            } else {int multiple = height / 1280 == 0 ? 1 : height / 1280;
                thumbW = width / multiple;
                thumbH = height / multiple;
                size = (thumbW * thumbH) / Math.pow(2560, 2) * 300;
                size = size < 100 ? 100 : size;
            }} else if (scale <= 0.5625 && scale > 0.5) {if (height < 1280 && file.length() / 1024 < 200) return file;

            int multiple = height / 1280 == 0 ? 1 : height / 1280;
            thumbW = width / multiple;
            thumbH = height / multiple;
            size = (thumbW * thumbH) / (1440.0 * 2560.0) * 400;
            size = size < 100 ? 100 : size;
        } else {int multiple = (int) Math.ceil(height / (1280.0 / scale));
            thumbW = width / multiple;
            thumbH = height / multiple;
            size = ((thumbW * thumbH) / (1280.0 * (1280 / scale))) * 500;
            size = size < 100 ? 100 : size;
        }return compress(filePath, thumb, thumbW, thumbH, angle, (long) size);
    }private File firstCompress(@NonNull File file) {int minSize = 60;
        int longSide = 720;
        int shortSide = 1280;

        String thumbFilePath = getCacheFilePath();
        String filePath = file.getAbsolutePath();

        long size = 0;
        long maxSize = file.length() / 5;

        int angle = getImageSpinAngle(filePath);
        int[] imgSize = getImageSize(filePath);
        int width = 0, height = 0;
        if (imgSize[0] <= imgSize[1]) {double scale = (double) imgSize[0] / (double) imgSize[1];
            if (scale <= 1.0 && scale > 0.5625) {width = imgSize[0] > shortSide ? shortSide : imgSize[0];
                height = width * imgSize[1] / imgSize[0];
                size = minSize;
            } else if (scale <= 0.5625) {height = imgSize[1] > longSide ? longSide : imgSize[1];
                width = height * imgSize[0] / imgSize[1];
                size = maxSize;
            }} else {double scale = (double) imgSize[1] / (double) imgSize[0];
            if (scale <= 1.0 && scale > 0.5625) {height = imgSize[1] > shortSide ? shortSide : imgSize[1];
                width = height * imgSize[0] / imgSize[1];
                size = minSize;
            } else if (scale <= 0.5625) {width = imgSize[0] > longSide ? longSide : imgSize[0];
                height = width * imgSize[1] / imgSize[0];
                size = maxSize;
            }}return compress(filePath, thumbFilePath, width, height, angle, size);
    }private File customCompress(@NonNull File file) {String thumbFilePath = getCacheFilePath();
        String filePath = file.getAbsolutePath();

        int angle = getImageSpinAngle(filePath);
        long fileSize = mMaxSize > 0 && mMaxSize < file.length() / 1024 ? mMaxSize : file.length() / 1024;

        int[] size = getImageSize(filePath);
        int width = size[0];
        int height = size[1];

        if (mMaxSize > 0 && mMaxSize < file.length() / 1024f) {// find a suitable size
            float scale = (float) Math.sqrt(file.length() / 1024f / mMaxSize);
            width = (int) (width / scale);
            height = (int) (height / scale);
        }// check the width&height
        if (mMaxWidth > 0) {width = Math.min(width, mMaxWidth);
        }if (mMaxHeight > 0) {height = Math.min(height, mMaxHeight);
        }float scale = Math.min((float) width / size[0], (float) height / size[1]);
        width = (int) (size[0] * scale);
        height = (int) (size[1] * scale);

        return compress(filePath, thumbFilePath, width, height, angle, fileSize);
    }/**
     * 压缩后图片路径
     * @return
     */
    private String getCacheFilePath() {String name;
        if (TextUtils.isEmpty(filename)) {name = System.currentTimeMillis() + ".jpg";
        } else {name = filename;
        }return Environment.getExternalStorageDirectory().getPath() + File.separator + "rxjavaTest"+ File.separator + name;
    }private void deleteFile(File fileOrDirectory) {if (fileOrDirectory.isDirectory()) {for (File file : fileOrDirectory.listFiles()) {deleteFile(file);
            }}fileOrDirectory.delete();
    }/**
     * obtain the image's width and height
     *
     * @param imagePath the path of image
     */
    public int[] getImageSize(String imagePath) {int[] res = new int[2];

        BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        options.inSampleSize = 1;
        BitmapFactory.decodeFile(imagePath, options);

        res[0] = options.outWidth;
        res[1] = options.outHeight;

        return res;
    }/**
     * obtain the thumbnail that specify the size
     *
     * @param imagePath the target image path
     * @param width the width of thumbnail
     * @param height the height of thumbnail
     * @return {@link Bitmap}
     */
    private Bitmap compress(String imagePath, int width, int height) {BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(imagePath, options);

        int outH = options.outHeight;
        int outW = options.outWidth;
        int inSampleSize = 1;

        if (outH > height || outW > width) {int halfH = outH / 2;
            int halfW = outW / 2;

            while ((halfH / inSampleSize) > height && (halfW / inSampleSize) > width) {inSampleSize *= 2;
            }}options.inSampleSize = inSampleSize;

        options.inJustDecodeBounds = false;

        int heightRatio = (int) Math.ceil(options.outHeight / (float) height);
        int widthRatio = (int) Math.ceil(options.outWidth / (float) width);

        if (heightRatio > 1 || widthRatio > 1) {if (heightRatio > widthRatio) {options.inSampleSize = heightRatio;
            } else {options.inSampleSize = widthRatio;
            }}options.inJustDecodeBounds = false;

        return BitmapFactory.decodeFile(imagePath, options);
    }/**
     * obtain the image rotation angle
     *
     * @param path path of target image
     */
    private int getImageSpinAngle(String path) {int degree = 0;
        try {ExifInterface exifInterface = new ExifInterface(path);
            int orientation = exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                    ExifInterface.ORIENTATION_NORMAL);
            switch (orientation) {case ExifInterface.ORIENTATION_ROTATE_90:degree = 90;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_180:degree = 180;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_270:degree = 270;
                    break;
            }} catch (IOException e) {e.printStackTrace();
        }return degree;
    }/**
     * 指定参数压缩图片
     * create the thumbnail with the true rotate angle
     *
     * @param largeImagePath the big image path
     * @param thumbFilePath the thumbnail path
     * @param width width of thumbnail
     * @param height height of thumbnail
     * @param angle rotation angle of thumbnail
     * @param size the file size of image
     */
    private File compress(String largeImagePath, String thumbFilePath, int width, int height,
            int angle, long size) {Bitmap thbBitmap = compress(largeImagePath, width, height);

        thbBitmap = rotatingImage(angle, thbBitmap);

        return saveImage(thumbFilePath, thbBitmap, size);
    }/**
     * 旋转图片
     * rotate the image with specified angle
     *
     * @param angle the angle will be rotating 旋转的角度
     * @param bitmap target image               目标图片
     */
    private static Bitmap rotatingImage(int angle, Bitmap bitmap) {//rotate image
        Matrix matrix = new Matrix();
        matrix.postRotate(angle);

        //create a new image
        return Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix,
                true);
    }/**
     * 保存图片到指定路径
     * Save image with specified size
     *
     * @param filePath the image file save path 储存路径
     * @param bitmap the image what be save   目标图片
     * @param size the file size of image   期望大小
     */
    private File saveImage(String filePath, Bitmap bitmap, long size) {checkNotNull(bitmap, TAG + "bitmap cannot be null");

        File result = new File(filePath.substring(0, filePath.lastIndexOf("/")));

        if (!result.exists() && !result.mkdirs()) return null;

        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        int options = 100;
        bitmap.compress(Bitmap.CompressFormat.JPEG, options, stream);

        while (stream.toByteArray().length / 1024 > size && options > 6) {stream.reset();
            options -= 6;
            bitmap.compress(Bitmap.CompressFormat.JPEG, options, stream);
        }try {FileOutputStream fos = new FileOutputStream(filePath);
            fos.write(stream.toByteArray());
            fos.flush();
            fos.close();
        } catch (IOException e) {e.printStackTrace();
        }return new File(filePath);
    }
}


这篇关于最接近微信的图片压缩算法Luban的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/287444

相关文章

基于Python实现一个图片拆分工具

《基于Python实现一个图片拆分工具》这篇文章主要为大家详细介绍了如何基于Python实现一个图片拆分工具,可以根据需要的行数和列数进行拆分,感兴趣的小伙伴可以跟随小编一起学习一下... 简单介绍先自己选择输入的图片,默认是输出到项目文件夹中,可以自己选择其他的文件夹,选择需要拆分的行数和列数,可以通过

java向微信服务号发送消息的完整步骤实例

《java向微信服务号发送消息的完整步骤实例》:本文主要介绍java向微信服务号发送消息的相关资料,包括申请测试号获取appID/appsecret、关注公众号获取openID、配置消息模板及代码... 目录步骤1. 申请测试系统2. 公众号账号信息3. 关注测试号二维码4. 消息模板接口5. Java测试

利用Python脚本实现批量将图片转换为WebP格式

《利用Python脚本实现批量将图片转换为WebP格式》Python语言的简洁语法和库支持使其成为图像处理的理想选择,本文将介绍如何利用Python实现批量将图片转换为WebP格式的脚本,WebP作为... 目录简介1. python在图像处理中的应用2. WebP格式的原理和优势2.1 WebP格式与传统

基于 HTML5 Canvas 实现图片旋转与下载功能(完整代码展示)

《基于HTML5Canvas实现图片旋转与下载功能(完整代码展示)》本文将深入剖析一段基于HTML5Canvas的代码,该代码实现了图片的旋转(90度和180度)以及旋转后图片的下载... 目录一、引言二、html 结构分析三、css 样式分析四、JavaScript 功能实现一、引言在 Web 开发中,

Python如何去除图片干扰代码示例

《Python如何去除图片干扰代码示例》图片降噪是一个广泛应用于图像处理的技术,可以提高图像质量和相关应用的效果,:本文主要介绍Python如何去除图片干扰的相关资料,文中通过代码介绍的非常详细,... 目录一、噪声去除1. 高斯噪声(像素值正态分布扰动)2. 椒盐噪声(随机黑白像素点)3. 复杂噪声(如伪

Python中图片与PDF识别文本(OCR)的全面指南

《Python中图片与PDF识别文本(OCR)的全面指南》在数据爆炸时代,80%的企业数据以非结构化形式存在,其中PDF和图像是最主要的载体,本文将深入探索Python中OCR技术如何将这些数字纸张转... 目录一、OCR技术核心原理二、python图像识别四大工具库1. Pytesseract - 经典O

Python实现精准提取 PDF中的文本,表格与图片

《Python实现精准提取PDF中的文本,表格与图片》在实际的系统开发中,处理PDF文件不仅限于读取整页文本,还有提取文档中的表格数据,图片或特定区域的内容,下面我们来看看如何使用Python实... 目录安装 python 库提取 PDF 文本内容:获取整页文本与指定区域内容获取页面上的所有文本内容获取

Python基于微信OCR引擎实现高效图片文字识别

《Python基于微信OCR引擎实现高效图片文字识别》这篇文章主要为大家详细介绍了一款基于微信OCR引擎的图片文字识别桌面应用开发全过程,可以实现从图片拖拽识别到文字提取,感兴趣的小伙伴可以跟随小编一... 目录一、项目概述1.1 开发背景1.2 技术选型1.3 核心优势二、功能详解2.1 核心功能模块2.

Go语言如何判断两张图片的相似度

《Go语言如何判断两张图片的相似度》这篇文章主要为大家详细介绍了Go语言如何中实现判断两张图片的相似度的两种方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 在介绍技术细节前,我们先来看看图片对比在哪些场景下可以用得到:图片去重:自动删除重复图片,为存储空间"瘦身"。想象你是一个

使用Python实现base64字符串与图片互转的详细步骤

《使用Python实现base64字符串与图片互转的详细步骤》要将一个Base64编码的字符串转换为图片文件并保存下来,可以使用Python的base64模块来实现,这一过程包括解码Base64字符串... 目录1. 图片编码为 Base64 字符串2. Base64 字符串解码为图片文件3. 示例使用注意