UCrop地址 https://github.com/Yalantis/uCrop
UCrop.of(Uri.parse("file://"+response.getAbsolutePath()), Uri.parse(new WeplayPathManager().getSaveCropImageUrl()))
.withAspectRatio(4, 4)
.withMaxResultSize(600, 600)
.start(activity);
打印后的参数一:
file:///storage/emulated/0/Android/data/com.tooopen.weplay/cache/image/20170603071051.jpg
打印后的参数二:
/storage/emulated/0/Android/data/com.tooopen.weplay/cache/image/201706030711312.jpg
UCrop.of("","")...
第一参数是Uri,使用的时候需要加上 file://
第二个参数也是uri,不过却不需要加上 file://
具体没时间看源码,先记录
UCrop使用时,只能使用本地图片,所以如果剪切网络图片,需先下载
UCrop的第一个参数需要加上 File://
网友评论