pxt-calliope/docs/reference/images/set-pixel.md

43 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Set Pixel
2016-04-02 01:22:47 +02:00
The set pixel function. #set pixel.
2016-03-26 00:47:20 +01:00
2016-04-16 00:02:26 +02:00
Set the on/off state of pixel 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:55:43 +02:00
```sig
2016-03-26 00:47:20 +01:00
export function setPixel(_this: micro_bit.Image, x: number, y: number, value: boolean)
```
### Parameters
2016-04-16 00:02:26 +02:00
* x - [Number](/reference/types/number); the *x coordinate* or horizontal position of a pixel in an [image](/reference/images/image)
* x - [Number](/reference/types/number); the *y coordinate* or vertical position of a pixel in an [image](/reference/images/image)
2016-06-15 13:55:19 +02:00
* value -[Boolean](/blocks/logic/boolean); the on/off state of a pixel; `true` for on, `false` for off
2016-03-26 00:47:20 +01:00
### x, y coordinates?
2016-04-13 17:27:45 +02:00
To figure out the ``x``, ``y`` coordinates, see [LED screen](/device/screen).
2016-03-26 00:47:20 +01:00
### Example
The following example creates an image and stores it in the `img` variable. The `set pixel` function sets the centre pixel off, before `img` is shown using `show image`.
2016-08-09 17:55:43 +02:00
```blocks
2016-03-26 00:47:20 +01:00
let img = images.createImage(`
. . # . .
. # . # .
. . # . .
. # . # .
. . # . .
`)
img.setPixel(2, 2, false)
img.showImage(0)
```
### See also
2016-04-16 00:02:26 +02:00
[pixel](/reference/images/pixel), [show image](/reference/images/show-image), [image](/reference/images/image), [create image](/reference/images/create-image), [scroll image](/reference/images/scroll-image)
2016-03-26 00:47:20 +01:00