本文整理了Java中org.weasis.core.api.service.WProperties.color2Hexadecimal()
方法的一些代码示例,展示了WProperties.color2Hexadecimal()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WProperties.color2Hexadecimal()
方法的具体详情如下:
包路径:org.weasis.core.api.service.WProperties
类名称:WProperties
方法名:color2Hexadecimal
暂无
代码示例来源:origin: nroduit/Weasis
@Override
public ColorModel marshal(Color color) throws Exception {
ColorModel m = new ColorModel();
m.rgb = WProperties.color2Hexadecimal(color, true);
return m;
}
代码示例来源:origin: nroduit/Weasis
@Override
public ColorModel marshal(Paint color) throws Exception {
ColorModel m = new ColorModel();
if (color instanceof Color) {
m.rgb = WProperties.color2Hexadecimal((Color) color, true);
}
return m;
}
代码示例来源:origin: nroduit/Weasis
public void putColorProperty(String key, Color color) {
if (isValid(key, color)) {
this.put(key, color2Hexadecimal(color, true));
}
}
内容来源于网络,如有侵权,请联系作者删除!