Always do resize operation on background thread
This commit is contained in:
parent
2919b36583
commit
388037f6b5
1 changed files with 23 additions and 21 deletions
|
@ -823,6 +823,7 @@ fun BaseSimpleActivity.launchResizeImageDialog(path: String, callback: (() -> Un
|
|||
}
|
||||
|
||||
fun BaseSimpleActivity.resizeImage(path: String, size: Point, callback: (success: Boolean) -> Unit) {
|
||||
ensureBackgroundThread {
|
||||
var oldExif: ExifInterface? = null
|
||||
if (isNougatPlus()) {
|
||||
val inputStream = contentResolver.openInputStream(Uri.fromFile(File(path)))
|
||||
|
@ -853,6 +854,7 @@ fun BaseSimpleActivity.resizeImage(path: String, size: Point, callback: (success
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun BaseSimpleActivity.rescanPathsAndUpdateLastModified(paths: ArrayList<String>) {
|
||||
rescanPaths(paths) {
|
||||
|
|
Loading…
Reference in a new issue