Scale down letter in contact picture fallback image

This commit is contained in:
cketti 2019-07-24 17:54:10 +02:00
parent f73ef35892
commit 90601f3470

View file

@ -25,7 +25,7 @@ class ContactLetterBitmapCreator(
isAntiAlias = true
style = Paint.Style.FILL
setARGB(255, 255, 255, 255)
textSize = (pictureSizeInPx * 3 / 4).toFloat() // just scale this down a bit
textSize = pictureSizeInPx.toFloat() * 0.65f
}
val rect = Rect()