如何在新文件夹中保存压缩图像

时间:2019-04-25 05:31:58

标签: java

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

我想将图像保存在手机存储中。

1 个答案:

答案 0 :(得分:1)

您不能在文件路径中使用 Integer