picasso-transformations icon indicating copy to clipboard operation
picasso-transformations copied to clipboard

An Android transformation library providing a variety of image transformations for Picasso

Results 16 picasso-transformations issues
Sort by recently updated
recently updated
newest added

Bintray will end service on May 1st. Will you be moving the artifacts to another hosting solution or should we roll our own distributions? https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

Here is a gist with working BorderedCircleTransform implemenetation: https://gist.github.com/berkkaraoglu/ab4caa8b1fe48231dec2

I am sorry if this is trivial, but I am a beginner. and currently I am using Kotlin. I want to blur my image after downloading using picasso. and here...

.transform(new CropTransformation(1.2f, CropTransformation.GravityHorizontal.CENTER, CropTransformation.GravityVertical.TOP)) ``` Fatal Exception: java.lang.RuntimeException Transformation CropTransformation(width=600, height=451, mWidthRatio=0.0, mHeightRatio=0.0, mAspectRatio=1.33, gravityHorizontal=CENTER, mGravityVertical=TOP) crashed with exception. Caused by java.lang.NullPointerException android.graphics.Canvas. (Canvas.java:136) jp.wasabeef.picasso.transformations.CropTransformation.transform (CropTransformation.java:301) com.squareup.picasso.BitmapHunter.applyCustomTransformations (BitmapHunter.java:429) com.squareup.picasso.BitmapHunter.hunt (BitmapHunter.java:238)...

the blur effect is not blurry enough, how can i adjust the amount of blur?

I can't recognize what is going wrong please help. My code : ``` `Picasso.with(PlayScreenActivity.this) .load(uri) .transform(new BlurTransformation(this,25,10)) .placeholder(R.drawable.ic_default) .error(R.drawable.ic_default) .into(new Target() { @Override public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom from) {...

KuwaharaFilterTransformation turns the transparent part black. I still want to leave it transparent or change it to white Is there any way?

Device: apiLevel - 15 (4.0.4) ZTE - model Grand X In Cannot reproduce on my devices, reported from user device on production app. Stack trace: > java.lang.RuntimeException: Transformation BlurTransformation(radius=15, sampling=5)...

is it possible to add effect to bitmap ?

`CropCircleTransformation` has no parameters, several instances are useless. This class may provide a static `getInstance()` method and return the same instance every time, and thus public constructor should be deprecated.