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

39 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2016-03-26 00:47:20 +01:00
# Set Pixel
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
## JavaScript
2016-03-26 00:47:20 +01:00
2016-08-09 17:55:43 +02:00
```sig
let item: Image = null;
item.setPixel(0, 0, true)
2016-03-26 00:47:20 +01:00
```
## Parameters
2016-03-26 00:47:20 +01:00
* x - [Number](/types/number); the *x coordinate* or horizontal position of a pixel in an [image](/reference/images/image)
* y - [Number](/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-03-26 00:47:20 +01:00
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
2016-03-26 00:47:20 +01:00
The following example creates an image and stores it in the `img` variable. The `set pixel` function sets the center pixel off, before `img` is shown using `show image`.
2016-03-26 00:47:20 +01:00
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-03-26 00:47:20 +01: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)