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



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

Defined in: [src/canvas/functions/image-container-utility.ts:19](https://github.com/DRincs-Productions/pixi-vn/blob/998c1a75c5978f24c0dc137af5f42b90b2803967/src/canvas/functions/image-container-utility.ts#L19)

Add a list of images in the container, after that, the images are added to the canvas.
Is the same that [showImageContainer](/jsdoc/pixi-vn/index/functions/showImageContainer), but the image is not shown.
If you want to show the image, then you need to use the function [()](/jsdoc/pixi-vn/index/classes/ImageSprite#load).

Parameters [#parameters]

alias [#alias]

`string`

is the unique alias of the image. You can use this alias to refer to this image

imageUrls [#imageurls]

`string`\[]

is the url of the image. If you don't provide the url, then the alias is used as the url.

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]

[`ImageContainer`](/jsdoc/pixi-vn/index/classes/ImageContainer)

the container of the image.

Example [#example]

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