本文整理了Java中org.geotools.styling.Font.setFontFamily()
方法的一些代码示例,展示了Font.setFontFamily()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Font.setFontFamily()
方法的具体详情如下:
包路径:org.geotools.styling.Font
类名称:Font
方法名:setFontFamily
暂无
代码示例来源:origin: geotools/geotools
public Font createFont(
Expression fontFamily,
Expression fontStyle,
Expression fontWeight,
Expression fontSize) {
Font font = new FontImpl();
if (fontFamily == null) {
throw new IllegalArgumentException("Null font family specified");
}
font.setFontFamily(fontFamily);
if (fontSize == null) {
throw new IllegalArgumentException("Null font size specified");
}
font.setFontSize(fontSize);
if (fontStyle == null) {
throw new IllegalArgumentException("Null font Style specified");
}
font.setFontStyle(fontStyle);
if (fontWeight == null) {
throw new IllegalArgumentException("Null font weight specified");
}
font.setFontWeight(fontWeight);
return font;
}
代码示例来源:origin: geotools/geotools
/**
* Utility method to capture the default font in one place.
*
* @return
*/
static Font createDefault(FilterFactory filterFactory) {
Font font = new FontImpl();
try {
font.setSize(filterFactory.literal(Integer.valueOf(10)));
font.setStyle(filterFactory.literal("normal"));
font.setWeight(filterFactory.literal("normal"));
font.setFontFamily(filterFactory.literal("Serif"));
} catch (org.geotools.filter.IllegalFilterException ife) {
throw new RuntimeException("Error creating default", ife);
}
return font;
}
代码示例来源:origin: geotools/geotools
@Override
public void handle(YamlObject<?> obj, YamlParseContext context) {
sym.setFont(font);
YamlMap map = obj.map();
if (map.has("font-family")) {
font.setFontFamily(Util.expression(map.str("font-family"), factory));
}
if (map.has("font-size")) {
font.setSize(Util.expression(map.str("font-size"), factory));
}
if (map.has("font-style")) {
font.setStyle(Util.expression(map.str("font-style"), factory));
}
if (map.has("font-weight")) {
font.setWeight(Util.expression(map.str("font-weight"), factory));
}
}
}
代码示例来源:origin: org.geotools/gt-main
public Font createFont(Expression fontFamily, Expression fontStyle,
Expression fontWeight, Expression fontSize) {
Font font = new FontImpl();
if (fontFamily == null) {
throw new IllegalArgumentException("Null font family specified");
}
font.setFontFamily(fontFamily);
if (fontSize == null) {
throw new IllegalArgumentException("Null font size specified");
}
font.setFontSize(fontSize);
if (fontStyle == null) {
throw new IllegalArgumentException("Null font Style specified");
}
font.setFontStyle(fontStyle);
if (fontWeight == null) {
throw new IllegalArgumentException("Null font weight specified");
}
font.setFontWeight(fontWeight);
return font;
}
代码示例来源:origin: org.geotools/gt2-main
public Font createFont(Expression fontFamily, Expression fontStyle,
Expression fontWeight, Expression fontSize) {
Font font = new FontImpl();
if (fontFamily == null) {
throw new IllegalArgumentException("Null font family specified");
}
font.setFontFamily(fontFamily);
if (fontSize == null) {
throw new IllegalArgumentException("Null font size specified");
}
font.setFontSize(fontSize);
if (fontStyle == null) {
throw new IllegalArgumentException("Null font Style specified");
}
font.setFontStyle(fontStyle);
if (fontWeight == null) {
throw new IllegalArgumentException("Null font weight specified");
}
font.setFontWeight(fontWeight);
return font;
}
代码示例来源:origin: org.geotools/gt2-main
font.setFontFamily(parseCssParameter(child));
代码示例来源:origin: org.geotools/gt-main
font.setFontFamily(parseCssParameter(child));
} else if (res.equalsIgnoreCase("font-style")) {
font.setFontStyle(parseCssParameter(child));
代码示例来源:origin: org.geotools/gt-main
/**
* Utility method to capture the default font in one place.
* @return
*/
static Font createDefault( FilterFactory filterFactory ) {
Font font = new FontImpl();
try {
font.setSize(filterFactory.literal(
new Integer(10)));
font.setStyle(filterFactory.literal("normal"));
font.setWeight(filterFactory.literal("normal"));
font.setFontFamily(filterFactory.literal("Serif"));
} catch (org.geotools.filter.IllegalFilterException ife) {
throw new RuntimeException("Error creating default", ife);
}
return font;
}
代码示例来源:origin: org.geotools/gt2-main
/**
* Creates a defaultFont which is valid on all machines. The font is of
* size 10, Style and Weight normal and uses a serif font.
*
* @return the default Font
*
* @throws RuntimeException DOCUMENT ME!
*/
public Font getDefaultFont() {
Font font = new FontImpl();
try {
font.setFontSize(filterFactory.literal(
new Integer(10)));
font.setFontStyle(filterFactory.literal("normal"));
font.setFontWeight(filterFactory.literal("normal"));
font.setFontFamily(filterFactory.literal("Serif"));
} catch (org.geotools.filter.IllegalFilterException ife) {
throw new RuntimeException("Error creating font", ife);
}
return font;
}
代码示例来源:origin: org.geotools/gt-widgets-swing-pending
public void apply(){
if(font != null){
font.setFontFamily(guiFamily.getExpression());
font.setFontSize(guiSize.getExpression());
font.setFontStyle(guiStyle.getExpression());
font.setFontWeight(guiWeight.getExpression());
}
}
代码示例来源:origin: org.geotools/gt-ysld
@Override
public void handle(YamlObject<?> obj, YamlParseContext context) {
sym.setFont(font);
YamlMap map = obj.map();
if (map.has("font-family")) {
font.setFontFamily(Util.expression(map.str("font-family"), factory));
}
if (map.has("font-size")) {
font.setSize(Util.expression(map.str("font-size"), factory));
}
if (map.has("font-style")) {
font.setStyle(Util.expression(map.str("font-style"), factory));
}
if (map.has("font-weight")) {
font.setWeight(Util.expression(map.str("font-weight"), factory));
}
}
}
内容来源于网络,如有侵权,请联系作者删除!