特点:
1、支持压缩单张图片和多张图片
使用方法
1、添加依赖
Step 1. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.nanchen2251:CompressHelper:1.0.5'
}
2、在Activity里面使用
File newFile = CompressHelper.getDefault(this).compressToFile(oldFile);
3、你也可以自定义属性
File newFile = new CompressHelper.Builder(this)
.setMaxWidth(720) // 默认最大宽度为720
.setMaxHeight(960) // 默认最大高度为960
.setQuality(80) // 默认压缩质量为80
.setFileName(yourFileName) // 设置你需要修改的文件名
.setCompressFormat(CompressFormat.JPEG) // 设置默认压缩为jpg格式
.setDestinationDirectoryPath(Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES).getAbsolutePath())
.build()
.compressToFile(oldFile);
总结:
/**
* 在Activity里面使用
* dateStr 图片的绝对路径
* */
File oldFile = new File(dateStr);
// File newFile = CompressHelper.getDefault(this).compressToFile(oldFile);
// File newFile = new CompressHelper.Builder(context)
// .setMaxWidth(360) // 默认最大宽度为720
// .setMaxHeight(480) // 默认最大高度为960
// .setQuality(80) // 默认压缩质量为80
// .setCompressFormat(Bitmap.CompressFormat.JPEG) // 设置默认压缩为jpg格式
// .setDestinationDirectoryPath(Environment.getExternalStoragePublicDirectory("Aruidde").getAbsolutePath()) //压缩图片所在路径
// .build()
// .compressToFile(oldFile);
/**
* 但是不会存储压缩后的图片
* 压缩后的Bitmap
* */
// Bitmap bitmap = CompressHelper.getDefault(context).compressToBitmap(oldFile);
Bitmap bitmap = new CompressHelper.Builder(context)
.setMaxWidth(360) // 默认最大宽度为720
.setMaxHeight(480) // 默认最大高度为960
.build()
.compressToBitmap(oldFile);
/**
* 适合API 28
* 将图片压缩并转化为Bitmap
* */
// Bitmap arrBitmap = ImageCompressUtil.compressBySize(dateStr, 300, 300);
// Glide.with(context).load(newFile).into(holder.img_photo);
Glide.with(context).load(bitmap).into(holder.img_photo);
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/119199.html