shaohui10086 / AdvancedLuban

An Advanced Compress Image Library for Android / 高效、简洁的图片压缩工具库
http://shaohui.me
Apache License 2.0
1.32k stars 192 forks source link

建议加入压缩图片格式控制 #22

Closed hpmdr closed 7 years ago

hpmdr commented 8 years ago

图片压缩希望添加保存图片格式自定义啊,因为同质量下webp格式的体积比jpeg小很多啊。而且现在android4.0以上都支持webp了。

    /**
     * Specifies the known formats a bitmap can be compressed into
     */
    public enum CompressFormat {
        JPEG    (0),
        PNG     (1),
        WEBP    (2);

        CompressFormat(int nativeInt) {
            this.nativeInt = nativeInt;
        }
        final int nativeInt;
    }
    bitmap.compress(Bitmap.CompressFormat.JPEG, options, stream);
shaohui10086 commented 7 years ago

嗯嗯,可以考虑一下,不过感觉国内没几家用webp图片的

shaohui10086 commented 7 years ago

已经实现,不过暂时没有支持PNG,因为需要变动策略,暂时放到后面解决