使用 JColorChooser 获取 Html 颜色代码

发布于 2024-09-30 06:12:06 字数 135 浏览 1 评论 0原文

有没有办法从 JColorChooser 获取 html 颜色代码

我的 java Applet 从用户那里获取三种颜色并对它们进行平均并显示颜色

我想在他们查看平均颜色后获取 html 颜色代码

我该怎么做

Is there a way to get the html color code from a JColorChooser

My java Applet takes three colors from the user and averages them and displays the color

I want to get the html color code after they look at the average color

how can I do that

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

感情旳空白 2024-10-07 06:12:06

编写一个方法将Color转换为String

HTML颜色代码只是将R、G和B值转换为十六进制和显示为前面带有井号的字符串。这是一种相当简单的编写方法。

public static String toHexString(Color c) {
  StringBuilder sb = new StringBuilder("#");

  if (c.getRed() < 16) sb.append('0');
  sb.append(Integer.toHexString(c.getRed()));

  if (c.getGreen() < 16) sb.append('0');
  sb.append(Integer.toHexString(c.getGreen()));

  if (c.getBlue() < 16) sb.append('0');
  sb.append(Integer.toHexString(c.getBlue()));

  return sb.toString();
}

Write a method to convert a Color to a String.

An HTML color code is just the R, G, and B values converted to hex and displayed as a string with a pound sign in front. This is a fairly simple method to write.

public static String toHexString(Color c) {
  StringBuilder sb = new StringBuilder("#");

  if (c.getRed() < 16) sb.append('0');
  sb.append(Integer.toHexString(c.getRed()));

  if (c.getGreen() < 16) sb.append('0');
  sb.append(Integer.toHexString(c.getGreen()));

  if (c.getBlue() < 16) sb.append('0');
  sb.append(Integer.toHexString(c.getBlue()));

  return sb.toString();
}
清醇 2024-10-07 06:12:06

一个稍短的版本,依赖于 Color.getRGB()

public String color2HexString(Color color) {
    return "#" + Integer.toHexString(color.getRGB() & 0x00ffffff);
}

有关 Web 颜色的更多信息,请参阅十六进制三元组

A slightly shorter version that relies on Color.getRGB() :

public String color2HexString(Color color) {
    return "#" + Integer.toHexString(color.getRGB() & 0x00ffffff);
}

See Hex triplet for more information about Web colors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文