Compressor.getDefault(this)
.compressToFileAsObservable(actualImage)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new Action1 < File > () {
@Override
public void call(File file) {
compressedImage = file;
}
}, new Action1 < Throwable > () {
@Override
public void call(Throwable throwable) {
showError(throwable.getMessage());
}
});
压缩后的图像未显示在我的存储中,我的图像保存路径为:
/data/user/0/com.example.compressor/cache:Compressor/IMG_20190421_111936.jpeg
我想将图像保存在手机存储中。
答案 0 :(得分:1)
您不能在文件路径中使用 Integer
。