mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 04:57:59 +01:00
reaccepting the EXIF related pull request for some git messup
This commit is contained in:
parent
3cb5cf1b91
commit
f856a48591
3 changed files with 129 additions and 64 deletions
|
@ -39,6 +39,7 @@ import com.simplemobiletools.gallery.pro.dialogs.OtherAspectRatioDialog
|
||||||
import com.simplemobiletools.gallery.pro.dialogs.ResizeDialog
|
import com.simplemobiletools.gallery.pro.dialogs.ResizeDialog
|
||||||
import com.simplemobiletools.gallery.pro.dialogs.SaveAsDialog
|
import com.simplemobiletools.gallery.pro.dialogs.SaveAsDialog
|
||||||
import com.simplemobiletools.gallery.pro.extensions.config
|
import com.simplemobiletools.gallery.pro.extensions.config
|
||||||
|
import com.simplemobiletools.gallery.pro.extensions.copyNonDimensionAttributesTo
|
||||||
import com.simplemobiletools.gallery.pro.extensions.fixDateTaken
|
import com.simplemobiletools.gallery.pro.extensions.fixDateTaken
|
||||||
import com.simplemobiletools.gallery.pro.extensions.openEditor
|
import com.simplemobiletools.gallery.pro.extensions.openEditor
|
||||||
import com.simplemobiletools.gallery.pro.helpers.*
|
import com.simplemobiletools.gallery.pro.helpers.*
|
||||||
|
@ -304,16 +305,7 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener
|
||||||
|
|
||||||
@TargetApi(Build.VERSION_CODES.N)
|
@TargetApi(Build.VERSION_CODES.N)
|
||||||
private fun saveImage() {
|
private fun saveImage() {
|
||||||
var inputStream: InputStream? = null
|
setOldExif()
|
||||||
try {
|
|
||||||
if (isNougatPlus()) {
|
|
||||||
inputStream = contentResolver.openInputStream(uri!!)
|
|
||||||
oldExif = ExifInterface(inputStream!!)
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
|
||||||
} finally {
|
|
||||||
inputStream?.close()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (crop_image_view.isVisible()) {
|
if (crop_image_view.isVisible()) {
|
||||||
crop_image_view.getCroppedImageAsync()
|
crop_image_view.getCroppedImageAsync()
|
||||||
|
@ -354,6 +346,20 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TargetApi(Build.VERSION_CODES.N)
|
||||||
|
private fun setOldExif() {
|
||||||
|
var inputStream: InputStream? = null
|
||||||
|
try {
|
||||||
|
if (isNougatPlus()) {
|
||||||
|
inputStream = contentResolver.openInputStream(uri!!)
|
||||||
|
oldExif = ExifInterface(inputStream!!)
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
} finally {
|
||||||
|
inputStream?.close()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun shareImage() {
|
private fun shareImage() {
|
||||||
ensureBackgroundThread {
|
ensureBackgroundThread {
|
||||||
when {
|
when {
|
||||||
|
@ -742,6 +748,8 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener
|
||||||
|
|
||||||
override fun onCropImageComplete(view: CropImageView, result: CropImageView.CropResult) {
|
override fun onCropImageComplete(view: CropImageView, result: CropImageView.CropResult) {
|
||||||
if (result.error == null) {
|
if (result.error == null) {
|
||||||
|
setOldExif()
|
||||||
|
|
||||||
val bitmap = result.bitmap
|
val bitmap = result.bitmap
|
||||||
if (isSharingBitmap) {
|
if (isSharingBitmap) {
|
||||||
isSharingBitmap = false
|
isSharingBitmap = false
|
||||||
|
@ -862,7 +870,7 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener
|
||||||
try {
|
try {
|
||||||
if (isNougatPlus()) {
|
if (isNougatPlus()) {
|
||||||
val newExif = ExifInterface(file.absolutePath)
|
val newExif = ExifInterface(file.absolutePath)
|
||||||
oldExif?.copyTo(newExif, false)
|
oldExif?.copyNonDimensionAttributesTo(newExif)
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
}
|
}
|
||||||
|
|
|
@ -986,7 +986,7 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
||||||
|
|
||||||
if (isNougatPlus()) {
|
if (isNougatPlus()) {
|
||||||
val newExif = ExifInterface(file.absolutePath)
|
val newExif = ExifInterface(file.absolutePath)
|
||||||
oldExif?.copyTo(newExif, false)
|
oldExif?.copyNonDimensionAttributesTo(newExif)
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,57 @@
|
||||||
|
package com.simplemobiletools.gallery.pro.extensions
|
||||||
|
|
||||||
|
import android.media.ExifInterface
|
||||||
|
import java.lang.reflect.Field
|
||||||
|
import java.lang.reflect.Modifier
|
||||||
|
|
||||||
|
fun ExifInterface.copyNonDimensionAttributesTo(destination: ExifInterface) {
|
||||||
|
val attributes = ExifInterfaceAttributes.AllNonDimensionAttributes
|
||||||
|
|
||||||
|
attributes.forEach {
|
||||||
|
val value = getAttribute(it)
|
||||||
|
if (value != null) {
|
||||||
|
destination.setAttribute(it, value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
destination.saveAttributes()
|
||||||
|
} catch (ignored: Exception) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class ExifInterfaceAttributes {
|
||||||
|
companion object {
|
||||||
|
val AllNonDimensionAttributes = getAllNonDimensionExifAttributes()
|
||||||
|
|
||||||
|
private fun getAllNonDimensionExifAttributes(): List<String> {
|
||||||
|
val tagFields = ExifInterface::class.java.fields.filter { field -> isExif(field) }
|
||||||
|
|
||||||
|
val excludeAttributes = arrayListOf(
|
||||||
|
ExifInterface.TAG_IMAGE_LENGTH,
|
||||||
|
ExifInterface.TAG_IMAGE_WIDTH,
|
||||||
|
ExifInterface.TAG_PIXEL_X_DIMENSION,
|
||||||
|
ExifInterface.TAG_PIXEL_Y_DIMENSION,
|
||||||
|
ExifInterface.TAG_THUMBNAIL_IMAGE_LENGTH,
|
||||||
|
ExifInterface.TAG_THUMBNAIL_IMAGE_WIDTH,
|
||||||
|
ExifInterface.TAG_ORIENTATION)
|
||||||
|
|
||||||
|
return tagFields
|
||||||
|
.map { tagField -> tagField.get(null) as String }
|
||||||
|
.filter { x -> !excludeAttributes.contains(x) }
|
||||||
|
.distinct()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun isExif(field: Field): Boolean {
|
||||||
|
return field.type == String::class.java &&
|
||||||
|
isPublicStaticFinal(field.modifiers) &&
|
||||||
|
field.name.startsWith("TAG_")
|
||||||
|
}
|
||||||
|
|
||||||
|
private const val publicStaticFinal = Modifier.PUBLIC or Modifier.STATIC or Modifier.FINAL
|
||||||
|
|
||||||
|
private fun isPublicStaticFinal(modifiers: Int): Boolean {
|
||||||
|
return modifiers and publicStaticFinal > 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue