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

Java examples for 2D Graphics:Color RGB

Description

Returns the blue channel of the color

Demo Code

/**/*from   w  w w  . j a  va2s.c  om*/
 * 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(getBlue(color));
    }

    /**
     * The mask to get the two least significant bytes of an integer;
     */
    public static final int MASK = 0xFF;

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

Related Tutorials