# 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/998c1a75c5978f24c0dc137af5f42b90b2803967/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 image. You can use this alias to refer to this image

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 image.

Returns [#returns]

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

A promise that is resolved when the image is loaded.

Example [#example]

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