画像の一部または全体のピクセルデータを取得します。
引数なしで呼び出すと、画像全体のピクセルデータを含む p5.Image オブジェクトを返します。
2つの数値引数 x
と y
を指定すると、その座標にある 単一ピクセルの色を配列 [R, G, B, A]
として返します。
4つの数値引数 x
、y
、w
、h
を指定すると、 指定された矩形領域のピクセルデータを含む p5.Image オブジェクトを返します。
実例
シンタックス
get()
get(x, y)
get(x, y, w, h)
パラメーター
x
Number:
ピクセルのx座標
y
Number:
ピクセルのy座標
w
Number:
矩形領域の幅
h
Number:
矩形領域の高さ
Notice any errors or typos? Please let us know. Please feel free to edit src/image/p5.Image.js and open a pull request!