本文整理汇总了Java中javafx.scene.paint.Color.getBrightness方法的典型用法代码示例。如果您正苦于以下问题:Java Color.getBrightness方法的具体用法?Java Color.getBrightness怎么用?Java Color.getBrightness使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.paint.Color
的用法示例。
在下文中一共展示了Color.getBrightness方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createColorVariations
import javafx.scene.paint.Color; //导入方法依赖的package包/类
public static final Color[] createColorVariations(final Color COLOR, final int NO_OF_COLORS) {
int noOfColors = clamp(1, 5, NO_OF_COLORS);
double step = 0.8 / noOfColors;
double hue = COLOR.getHue();
double brg = COLOR.getBrightness();
Color[] colors = new Color[noOfColors];
for (int i = 0 ; i < noOfColors ; i++) { colors[i] = Color.hsb(hue, 0.2 + i * step, brg); }
return colors;
}
示例2: getColorRangeMinMax
import javafx.scene.paint.Color; //导入方法依赖的package包/类
public static final Color[] getColorRangeMinMax(final Color COLOR, final int STEPS) {
double hue = COLOR.getHue();
double saturation = COLOR.getSaturation();
double brightness = COLOR.getBrightness();
double saturationStep = saturation / STEPS;
double brightnessStep = brightness / STEPS;
double halfSteps = STEPS / 2;
Color fromColor = COLOR.hsb(hue, saturation, clamp(0, 1, brightness + brightnessStep * halfSteps));
Color toColor = COLOR.hsb(hue, saturation, clamp(0, 1, brightness - brightnessStep * halfSteps));
return new Color[] { fromColor, toColor };
}
示例3: updateUI
import javafx.scene.paint.Color; //导入方法依赖的package包/类
public void updateUI(final Color color) {
double hue = color.getHue();
double saturation = color.getSaturation();
double brightness = color.getBrightness();
double alpha = color.getOpacity();
updateUI(hue, saturation, brightness, alpha);
}
示例4: updateUI_OnRGBChange
import javafx.scene.paint.Color; //导入方法依赖的package包/类
private Color updateUI_OnRGBChange() {
// retrieve RGB TextFields values
int red = Double.valueOf(red_textfield.getText()).intValue();
int green = Double.valueOf(green_textfield.getText()).intValue();
int blue = Double.valueOf(blue_textfield.getText()).intValue();
// retrieve HSB values from RGB values
final Color color = Color.rgb(red, green, blue);
double hue = color.getHue();
double saturation = color.getSaturation();
double brightness = color.getBrightness();
double alpha = Double.valueOf(alpha_textfield.getText());
return updateUI(hue, saturation, brightness, alpha);
}
示例5: updateUI_OnHexaChange
import javafx.scene.paint.Color; //导入方法依赖的package包/类
private Color updateUI_OnHexaChange() {
// retrieve Hexa TextField value
final String hexa = hexa_textfield.getText().trim();
final Color color = Color.web(hexa);
double hue = color.getHue();
double saturation = color.getSaturation();
double brightness = color.getBrightness();
double alpha = Double.valueOf(alpha_textfield.getText());
return updateUI(hue, saturation, brightness, alpha);
}
示例6: createColorVariations
import javafx.scene.paint.Color; //导入方法依赖的package包/类
public static final List<Color> createColorVariations(final Color COLOR, final int NO_OF_COLORS) {
int noOfColors = clamp(1, 5, NO_OF_COLORS);
double step = 0.8 / noOfColors;
double hue = COLOR.getHue();
double brg = COLOR.getBrightness();
List<Color> colors = new ArrayList<>(noOfColors);
for (int i = 0 ; i < noOfColors ; i++) { colors.add(Color.hsb(hue, 0.2 + i * step, brg)); }
return colors;
}
示例7: updateReverseDerivation
import javafx.scene.paint.Color; //导入方法依赖的package包/类
private void updateReverseDerivation() {
Color desiredColor = (Color) desiredPicker.getPaint();
final Color base = (Color) basePicker.getPaint();
// System.out.println("base = " + base);
double desiredBrightness = desiredColor.getBrightness();
// System.out.println("desiredBrightness = " + desiredBrightness);
// double desiredSaturation = desiredColor.getSaturation();
// System.out.println("desiredSaturation = " + desiredSaturation);
double derivation = 0, max = 1, min = -1;
Color derivedColor = Color.WHITE;
for (int i = 0; i < 100; i++) {
// System.out.println("---------- "+i+" ----------------");
// System.out.println("derivation = " + derivation);
// System.out.println("max = " + max);
// System.out.println("min = " + min);
derivedColor = ColorEncoder.deriveColor(base, derivation);
double derivedBrightness = derivedColor.getBrightness();
// System.out.println("derivedBrightness = " + derivedBrightness);
// double derivedSaturation = derivedColor.getSaturation();
// System.out.println("derivedSaturation = " + derivedSaturation);
// double saturationDifference = Math.abs(derivedSaturation-desiredSaturation);
// System.out.println("saturationDifference = " + saturationDifference);
double difference = Math.abs(derivedBrightness - desiredBrightness);
// System.out.println("brightness difference = " + difference);
if (difference < 0.0001) { // GOOD ENOUGH
break;
} else if (min == 1 || max == -1) { // TO DIFFERENT
break;
} else if (derivedBrightness > desiredBrightness) { // TO BRIGHT
// System.out.println("NEED DARKER");
max = derivation;
derivation = derivation + ((min - derivation) / 2);
} else { // TO DARK
// System.out.println("NEED BRIGHTER");
min = derivation;
derivation = derivation + ((max - derivation) / 2);
}
}
// System.out.println("\nFINAL \nderivation = " + derivation+"\n\n");
reverseDerivationLabel.setText(String.format("%3.1f%%", derivation));
hexReverseTextfield.setText(ColorEncoder.encodeColor(derivedColor).toUpperCase());
rgbReverseTextfield.setText(rgbColor(derivedColor));
reverseRegion.setStyle("-fx-border-color: black; "
+ "-fx-background-color: "+ ColorEncoder.getWebColor(derivedColor) +";");
// alert.setVisible(!ColorEncoder.getWebColor(desiredColor).equals(ColorEncoder.getWebColor(derivedColor)));
}