2016-03-26 00:47:20 +01:00
# Show Image
2016-06-18 01:20:17 +02:00
Show an [image ](/reference/images/image ) (picture) on the
2016-11-02 01:44:37 +01:00
[LED screen ](/device/screen ). After the @boardname @ shows an image, it
2016-06-18 01:20:17 +02:00
will pause for 400 milliseconds (1000 milliseconds is one second).
2016-03-26 00:47:20 +01:00
2016-07-19 00:18:40 +02:00
```sig
let item: Image = null;
item.showImage(0);
```
2016-03-26 00:47:20 +01:00
### Parameters
2016-06-18 01:20:17 +02:00
* an [image ](/reference/images/image ) (picture). It is usually a square with five LEDs on a side, but it might be wider.
2016-11-02 01:44:37 +01:00
* a [number ](/reference/types/number ) that says how many LEDs from the left of the picture the @boardname @ should start. `0` means start at the first **frame** of the picture, `5` means start at the second frame, `10` means start at the third, and so on.
2016-06-18 01:20:17 +02:00
### Example: Flip-flopping arrow
This program makes a big image with a frame of an arrow pointing up,
and a frame of an arrow pointing down. If you press button `A` , the
program will use ``show image`` to show the arrow pointing up. (It
starts `0` LEDs from the left in the big image.) If you press button
`B` , the program will use ``show image`` to show the arrow pointing
down, which starts `5` LEDs from the left.
```blocks
let arrows = images.createBigImage(`
. . # . . . . # . .
. # # # . . . # . .
# . # . # # . # . #
. . # . . . # # # .
. . # . . . . # . .
`);
input.onButtonPressed(Button.A, () => {
arrows.showImage(0);
});
input.onButtonPressed(Button.B, () => {
arrows.showImage(5);
});
2016-03-26 00:47:20 +01:00
```
### See also
2016-06-19 14:28:46 +02:00
[Getting Started ](/getting-started ), [image ](/reference/images/image ),
2016-06-18 01:20:17 +02:00
[create image ](/reference/images/create-image ),
[create big image ](/reference/images/create-big-image ),
[scroll image ](/reference/images/scroll-image ), [show animation ](/reference/basic/show-animation )