Create Round Images on Android Using Picasso

Round images are a nice design element that add a touch of elegance to your application especially when used with feature images as a way to emphasize their content. In today’s tutorial we will show you how to create circular images on Android with Picasso image library.

Requirements

In this tutorial we assume you are using Picasso library for Android. If you are not, you should definitely give it a shot, because it helps to cache and load images very efficiently. Furthermore, it also allows you to apply custom transformations to images dynamically, such as the round transformation we will show you today. Really cool and powerful stuff!

In case you are just adding picasso to your project now, follow the instructions provided here. If you are using gradle, you simply add the library dependency and sync your project.

It does not matter whether you are using Java or Kotlin as your Android programming language. We will show you how to create round images in both languages.

Implementation

Next create a new class called CircleTransform.kt or CircleTransform.java. This will be where we define the transformation function. Based on the language you are using, implement the following functionality:

Java example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import android.graphics.Bitmap;
import android.graphics.BitmapShader;
import android.graphics.Canvas;
import android.graphics.Paint;

import com.squareup.picasso.Transformation;

/**
* Make a round image using picasso
*/
public class CircleTransform implements Transformation {
@Override
public Bitmap transform(Bitmap source) {
int size = Math.min(source.getWidth(), source.getHeight());

int x = (source.getWidth() - size) / 2;
int y = (source.getHeight() - size) / 2;

Bitmap squaredBitmap = Bitmap.createBitmap(source, x, y, size, size);
if (squaredBitmap != source) {
source.recycle();
}

Bitmap bitmap = Bitmap.createBitmap(size, size, source.getConfig());

Canvas canvas = new Canvas(bitmap);
Paint paint = new Paint();
BitmapShader shader = new BitmapShader(squaredBitmap,
BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP);
paint.setShader(shader);
paint.setAntiAlias(true);

float r = size / 2f;
canvas.drawCircle(r, r, r, paint);

squaredBitmap.recycle();
return bitmap;
}

@Override
public String key() {
return "circle";
}
}

Kotlin Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import android.graphics.*

import com.squareup.picasso.Transformation

/**
* Make a round image using picasso
*/
class CircleTransform : Transformation {
override fun transform(source: Bitmap): Bitmap {
val size = Math.min(source.width, source.height)

val x = (source.width - size) / 2
val y = (source.height - size) / 2

val squaredBitmap = Bitmap.createBitmap(source, x, y, size, size)
if (squaredBitmap != source) {
source.recycle()
}

val bitmap = Bitmap.createBitmap(size, size, source.config)

val canvas = Canvas(bitmap)
val paint = Paint()
val shader = BitmapShader(squaredBitmap,
Shader.TileMode.CLAMP,
Shader.TileMode.CLAMP)
paint.shader = shader
paint.isAntiAlias = true

val r = size / 2f
canvas.drawCircle(r, r, r, paint)

squaredBitmap.recycle()
return bitmap
}

override fun key(): String {
return "circle"
}
}

Usage

After you have defined the transformation function you can use it as follows:

1
2
3
4
Picasso.with(context)
.load("https://image.url/here.jpg")
.transform(new CircleTransform())
.into(myImageView)

And that is it. Happy Coding!

If you enjoyed this article please share it with your friends!

Mobile First