# Function: showImageContainer() (/jsdoc/pixi-vn/index/functions/showImageContainer)



\> **showImageContainer**(`alias`, `imageUrls`, `options?`): `Promise`\<[`ImageContainer`](/jsdoc/pixi-vn/index/classes/ImageContainer)>

Defined in: [src/canvas/functions/image-container-utility.ts:44](https://github.com/DRincs-Productions/pixi-vn/blob/efc9536feda21bc17c50370f5e35fd8d8d88843a/src/canvas/functions/image-container-utility.ts#L44)

Add a list of images in the container, after that, the images are added and shown in the canvas.

## Parameters [#parameters]

### alias [#alias]

`string`

The unique alias of the container. You can use this alias to refer to this container

### imageUrls [#imageurls]

`string`\[]

The url of the image.

### options? [#options]

[`ImageContainerOptions`](/jsdoc/pixi-vn/index/interfaces/ImageContainerOptions)\<[`ImageSprite`](/jsdoc/pixi-vn/index/classes/ImageSprite)\<[`ImageSpriteMemory`](/jsdoc/pixi-vn/index/interfaces/ImageSpriteMemory)>>

The options of the container.

## Returns [#returns]

`Promise`\<[`ImageContainer`](/jsdoc/pixi-vn/index/classes/ImageContainer)>

This function returns an [ImageContainer](/jsdoc/pixi-vn/index/classes/ImageContainer) that you can use to manipulate the component.

## Example [#example]

```ts
let bunny = showImageContainer("bunny", ["https://pixijs.com/assets/bunny-body.png", "https://pixijs.com/assets/bunny-eyes.png"])
```
