Skip to content

Instantly share code, notes, and snippets.

@tai-cha
Created April 26, 2019 10:04
Show Gist options
  • Save tai-cha/30e3cd258c8ca6ba85eeb2765fa1c582 to your computer and use it in GitHub Desktop.
Save tai-cha/30e3cd258c8ca6ba85eeb2765fa1c582 to your computer and use it in GitHub Desktop.
hex表示するやつ~~~~~~~~~~~~~~~~
String hex = String.format( "#%02X%02X%02X",
(int)( c.getRed() * 255 ),
(int)( c.getGreen() * 255 ),
(int)( c.getBlue() * 255 ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment