mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +01:00
do not delete the image if rotating fails, related to #234
This commit is contained in:
parent
6810b3f68b
commit
dfc99e68e4
1 changed files with 5 additions and 3 deletions
|
@ -233,10 +233,12 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
|||
val currPath = getCurrentPath()
|
||||
SaveAsDialog(this, currPath) {
|
||||
try {
|
||||
val file = File(it)
|
||||
val selectedFile = File(it)
|
||||
val tmpFile = File(selectedFile.parent, "tmp_${it.getFilenameFromPath()}")
|
||||
val bitmap = BitmapFactory.decodeFile(currPath)
|
||||
getFileOutputStream(file) {
|
||||
saveFile(file, bitmap, it)
|
||||
getFileOutputStream(tmpFile) {
|
||||
saveFile(tmpFile, bitmap, it)
|
||||
renameFile(tmpFile, selectedFile) { }
|
||||
}
|
||||
} catch (e: OutOfMemoryError) {
|
||||
toast(R.string.out_of_memory_error)
|
||||
|
|
Loading…
Reference in a new issue