Forgive me first, I can not speak English properly.
I used Piccaso library for Android to get an image and show that in an imageview in a baseadapter, but they are high volume images.
What is the best way to resize the image quickly?
try following
Picasso
.with(context)
.load(url)
.resize(600, 200) // resizes the image to these dimensions (in pixel). does not respect aspect ratio
.into(imageViewResize);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With