# Image
Image is used to display Images. It's similar to an ImageView in the classic Android View system.
## 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 = "")
}
```
## See also:
* [Full Example Code]({{ site.samplefolder }}/foundation/ImageResourceDemo.kt)