作者:祥仔先森_530 | 来源:互联网 | 2024-10-29 20:40
本文整理了Java中org.geomajas.configuration.FontStyleInfo.getColor()方法的一些代码示例,展示了FontStyleInfo.getColor()的具
本文整理了Java中org.geomajas.configuration.FontStyleInfo.getColor()
方法的一些代码示例,展示了FontStyleInfo.getColor()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FontStyleInfo.getColor()
方法的具体详情如下:
包路径:org.geomajas.configuration.FontStyleInfo
类名称:FontStyleInfo
方法名:getColor
FontStyleInfo.getColor介绍
[英]Get the font color.
[中]获取字体颜色。
代码示例
代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient
if (null != legendConfig.getFontStyle().getColor()) {
url.append("fontColor:");
url.append(legendConfig.getFontStyle().getColor().replace("#", "0x"));
url.append(";");
代码示例来源:origin: org.geomajas/geomajas-client-common-gwt-command
/**
* Creates a text symbolizer with the specified font style.
*
* @param style font style
* @return the symbolizer
*/
public static TextSymbolizerInfo createSymbolizer(FontStyleInfo style) {
TextSymbolizerInfo symbolizerInfo = new TextSymbolizerInfo();
FontInfo fOnt= new FontInfo();
font.setFamily(style.getFamily());
font.setStyle(style.getStyle());
font.setWeight(style.getWeight());
font.setSize(style.getSize());
symbolizerInfo.setFont(font);
symbolizerInfo.setFill(createFill(style.getColor(), style.getOpacity()));
return symbolizerInfo;
}
代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-printing
if (labelType.getFontStyle() != null) {
fOntColor= context
.getColor(labelType.getFontStyle().getColor(), labelType.getFontStyle().getOpacity());