Skip to content

Instantly share code, notes, and snippets.

@samuelstein
Last active March 23, 2017 10:09
Show Gist options
  • Save samuelstein/3d4428cded1e8ed05700bfc3a6de94be to your computer and use it in GitHub Desktop.
Save samuelstein/3d4428cded1e8ed05700bfc3a6de94be to your computer and use it in GitHub Desktop.
Convert RGB triplet to HEX
public static String toHexString(short[] triplet) {
return "#" + Integer.toHexString(new java.awt.Color(triplet[0], triplet[1], triplet[2]).getRGB()).substring(2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment