pxt-calliope/docs/reference/images/plot-image.md

38 lines
1.0 KiB
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Plot Image
2016-04-02 01:22:47 +02:00
The plot image function.
2016-03-26 00:47:20 +01:00
Display an [Image](/reference/images/image) on the @boardname@'s [LED screen](/device/screen)
2016-03-26 00:47:20 +01:00
2016-04-18 17:33:09 +02:00
### JavaScript
2016-03-26 00:47:20 +01:00
2016-08-09 17:55:43 +02:00
```sig
2016-03-26 00:47:20 +01:00
export function plotImage(_this: micro_bit.Image, xOffset: number)
```
### Parameters
2016-04-13 17:27:45 +02:00
* x offset - [Number](/reference/types/number); the horizontal starting point of an image; use 0 for the first frame of the image, 5 for the second frame of the image, 10 for the third frame and so on.
2016-03-26 00:47:20 +01:00
### Difference from `show image`
The `show image` function has a built in delay of 400ms after display of the image, whereas `plot image` has no built-in delay.
### Example
2016-08-09 17:55:43 +02:00
```blocks
2016-03-26 00:47:20 +01:00
let img = images.createImage(`
# . . . # # . . . #
. # . # . . # # # .
. . # . . . # # # .
. # . # . . # # # .
# . . . # # . . . #
`)
img.plotImage(0)
```
### See also
2016-04-16 00:02:26 +02:00
[create image](/reference/images/create-image), [show animation](/reference/basic/show-animation), [image](/reference/images/image), [show image](/reference/images/show-image), [scroll image](/reference/images/scroll-image)
2016-03-26 00:47:20 +01:00