Using the Texture Paint constructor which takes three arguments: a BufferedImage object, a Rectangle object, and an interpolation mode. It's the third argument I can't seem to get working when using : TexturePaint.NEAREST_NEIGHBOR I get an error message 'no variable NEAREST_NEIGHBOR defined in class java.awt.TexturePaint.' Yes I have imported all the packages! My constructor: TexturePaint tp = new TexturePaint( bImg, new Rectangle(0, 0, imgWidth, imgHeight),TexturePaint.NEAREST_NEIGHBOR); Thanks for the help!
[This message has been edited by Christopher Acosta (edited June 28, 2000).]