do not use half resolution at loading initial bitmap

This commit is contained in:
tibbi 2018-08-07 12:38:37 +02:00
parent 1fa54e6c1a
commit 8868b73d28
1 changed files with 1 additions and 8 deletions

View File

@ -234,17 +234,10 @@ class PhotoFragment : ViewPagerFragment() {
} }
private fun loadBitmap(degrees: Int = 0) { private fun loadBitmap(degrees: Int = 0) {
var targetWidth = ViewPagerActivity.screenWidth
var targetHeight = ViewPagerActivity.screenHeight
if (degrees == 0) {
targetWidth /= 2
targetHeight /= 2
}
val picasso = Picasso.get() val picasso = Picasso.get()
.load(File(medium.path)) .load(File(medium.path))
.centerInside() .centerInside()
.resize(targetWidth, targetHeight) .resize(ViewPagerActivity.screenWidth, ViewPagerActivity.screenHeight)
if (degrees != 0) { if (degrees != 0) {
picasso.rotate(degrees.toFloat()) picasso.rotate(degrees.toFloat())