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

相关推荐
XiaoLeisj38 分钟前
Android Kotlin 全链路系统化指南:从基础语法、类型系统与面向对象,到函数式编程、集合操作、协程并发与 Flow 响应式数据流实战
android·开发语言·kotlin·协程
恋猫de小郭2 小时前
2026,Android Compose 终于支持 Hot Reload 了,但是收费
android·前端·flutter
mygljx13 小时前
MySQL 数据库连接池爆满问题排查与解决
android·数据库·mysql
xinhuanjieyi14 小时前
ruoyimate导入sql\antflow\bpm_init_db.sql报错
android·数据库·sql
闲猫15 小时前
基于RABC的权限控制设计
android
星霜笔记18 小时前
GitMob — 手机端 GitHub 管理工具
android·kotlin·github·android jetpack
LiuYaoheng18 小时前
问题记录:Android Studio Low memory
android·ide·android studio
独隅19 小时前
Python 标准库 (Standard Library) 全面使用指南
android·开发语言·python
always_TT19 小时前
strlen、strcpy、strcat等常用字符串函数
android
qqty121719 小时前
MySQL Workbench菜单汉化为中文
android·数据库·mysql