Image Scaling Guide – Kotlin KMM KMP Tutorial

In today’s tutorial, we will learn the Image scaling guide in Kotlin KMM KMP Kotlin Compose Multiplatform for both Android & iOS platforms. We will discuss how to apply different scaling types to the image.

Image Scaling Guide - Kotlin KMM KMP Tutorial

Image Customization Scaling in KMM KMP Kotlin Tutorial:

1. First, you must download the two images mentioned below. We are using Local pictures in this tutorial. So you will also learn about using Local common resource images for all the platforms.

Landscape demo image:

Landscape demo image

Portrait demo image:

Portrait Demo Image

2. Paste the images into,

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

Add local common images in KMM KMP

3. To use the images, you must Clean and then Rebuild the project.

Rebuild KMP project

Rebuild Android Studio project.

4. After rebuilding the project. We can call these images into our local code using the Image component.

Code explanation:

  1. painterResource: To draw images in the Image widget.
  2. Res: Here, Res represents your local resource. Make sure to add it.
  3. Size: Set the fixed size of the image.
  4. background: Set the image background color.

Complete source code:

Screenshot:

Image Scaling Guide - Kotlin KMM KMP Tutorial

Image Content Scaling Properties Guide:

The Image component in Kotlin Compose Multiplatform has a property contentScale that supports various scaling methods. The content scale decides how the image should scale within its defined boundaries. If we don’t use contentScale, then Image’s default property is ContentScale.Fit.

1. ContentScale.Crop: Crop the image from the center and fill the whole container space.

Screenshot:

Image Content Scale Crop

2. ContentScale.Fit: Scales the image uniformly while maintaining the aspect ratio. In this case, if the Image is smaller than the given size, it scales the image and fits the View.

Screenshot:

Image Content Scale Fit

3. ContentScale.FillBounds: Scales the image vertically and horizontally into the whole space without maintaining the image aspect ratio. This will make the image stretched.

Screenshot:

Content scale fill bounds

4. ContentScale.FillHeight: Scales the image vertically, maintaining the image aspect ratio to fill the vertical space.

Screenshot:

Image Scaling Guide - Kotlin KMM KMP Tutorial

5. ContentScale.FillWidth: Scale the image horizontally into the remaining space while maintaining the image aspect ratio.

Screenshot:

Content scale fill width

6. ContentScale.Inside: Scale the Image to the space while maintaining the image aspect ratio. If the image is smaller than the size of the container, then it works as ContentScale.NONE.

Screenshot:

Content Scale Inside

7. ContentScale.None: Do not apply any scaling of content to the image. If the image is smaller than the container, show it as its size.

Screenshot:

Image content scale none

Above mentioned are the 7 image content scale types in Kotlin compose multiplatform.

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 *