android - Crop image as square with picasso -
the following project provides lot of different transformations picasso
https://github.com/wasabeef/picasso-transformations
the 1 interested named cropsquaretransformation
, can apply using following code
picasso.with(mcontext) .load(r.drawable.demo) .transform(transformation) .transform(new cropsquaretransformation()) .into(holder.image);
you add dependency or copy , paste classes need.
Comments
Post a Comment