I have a high resolution image
Uri
and I would like to reduce the image quality and size since i'm uploading it to a server and then load it afterwards as a smaller version of the original image.
I tried this:
Picasso.with(context).load(image).resize(100,100).get();
But it didn't work cause you need to do this from a separate Thread
and I didn't find a listener that tells you when the resizing is over.
Does anyone has a solution that can reduce the image quality to get a smaller file size?