How can I filter and select only PNG images with Jetpack Compose Photo Picker?

247 Views Asked by At

I'm using Jetpack Compose and the Photo Picker to allow users to select images in my app. However, I want to restrict the selection to only PNG images. How can I implement this filter when using the Photo Picker in Jetpack Compose?

Here's the code I have for opening the Photo Picker using the button onClick:

val multiplePhotoPickerLauncher = rememberLauncherForActivityResult(
    contract = ActivityResultContracts.PickMultipleVisualMedia(),
    onResult = { uris -> })

// Below code for open image picker
Button(modifier = Modifier
                    .fillMaxWidth()
                    .bounceClick(),
                colors = ButtonDefaults.buttonColors(
                    White, disabledContainerColor = White80,
                    disabledContentColor = White
                ),
                onClick = {
                    multiplePhotoPickerLauncher.launch(PickVisualMediaRequest(ActivityResultContracts.PickVisualMedia.ImageOnly)
                    )
                }
            ) {
                Text(
                    color = Black80,
                    text = "${attachments.size} / 10"
                )
            }
1

There are 1 best solutions below

0
On

You should set the MIME type like this:

val mimeType = "image/png"


onClick = {
            multiplePhotoPickerLauncher.launch(
                PickVisualMediaRequest(
                    ActivityResultContracts
                        .PickVisualMedia.SingleMimeType(mimeType))
            )
        }