web-dev-qa-db-ja.com

RGBカラー値を16進数文字列に変換する

私のJavaアプリケーションでは、Colorの赤、緑、青に関してJButtonを取得できました。これらの値を3つに格納しましたints。

それらのRGB値を、同等の16進値を含むStringに変換するにはどうすればよいですか?

例は"#0033fA"

74
Lalchand

使用できます

String hex = String.format("#%02x%02x%02x", r, g, b);  

結果の16進数を大文字にする場合は、大文字のXを使用します(#FFFFFF vs. #ffffff)。

170
mhshams

String.formatなしの1つのライナー:

_Color your_color = Color.BLACK;

String hex = "#"+Integer.toHexString(your_color.getRGB()).substring(2);
_

大文字に切り替える場合は、.toUpperCase()を追加できます。

ARRGは正しいことに注意してください-非透明色にのみ使用されます。

_if(your_color.getAlpha() >= 16){
   String hex = "#"+Integer.toHexString(your_color.getRGB()).substring(2);
}
else{...}
_
41
Lonzak
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;
13
Vivien Barousse

これは、 Vulcan からの更新が適用された Vivien Barousse で指定された回答の適応バージョンです。この例では、スライダーを使用して3つのスライダーからRGB値を動的に取得し、その色を四角形で表示します。次に、メソッドtoHex()で値を使用して色を作成し、それぞれの16進カラーコードを表示します。

この例には、GridBagLayoutの適切な制約は含まれていません。コードは機能しますが、表示は奇妙に見えます。

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;
  }
}

ヴィヴィアンとバルカンの両方に感謝します。このソリューションは完全に機能し、実装が非常に簡単でした。

1
AlyssaFox