Slackbot
05/06/2021, 2:04 PMCicero
05/06/2021, 2:04 PM@Preview(showBackground = true)
@Composable
fun ImagePresentationTestPreview() {
ImagePresentationTest()
}
@Composable
fun ImagePresentationTest() {
Image(
painter = painterResource(R.drawable.knowledge_category_1_article_12_small),
modifier = Modifier.background(Color.Cyan).wrapContentSize(),
contentScale = ContentScale.FillBounds,
contentDescription = "",
)
}
The image is 288x240 and it’s a PNGCicero
05/06/2021, 2:04 PMadauguet
05/06/2021, 2:08 PMContentScale.Crop
?Cicero
05/06/2021, 2:15 PMadauguet
05/06/2021, 2:17 PMFillBounds
, but the image will have distortion.adauguet
05/06/2021, 2:18 PMCicero
05/06/2021, 2:19 PMCicero
05/06/2021, 2:19 PMadauguet
05/06/2021, 2:19 PMwrapContentSize
effect ...Cicero
05/06/2021, 2:20 PMCicero
05/06/2021, 2:20 PMCicero
05/06/2021, 2:21 PMCicero
05/06/2021, 2:25 PMadauguet
05/06/2021, 2:25 PMSurface
by giving it a fixed size.Cicero
05/06/2021, 2:26 PMCicero
05/06/2021, 2:26 PMCicero
05/06/2021, 2:26 PMCicero
05/06/2021, 2:43 PMadauguet
05/06/2021, 2:44 PMadauguet
05/06/2021, 2:44 PMCicero
05/06/2021, 2:57 PMCicero
05/06/2021, 2:57 PMCicero
05/06/2021, 2:57 PM