I use picasso library to upload images from the server to my application. my problem is that when loading the image it has a triangle in the upper left corner of the image with color (e.g. blue, green, red). this is my image upload code:
public static void loadDynamicImage(final String url, final Context context, final ImageView imageView, final int width, final int height){ Picasso.with(context).load(url) .networkPolicy(NetworkPolicy.OFFLINE) .resize(width,height) .onlyScaleDown() .into(imageView, new Callback() { @Override public void onSuccess() { } @Override public void onError() { Picasso.with(context).load(url).resize(width,height).onlyScaleDown().into(imageView); } }); }
image shown: 
source share