jdamcd / android-crop

Android library project for cropping images
4.54k stars 1.08k forks source link

Re-crop the image at a time #281

Closed iman2420 closed 6 years ago

iman2420 commented 6 years ago

If you use this line, you can not re_crop the image at the time:

  ` File cropped = new File(Objects.requireNonNull(getActivity()).getCacheDir(), "cropped");`

So it's best to change this part of the code, to:

` File cropped = new File(Objects.requireNonNull(getActivity()).getCacheDir(), "cropped_"+ System.currentTimeMillis());`