I'm currently making a tile-based strategy game, with its map made of a bunch of sprites (BufferedImages), drawn by java.awt.Graphics.drawimage(..)
What i want is to be able to draw those sprites a tone darker if the player is too far away from them. I've seen a lot of similar questions but haven't found what i wanted. Is there a way to do this WITHOUT touching the original sprite? perhaps some other drawing function? or do i absolutely need to make a copy of each sprite? That'd make a mess of my game, sadly...
You can use
Graphics2D.drawImage(BufferedImage image, BufferedImageOp op, int x, int y)
and aRescaleOp
to alter the colours when drawing the image:Note that how many scale factors/offsets you need and what band they operate on depend on the type of your image, the above will darken a
BufferedImage
of type ARGB but may produce other results for images of different types (or throw an exception if the image doesn't have 4 bands).