In my program, I have a 2d ArrayList of pixels named pixelList. Each pixel knows its' red, blue, green, and hex values. I'm currently working with a 5x5 ArrayList that sets every color to #FF8C00 (orange). How do I use the information I have stored to create a bitmap image?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||

BufferedImage.setRGB(x,y,c)(and related Java docs) first. – Andrew Thompson Feb 21 at 4:22