Difference between revisions of "Image.pixel"
Jump to navigation
Jump to search
(Created page with "<c>Image.pixel</c> returns the color of a specific pixel in the image. === Arguments === {| class="wikitable" |- ! Parameter Name !! Type !! Default Value !! Meaning |- | ''...") |
|||
Line 1: | Line 1: | ||
− | <c>Image.pixel</c> returns the color of a specific pixel in the image. | + | <c>[[Image]].pixel</c> returns the color of a specific pixel in the image. |
=== Arguments === | === Arguments === |
Revision as of 23:06, 1 April 2020
Image.pixel
returns the color of a specific pixel in the image.
Arguments
Parameter Name | Type | Default Value | Meaning |
---|---|---|---|
x | number | 0 | horizontal coordinate of the pixel of interest, from 0 to width - 1 |
y | number | 0 | vertical coordinate of the pixel of interest, from 0 to height - 1 |
Example
img = file.loadImage("/sys/pics/Dart.png")
// print img.pixel(5, 7)