Java RGB Color Create rgb(int argb)

Here you can find the source of rgb(int argb)

Description

rgb

License

Apache License

Declaration

public static int[] rgb(int argb) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static int[] rgb(int argb) {
        return new int[] { (argb >> 16) & 0xFF, (argb >> 8) & 0xFF, argb & 0xFF };
    }//from   www .  ja  v a  2  s . c  o m
}

Related

  1. msAccesToRGBa(int code)
  2. newRGBImage(int[] rgb, int width, int height, boolean processAlpha)
  3. RGB(float R, float G, float B)
  4. rgb(float rIn, float gIn, float bIn)
  5. rgb(int a, int r, int g, int b)
  6. rgb(int pixel)
  7. rgb(int r, int g, int b)
  8. rgb(int red, int green, int blue)
  9. RGB_GREEN(int rgb)