Em meu aplicativo Java, consegui obter o Color
de a JButton
em termos de vermelho, verde e azul; Armazenei esses valores em três int
segundos.
Como faço para converter esses valores RGB em um String
contendo a representação hexadecimal equivalente? Tal como#0033fA
class java.util.IllegalFormatConversionException with message: x != java.lang.Float
String.format("#%06x", color.getRGB() & 0xFFFFFF);
Um forro, mas sem
String.format
para todas as cores RGB :Color your_color = new Color(128,128,128); String hex = "#"+Integer.toHexString(your_color.getRGB()).substring(2);
Você pode adicionar um
.toUpperCase()
se quiser alternar para letras maiúsculas. Observe que isso é válido (conforme perguntado na pergunta) para todas as cores RGB.Quando você tem cores ARGB, pode usar:
Color your_color = new Color(128,128,128,128); String buf = Integer.toHexString(your_color.getRGB()); String hex = "#"+buf.substring(buf.length()-6);
Um liner também é teoricamente possível, mas exigiria chamar toHexString duas vezes. Eu comparei a solução ARGB e comparei com
String.format()
:fonte
Random ra = new Random(); int r, g, b; r=ra.nextInt(255); g=ra.nextInt(255); b=ra.nextInt(255); Color color = new Color(r,g,b); String hex = Integer.toHexString(color.getRGB() & 0xffffff); if (hex.length() < 6) { hex = "0" + hex; } hex = "#" + hex;
fonte
Color.BLUE
, que#0ff
resulta porque & 'ing o valor RGB de Color.BLUE resulta em256
na base 10, que estáff
em hexadecimal). Uma correção é usar umwhile
loop em vez de uma instrução if ao prefixar zeros.Esta é uma versão adaptada da resposta dada por Vivien Barousse com a atualização do Vulcan aplicada. Neste exemplo, uso controles deslizantes para recuperar dinamicamente os valores RGB de três controles deslizantes e exibir essa cor em um retângulo. Então, no método toHex (), eu uso os valores para criar uma cor e exibir o respectivo código de cor Hex.
public class HexColor { public static void main (String[] args) { JSlider sRed = new JSlider(0,255,1); JSlider sGreen = new JSlider(0,255,1); JSlider sBlue = new JSlider(0,255,1); JLabel hexCode = new JLabel(); JPanel myPanel = new JPanel(); GridBagLayout layout = new GridBagLayout(); JFrame frame = new JFrame(); //set frame to organize components using GridBagLayout frame.setLayout(layout); //create gray filled rectangle myPanel.paintComponent(); myPanel.setBackground(Color.GRAY); //In practice this code is replicated and applied to sGreen and sBlue. //For the sake of brevity I only show sRed in this post. sRed.addChangeListener( new ChangeListener() { @Override public void stateChanged(ChangeEvent e){ myPanel.setBackground(changeColor()); myPanel.repaint(); hexCode.setText(toHex()); } } ); //add each component to JFrame frame.add(myPanel); frame.add(sRed); frame.add(sGreen); frame.add(sBlue); frame.add(hexCode); } //end of main //creates JPanel filled rectangle protected void paintComponent(Graphics g) { super.paintComponent(g); g.drawRect(360, 300, 10, 10); g.fillRect(360, 300, 10, 10); } //changes the display color in JPanel private Color changeColor() { int r = sRed.getValue(); int b = sBlue.getValue(); int g = sGreen.getValue(); Color c; return c = new Color(r,g,b); } //Displays hex representation of displayed color private String toHex() { Integer r = sRed.getValue(); Integer g = sGreen.getValue(); Integer b = sBlue.getValue(); Color hC; hC = new Color(r,g,b); String hex = Integer.toHexString(hC.getRGB() & 0xffffff); while(hex.length() < 6){ hex = "0" + hex; } hex = "Hex Code: #" + hex; return hex; } }
Um grande obrigado a Vivien e Vulcan. Esta solução funciona perfeitamente e é super simples de implementar.
fonte