Java Utililty Methods InputStream to Int

List of utility methods to do InputStream to Int

Description

The list of methods to do InputStream to Int are organized into topic(s).

Method

intgetRGBInt(InputStream in)
get RGB Int
int b = (in.read() & 0xff) << 16;
int g = (in.read() & 0xff) << 8;
int r = (in.read() & 0xff) << 0;
return b | g | r;