We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d522305 commit 7fe17f2Copy full SHA for 7fe17f2
app/src/main/java/com/nextcloud/utils/OCFileUtils.kt
@@ -72,6 +72,7 @@ object OCFileUtils {
72
h = tmp
73
}
74
75
+ Log_OC.d(TAG, "Using exif imageDimension: $w x $h")
76
if (w > 0 && h > 0) w to h else null
77
} catch (_: Exception) {
78
null
@@ -82,6 +83,8 @@ object OCFileUtils {
82
83
android.graphics.BitmapFactory.decodeFile(path, options)
84
val w = options.outWidth
85
val h = options.outHeight
86
+
87
+ Log_OC.d(TAG, "Using bitmap factory imageDimension: $w x $h")
88
89
90
0 commit comments