(img, x, y, width, height, rgba)
| 2364 | } |
| 2365 | |
| 2366 | function imGet(img, x, y, width, height, rgba) { |
| 2367 | return img[y*width*4 + x*4 + rgba]; |
| 2368 | } |
| 2369 | |
| 2370 | function imSet(img, x, y, width, height, rgba, val) { |
| 2371 | img[y*width*4 + x*4 + rgba] = val; |