I want to load base64 encode image using picsso lib.
mImage=(ImageView) findViewById(R.id.imageload_image);
Picasso.with(this).load("http://i.imgur.com/DvpvklR.png").into(mImage);
above code work fine but when i change url
https://bma8.officebrain.com/web/binary/image?model=mail.group&field=image_small&id=1
Can not load image in imageview.
Is there another way to load image?
Please help me.