Scale down letter in contact picture fallback image
This commit is contained in:
parent
f73ef35892
commit
90601f3470
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue