0

所以我正在编写一个程序,用户可以在小程序窗口上绘图,当鼠标单击时,将运行填充算法并适当地填充空间。到目前为止,绘图工作,我知道如何执行算法,但是当我单击时,我无法获得鼠标所在像素的颜色。目前,我的代码如下所示: Point location = e.getPoint(); handlepixels(this.createImage(getWidth(), getHeight()), location.x, location.y, 1, 1); 我认为问题出在 this.createImage() 中,我可能不知道这实际上意味着什么。是小程序的意思吗?谢谢!此外,如果有一个更好的类,pixelGrabber 对此任何建议都会很棒。

4

0 回答 0