最接近微信的图片压缩算法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

相关文章

Java实现将HTML文件与字符串转换为图片

《Java实现将HTML文件与字符串转换为图片》在Java开发中,我们经常会遇到将HTML内容转换为图片的需求,本文小编就来和大家详细讲讲如何使用FreeSpire.DocforJava库来实现这一功... 目录前言核心实现:html 转图片完整代码场景 1:转换本地 HTML 文件为图片场景 2:转换 H

Java实现在Word文档中添加文本水印和图片水印的操作指南

《Java实现在Word文档中添加文本水印和图片水印的操作指南》在当今数字时代,文档的自动化处理与安全防护变得尤为重要,无论是为了保护版权、推广品牌,还是为了在文档中加入特定的标识,为Word文档添加... 目录引言Spire.Doc for Java:高效Word文档处理的利器代码实战:使用Java为Wo

基于C#实现PDF转图片的详细教程

《基于C#实现PDF转图片的详细教程》在数字化办公场景中,PDF文件的可视化处理需求日益增长,本文将围绕Spire.PDFfor.NET这一工具,详解如何通过C#将PDF转换为JPG、PNG等主流图片... 目录引言一、组件部署二、快速入门:PDF 转图片的核心 C# 代码三、分辨率设置 - 清晰度的决定因

Python从Word文档中提取图片并生成PPT的操作代码

《Python从Word文档中提取图片并生成PPT的操作代码》在日常办公场景中,我们经常需要从Word文档中提取图片,并将这些图片整理到PowerPoint幻灯片中,手动完成这一任务既耗时又容易出错,... 目录引言背景与需求解决方案概述代码解析代码核心逻辑说明总结引言在日常办公场景中,我们经常需要从 W

使用Python实现无损放大图片功能

《使用Python实现无损放大图片功能》本文介绍了如何使用Python的Pillow库进行无损图片放大,区分了JPEG和PNG格式在放大过程中的特点,并给出了示例代码,JPEG格式可能受压缩影响,需先... 目录一、什么是无损放大?二、实现方法步骤1:读取图片步骤2:无损放大图片步骤3:保存图片三、示php

Java使用Thumbnailator库实现图片处理与压缩功能

《Java使用Thumbnailator库实现图片处理与压缩功能》Thumbnailator是高性能Java图像处理库,支持缩放、旋转、水印添加、裁剪及格式转换,提供易用API和性能优化,适合Web应... 目录1. 图片处理库Thumbnailator介绍2. 基本和指定大小图片缩放功能2.1 图片缩放的

Spring Boot 结合 WxJava 实现文章上传微信公众号草稿箱与群发

《SpringBoot结合WxJava实现文章上传微信公众号草稿箱与群发》本文将详细介绍如何使用SpringBoot框架结合WxJava开发工具包,实现文章上传到微信公众号草稿箱以及群发功能,... 目录一、项目环境准备1.1 开发环境1.2 微信公众号准备二、Spring Boot 项目搭建2.1 创建

基于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格式与传统