Showing posts with label Color. Show all posts
Showing posts with label Color. Show all posts

Monday, May 9, 2011

Published 5/09/2011 by with 0 comment

Color parameter outside of expected range: Red Green Blue

Java error "Color parameter outside of expected range: Red Green Blue" can be encountered when we use the java.awt.Color class with wrong arguments for RGB (Red Green Blue). See the wrong code below: import javax.swing.JFrame; import java.awt.Container; import java.awt.Color; public class MyFrame extends JFrame { public MyFrame() { Container container = getContentPane(); container.setBackground(new...
Read More
    email this       edit