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

相关推荐
zopple21 分钟前
Laravel 10.x新特性全解析
android
鬼先生_sir22 分钟前
MySQL进阶-SQL高级语法全解析
android
Kapaseker24 分钟前
lazy 与 lateinit 到底有什么区别?
android·kotlin
黄林晴25 分钟前
慌了!Android 17 取消图标文字,你的 App 可能要找不到了
android
空中海25 分钟前
3.4 状态同步与生命周期管理
android·网络
砖厂小工43 分钟前
Android 开发的 AI coding 与 AI debugging
android·ai编程
peakmain91 小时前
CmComposeUI —— 基于 Kotlin Multiplatform Compose 的 UI 组件库
android
studyForMokey1 小时前
【Android面试】Glide专题
android·面试·glide
m0_738120721 小时前
渗透知识ctfshow——Web应用安全与防护(三)
android·前端·安全
y = xⁿ1 小时前
【保姆级 :图解MySQL 执行全链路讲解】主键索引扫描,全局扫描,索引下推还是分不清楚?这一篇就够啦
android·mysql