Android 图片裁剪 压缩等处理记录

裁剪

uCrop

Android 拍照 选择图片并裁剪

安卓应用图标与名称更新工具

实战图像识别:Compose + MLKit + CameraX

一个简洁的安卓项目参考

RxEasyHttp

EasyHttp

图片与文件上传

图片压缩详解

鲁班压缩

File 图片等转换方法

Android之图片压缩和Uri与String类型的路径转换,获取图片,文件大小的工具类

通过Uri获取到图片地址

java 复制代码
private String getRealPathFromURI(Uri uri) {
    ContentResolver contentResolver = getContentResolver();
    String[] projection = {MediaStore.Images.Media.DATA};
    Cursor cursor = contentResolver.query(uri, projection, null, null, null);
    
    if (cursor != null) {
        int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        String imagePath = cursor.getString(columnIndex);
        cursor.close();
        return imagePath;
    }
    return null;
}

Unable to find Gradle tasks to build: [:]. Build mode: ASSEMBLE. Tests: All

相关推荐
Yyyy48230 分钟前
MyCAT基础概念
android
Android轮子哥1 小时前
尝试解决 Android 适配最后一公里
android
雨白2 小时前
OkHttp 源码解析:enqueue 非同步流程与 Dispatcher 调度
android
风往哪边走3 小时前
自定义仿日历组件弹框
android
没有了遇见3 小时前
Android 外接 U 盘开发实战:从权限到文件复制
android
Monkey-旭4 小时前
Android 文件存储机制全解析
android·文件存储·kolin
zhangphil4 小时前
Android Coil 3拦截器Interceptor计算单次请求耗时,Kotlin
android·kotlin
DokiDoki之父5 小时前
多线程—飞机大战排行榜功能(2.0版本)
android·java·开发语言
用户2018792831677 小时前
强制关闭生命周期延时的Activity实现思路
android
用户2018792831677 小时前
Activity后生命周期暂停问题
android