Package java.awt.color

Examples of java.awt.color.ICC_ColorSpace.toRGB()


        float[] color = new float[3];
        color[0] = rand.nextFloat();
        color[1] = rand.nextFloat();
        color[2] = rand.nextFloat();

        float[] res = cs.toRGB(color);
        System.out.println(res[0] + ", " + res[1] + ", " + res[2]);
    }

    public void testNull() {
       
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.