标签: javascript drawing pixel processing.js khan-academy
在可汗学院计算机编程环境中,我可以使用get(x,y,width,height)将像素数据捕获为图像。
var img = get(x,y,width,height);//make a variable that stores the image
然后,我可以像这样显示图像:image(img,x,y,width,height);
有没有办法检索屏幕外的像素?
谢谢!