<h2 id="remoteimage-remotebitmap-contentdescription-modifier-contentscale-alpha">RemoteImage</h2>

<div class='sourceset sourceset-android'>Android</div>

```kotlin
@Composable
@RemoteComposable
public fun RemoteImage(
    remoteBitmap: RemoteBitmap,
    contentDescription: RemoteString?,
    modifier: RemoteModifier = RemoteModifier,
    contentScale: ContentScale = ContentScale.Fit,
    alpha: RemoteFloat = DefaultAlpha.rf,
)
```

A composable that lays out and draws a given [RemoteBitmap](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/RemoteBitmap). This is the remote equivalent of
[androidx.compose.foundation.Image](/jetpack-compose/androidx.compose.foundation/foundation/composable-functions/Image).

#### Parameters

| | |
| --- | --- |
| remoteBitmap | the [RemoteBitmap](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/RemoteBitmap) to be drawn. |
| contentDescription | the Text used by accessibility services to describe what this image represents. |
| modifier | the [RemoteModifier](/jetpack-compose/androidx.compose.remote/remote-creation-compose/interfaces/RemoteModifier) to be applied to this layout node. |
| contentScale | the rule to apply to scale the image when its size does not match the layout size, Defaults to `ContentScale.Fit`. |
| alpha | the Optional opacity to be applied to the [remoteBitmap](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/RemoteBitmap) when it is rendered. |