Master Image Clipping & Effects in Kotlin KMP KMM Compose

This tutorial teaches master image clipping & effects in Kotlin KMP & KMM for Android and iOS apps. Explore circular and oval shapes, rounded corners, image borders, gradient effects, blend modes, camera reel effects, custom aspect ratios, tint overlays, black & white filters, and blur effects.

Master Image Clipping & Effects in Kotlin KMP KMM Compose

Master Image Clipping & Effects in Kotlin KMP KMM Compose

We are using a demo image in this tutorial. You can download the image from below for learning purposes.

Demo Image for KMP tutorial

After downloading, Please put the image into :

composeApp -> commonMain -> composeResource -> drawable folder.

KMP common resource folder for Image

After pasting the image, You have to Clean and rebuild the project. So the local image will be available for Local common shared resources.

Rebuild KMP project

Now, our image setup is complete. Let’s move to the next step, where we learn Clipping images in Kotlin Compose Multiplatform.

1. CircleShape Image:

The Image component in Kotlin Compose Multiplatform has a property clip in Modifier. The clip supports a property called CircleShape, which automatically converts our image into a circular shape.

Code explanation:

  1. painter: To draw the image.
  2. painterResource: To retrieve the drawable resource image of the painter.
  3. Res: represents local app resource.
  4. drawable: Locate the local common main resource drawable folder.
  5. contentDescription: Description of the Image.
  6. contentScale: How the image should be scaled within the current View.
  7. clip: To apply Clipping to the image.
  8. CircleShape: Apply circular shape clipping to the image.

Complete code for App.kt file:

Screenshot:

Master Image Clipping & Effects in Kotlin KMP KMM Compose

2. Rounded Corner Image:

To create a rounded corner image in KMM KMP, we will pass the RoundedCornerShape() property to the clip.

Screenshot:

Rounded Corner Shape Image in KMM KMP

3. Oval Shape Image:

In KMP, we cannot directly use the Oval shape. We must create a custom shape using Path and Rect to make the Oval shape.

  1. Create a SquashedOval class that extends the Shape class. In this class, we define our Oval shape.
  2. Calling the SquashedOval class into our Image in the clip.

Complete source code:

Screenshot:

Master Image Clipping & Effects in Kotlin KMP KMM Compose

4. Adding a border to the Image in KMP KMM Compose Multiplatform:

To add a border to the image in KMM, KMP, we have to use a Modifier property border() and its sub-property BorderStroke().

1. Adding a border to Circle shape image:

Code explanation:

  1. borderWidth: We have to define the width of the border.
  2. BorderStroke(): It supports two properties: border width and border color.
  3. CircleShape: Pass the shape of the Image. The border will be applied to the default image shape if not passed.

2. Adding a border to the Rounded corner shape image:

3. Adding a border to the default Rectangle shape image:

Screenshot:

Applying Border on Image

4. Adding a Gradient border to the Image in KMP KMM:

To add the Gradient effect to the border on the Image, We have to create a Brush with Sweep Gradient custom component. We have to define multiple colors in a list. These colors will be applied in the gradient effect.

Now we must call this rainbowColorsBrush in our Image in Border Stroke property and pass at the place of Color.

Complete source code:

Screenshot:

Master Image Clipping & Effects in Kotlin KMP KMM Compose

 

5. Set Custom Aspect Ratio Image in KMP KMM:

To set the image in a custom aspect ratio, we will use Modifier.aspectRatio() property.

Screenshot:

Master Image Clipping & Effects in Kotlin KMP KMM Compose

6. Apply Tint on Image in KMP KMM:

To apply tint color to the image component, we will use ColorFilter.tint(Color Code) property.

Screenshot:

Apply tint over image

7. Applying Black & White Effect on Image in KMP KMM:

To apply the Back & the White effect on the Image, we will use

ColorFilter.colorMatrix(ColorMatrix().apply { setToSaturation(0f) }) property.

Screenshot:

Master Image Clipping & Effects in Kotlin KMP KMM Compose

7. Applying Blur Effect to Image in KMP KMM:

To apply the Blur effect to an Image, we will use the blur property with radius X, radius Y and edge treatment.

Screenshot:

Blur Effect on Image

Thanks for reading our article. If you have any questions regarding the tutorial, please comment. Happy Coding.

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *