Java RGB Color Create RGB_GREEN(int rgb)

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

Description

RGGREEN

License

Open Source License

Declaration

static private int RGB_GREEN(int rgb) 

Method Source Code

//package com.java2s;
// I ported this from the mame project, this is their license

public class Main {
    static private int RGB_GREEN(int rgb) {
        return (((rgb) >> 8) & 0xff);
    }/* w w  w  .j a  va  2  s.c o m*/
}

Related

  1. rgb(int a, int r, int g, int b)
  2. rgb(int argb)
  3. rgb(int pixel)
  4. rgb(int r, int g, int b)
  5. rgb(int red, int green, int blue)
  6. RGB_MSE(int[] rgb1, int[] rgb2)
  7. RGB_PNSR(int[] rgb1, int[] rgb2)
  8. rgb_xyz(double r)
  9. rgba(double r, double g, double b, double a)