Returns the green channel of the color - Java 2D Graphics

Java examples for 2D Graphics:Color

Description

Returns the green channel of the color

Demo Code

/**/*from   w  w w  . j av a  2s.co m*/
 * Utility class to deal with ARGB color format
 *
 * @author Aritz Lopez
 * @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
 */
//package com.java2s;

public class Main {
    public static void main(String[] argv) throws Exception {
        int color = 2;
        System.out.println(getGreen(color));
    }

    /**
     * The mask to get the two least significant bytes of an integer;
     */
    public static final int MASK = 0xFF;
    /**
     * The shifting used to put the green component in position
     */
    public static final int GREEN_SHIFT = 8;

    /**
     * Returns the green channel of the color
     *
     * @param color The color to get the green channel of
     * @return The green channel of the color
     */
    public static int getGreen(final int color) {
        return (color >> GREEN_SHIFT) & MASK;
    }
}

Related Tutorials