Java Integer to int2rgb(final int color)

Here you can find the source of int2rgb(final int color)

Description

intrgb

License

Apache License

Declaration

public static int[] int2rgb(final int color) 

Method Source Code

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

public class Main {
    public static int[] int2rgb(final int color) {
        return new int[] { (color >> 16) & 0xFF, (color >> 8) & 0xFF, color & 0xFF };
    }// w  ww. jav a  2  s.  c  o m
}

Related

  1. int2EyptStr(int num)
  2. int2float(Integer integer)
  3. int2Integer(int[] array)
  4. int2minBeb(final int x)
  5. int2path(int v)
  6. Int2Short(int i)
  7. int2sortableStr(int val)
  8. int2TwoChars(int i)
  9. intTo2LengthBytes(int i)