android 生成缩略图

OOM 
需要缩略图 (可以设置)  android:scaleType="fitXY"


public static Bitmap getMiniMap(String path, int size) {
        BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(path, options); // 此时返回bm为空
        options.inJustDecodeBounds = false;
        // 缩放比。由于是固定比例缩放,只用高或者宽其中一个数据进行计算即可
        int be;
        if (options.outHeight > options.outWidth) {
            be = (int) (options.outHeight / (float) size);
        } else {
            be = (int) (options.outWidth / (float) size);
        }
        if (be <= 0)
            be = 1;
        options.inSampleSize = be;
        options.inPreferredConfig = Bitmap.Config.RGB_565;
        options.inPurgeable = true;
        options.inInputShareable = true;
        // 重新读入图片,注意此时已经把options.inJustDecodeBounds 设回false了
        return BitmapFactory.decodeFile(path, options);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值