2016-03-26 00:47:20 +01:00
|
|
|
# Clear
|
|
|
|
|
2016-04-02 01:22:47 +02:00
|
|
|
The clear function for images.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
2016-04-16 00:02:26 +02:00
|
|
|
Turn off all the pixels in an [Image](/reference/images/image).
|
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:52:24 +02:00
|
|
|
```sig
|
2016-03-26 00:47:20 +01:00
|
|
|
export function clear(img: micro_bit.Image)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
* none
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
The following example turns off the pixels of `img` when the A input button is pressed:
|
|
|
|
|
2016-08-09 17:52:24 +02:00
|
|
|
```blocks
|
2016-03-26 00:47:20 +01:00
|
|
|
let img = images.createImage(`
|
|
|
|
. . . . .
|
|
|
|
. # # # .
|
|
|
|
. # # # .
|
|
|
|
. # # # .
|
|
|
|
. . . . .
|
|
|
|
`)
|
|
|
|
img.showImage(0)
|
2016-03-30 06:17:57 +02:00
|
|
|
input.onButtonPressed(Button.A, () => {
|
2016-03-26 00:47:20 +01:00
|
|
|
img.clear()
|
|
|
|
img.showImage(0)
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
### See also
|
|
|
|
|
2016-04-16 00:02:26 +02:00
|
|
|
[Image](/reference/images/image), [show animation](/reference/basic/show-animation), [show image](/reference/images/show-image), [scroll image](/reference/images/scroll-image), [create image](/reference/images/create-image)
|
2016-03-26 00:47:20 +01:00
|
|
|
|