From image URL am downloading image using picasso lib, How can i cutoff(crop) bottom part of image and show it in Imageview.
I used below code which makes crop at center, but now i need cutoff at bottom which is more than 150 height.
Picasso.with(mContext).load(offerImage.getUrl()).resize(500, 150).centerCrop().onlyScaleDown().into(holder.ivOfferImage);
Thanks.