This commit is contained in:
coco
2026-07-15 16:57:36 +08:00
parent 723ce1af5c
commit 95aa018b8b
314 changed files with 8910 additions and 0 deletions
@@ -0,0 +1,33 @@
<!---
This is the API of version 1.2.0
-->
# Image
Image is used to display Images. It's similar to an ImageView in the classic Android View system.
<p align="left">
<img src ="{{ site.images }}/foundation/image/imagedemo.png" height=100 width=300 />
</p>
## Load Image
You can use **painterResource** to load an image from the resources
```kotlin
@Composable
fun ImageResourceDemo() {
val image: Painter = painterResource(id = R.drawable.composelogo)
Image(painter = image,contentDescription = "")
}
```
<hr>
## See also:
* [Full Example Code]({{ site.samplefolder }}/foundation/ImageResourceDemo.kt)