recognize 19:9 and 19:8 aspect ratios better

This commit is contained in:
tibbi 2018-06-10 22:51:22 +02:00
parent 24036931cd
commit 84199fb858
1 changed files with 16 additions and 0 deletions

View File

@ -47,6 +47,20 @@ data class MySize(val width: Int, val height: Int) {
return diff < RATIO_TOLERANCE return diff < RATIO_TOLERANCE
} }
private fun isNineteenToNine(): Boolean {
val selectedRatio = Math.abs(width / height.toFloat())
val checkedRatio = 19 / 9.toFloat()
val diff = Math.abs(selectedRatio - checkedRatio)
return diff < RATIO_TOLERANCE
}
private fun isNineteenToEight(): Boolean {
val selectedRatio = Math.abs(width / height.toFloat())
val checkedRatio = 19 / 8.toFloat()
val diff = Math.abs(selectedRatio - checkedRatio)
return diff < RATIO_TOLERANCE
}
private fun isOneNineToOne() = Math.abs(1.9 - (width / height.toFloat())) < RATIO_TOLERANCE private fun isOneNineToOne() = Math.abs(1.9 - (width / height.toFloat())) < RATIO_TOLERANCE
private fun isSquare() = width == height private fun isSquare() = width == height
@ -59,6 +73,8 @@ data class MySize(val width: Int, val height: Int) {
isThreeToTwo() -> "3:2" isThreeToTwo() -> "3:2"
isSixToFive() -> "6:5" isSixToFive() -> "6:5"
isOneNineToOne() -> "1.9:1" isOneNineToOne() -> "1.9:1"
isNineteenToNine() -> "19:9"
isNineteenToEight() -> "19:8"
isSquare() -> "1:1" isSquare() -> "1:1"
else -> context.resources.getString(R.string.other) else -> context.resources.getString(R.string.other)
} }