Java examples for 2D Graphics:Color RGB
Returns the blue channel of the color
/**/*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); } }