帮我写一份安卓图片压缩的代码
时间: 2023-03-14 19:10:16 浏览: 141
我可以为你提供一份可用于安卓图片压缩的代码,它可以帮助你在安卓设备上有效地压缩图片://安卓图片压缩代码
public class CompressImage {
public static void main(String[] args) {
// 获取图片路径
String imgPath = "YourImagePath";
// 获取图片
Bitmap bitmap = BitmapFactory.decodeFile(imgPath);
// 压缩图片
bitmap = Bitmap.createScaledBitmap(bitmap, 200, 200, true);
// 保存图片
FileOutputStream out = new FileOutputStream(imgPath);
bitmap.compress(Bitmap.CompressFormat.JPEG, 90, out);
out.close();
}
}
阅读全文