# Show Image

## Description

```javascript
'show image <resource> [with [animations] [classes]]'
```

The `image` allows you to display an image. For character sprites, take a look at the [show character action](/documentation/2.1.0/script-actions/characters.md).

**Action ID**: `Image`

**Reversible**: Yes

**Requires User Interaction**: No

## Examples

In case of images, they can be declared to use an identifier or you can also use the file's name. The root directory for images will always be img.

```javascript
'show image flower center with fadeIn', // If flower is declared
'show image flower.png center with fadeIn' // If flower isn't declared
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.monogatari.io/documentation/2.1.0/script-actions/show-image.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
