如何从JavaFX ColorPicker颜色获取hex web String?

时间:2013-07-29 13:25:06

标签: colors hex javafx rgb

我在JavaFX ColorPicker中选择了Color。现在我需要将其保存为十六进制字符串。我找到了this方法,但对于JavaFX,它不适用。 JavaFX有自己的Color类,没有getRGB()方法,可以用作调解转换。

7 个答案:

答案 0 :(得分:35)

将颜色转换为网页颜色代码:

public class FxUtils
{
    public static String toRGBCode( Color color )
    {
        return String.format( "#%02X%02X%02X",
            (int)( color.getRed() * 255 ),
            (int)( color.getGreen() * 255 ),
            (int)( color.getBlue() * 255 ) );
    }
}

答案 1 :(得分:5)

目前接受的答案
return String.format("#%02X%02X%02X",
    ((int)color.getRed())*255,
    ((int)color.getGreen())*255,
    ((int)color.getBlue())*255);

目前可用的答案中最有效的答案是Zon(以下作为参考)

// 8 symbols.
  String hex1 = Integer.toHexString(myColorPicker.getValue().hashCode());

// With # prefix.
  String hex2 = "#" + Integer.toHexString(myColorPicker.getValue().hashCode()); 

// 6 symbols in capital letters.
  String hex3 = Integer.toHexString(myColorPicker.getValue().hashCode()).substring(0, 6).toUpperCase();

但是,此方法会遇到自动删除开始零的问题。如果颜色的十六进制值以0开始(例如#000000,#00A3FF等),则将自动删除开头的零,使字符串太短而不能完全作为十六进制代码运行。 Color.BLACK产生十六进制" #FF"因为它只保持其不透明性。下面的方法,从JavaFX 8u112开始,完全解决了颜色到十六进制的转换。

String colorToHex(Color color) {
    String hex1;
    String hex2;

    hex1 = Integer.toHexString(color.hashCode()).toUpperCase();

    switch (hex1.length()) {
    case 2:
        hex2 = "000000";
        break;
    case 3:
        hex2 = String.format("00000%s", hex1.substring(0,1));
        break;
    case 4:
        hex2 = String.format("0000%s", hex1.substring(0,2));
        break;
    case 5:
        hex2 = String.format("000%s", hex1.substring(0,3));
        break;
    case 6:
        hex2 = String.format("00%s", hex1.substring(0,4));
        break;
    case 7:
        hex2 = String.format("0%s", hex1.substring(0,5));
        break;
    default:
        hex2 = hex1.substring(0, 6);
    }
    return hex2;
}

希望这可以节省一些人我遇到的麻烦!

答案 2 :(得分:3)

这就是诀窍:

// 8 symbols.
String hex1 = Integer.toHexString(myColorPicker.getValue().hashCode()); 

// With # prefix.
String hex2 = "#" + Integer.toHexString(myColorPicker.getValue().hashCode()); 

// 6 symbols in capital letters.
String hex3 = Integer.toHexString(myColorPicker.getValue().hashCode()).substring(0, 6).toUpperCase();

答案 3 :(得分:2)

您可以使用getGreen()getBlue()getRed()方法并将其转换为十六进制。

    Color c;
    int green = c.getGreen()*255;
    Integer.toHexString(green);

重复此项为红色和蓝色,然后:

    String hexColor = "#"+red+green+blue;

这是一个想法,完整的代码(copy-pastable):

    public class TestColor {

        public TestColor() {
            Color c = Color.ALICEBLUE;

             int green = (int) (c.getGreen()*255);
             String greenString = Integer.toHexString(green);

             int red = (int) (c.getRed()*255);
             String redString = Integer.toHexString(red);

             int blue = (int) (c.getBlue()*255);
             String blueString = Integer.toHexString(blue);

             String hexColor = "#"+redString+greenString+blueString;
             System.out.println(hexColor);
             System.out.println(c.toString());
        }
        public static void main(String[] args) {
            new TestColor();
        }
    }

答案 4 :(得分:0)

我认为我有更好的解决方案。

希望它有所帮助。

import javafx.scene.paint.Color;

/**
 *
 * @author Marcos Martinewski Alves
 */
public class ColorUtils {

    public static String colorToHex(Color color) {
        return colorChanelToHex(color.getRed())
                + colorChanelToHex(color.getGreen())
                + colorChanelToHex(color.getBlue())
                + colorChanelToHex(color.getOpacity());
    }

    private static String colorChanelToHex(double chanelValue) {
        String rtn = Integer.toHexString((int) Math.min(Math.round(chanelValue * 255), 255));
        if (rtn.length() == 1) {
            rtn = "0" + rtn;
        }
        return rtn;
    }

}

答案 5 :(得分:0)

浮点安全方法:

// Helper method
private String format(double val) {
    String in = Integer.toHexString((int) Math.round(val * 255));
    return in.length() == 1 ? "0" + in : in;
}

public String toHexString(Color value) {
    return "#" + (format(value.getRed()) + format(value.getGreen()) + format(value.getBlue()) + format(value.getOpacity()))
            .toUpperCase();
}

由于浮点表示和强制转换,currently top voted answer对于许多可能的Color对象实际上并不安全。使用Math.round(...)可以解决此问题。

我正在使用Color方法使用随机双精度数(来自Math.random())生成Color.hsb(...)个对象。在不使用Math.round()的情况下,转换后的十六进制代码已关闭。如果您采用类似的方法来生成颜色,则建议使用此方法,因为它更加安全。

答案 6 :(得分:-2)

这一个 为我工作

MyColorPicker.getValue().toString().substring(2)