当前位置: 首页>>代码示例>>Java>>正文


Java FontFactory.isRegistered方法代码示例

本文整理汇总了Java中com.lowagie.text.FontFactory.isRegistered方法的典型用法代码示例。如果您正苦于以下问题:Java FontFactory.isRegistered方法的具体用法?Java FontFactory.isRegistered怎么用?Java FontFactory.isRegistered使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.lowagie.text.FontFactory的用法示例。


在下文中一共展示了FontFactory.isRegistered方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: initFont

import com.lowagie.text.FontFactory; //导入方法依赖的package包/类
private static void initFont() {
	String fontName = ServerConfigurationService.getString("pdf.default.font");
	if (StringUtils.isNotBlank(fontName)) {
		FontFactory.registerDirectories();
		if (FontFactory.isRegistered(fontName)) {
			font = FontFactory.getFont(fontName, BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
			boldFont = FontFactory.getFont(fontName, BaseFont.IDENTITY_H, BaseFont.EMBEDDED, 10, Font.BOLD);
		} else {
			log.warn("Can not find font: " + fontName);
		}
	}
	if (font == null) {
		font = new Font();
		boldFont = new Font(Font.COURIER, 10, Font.BOLD);
	}
}
 
开发者ID:sakaiproject,项目名称:sakai,代码行数:17,代码来源:SpreadsheetDataFileWriterPdf.java

示例2: HTMLWorker

import com.lowagie.text.FontFactory; //导入方法依赖的package包/类
/** Creates a new instance of HTMLWorker */
public HTMLWorker(DocListener document) {
	this.document = document;
	cprops = new ChainedProperties();
	String fontName = ServerConfigurationService.getString("pdf.default.font");
	if (StringUtils.isNotBlank(fontName)) {
		FontFactory.registerDirectories();
		if (FontFactory.isRegistered(fontName)) {
			HashMap fontProps = new HashMap();
			fontProps.put(ElementTags.FACE, fontName);
			fontProps.put("encoding", BaseFont.IDENTITY_H);
			cprops.addToChain("face", fontProps);
		}
	}
}
 
开发者ID:sakaiproject,项目名称:sakai,代码行数:16,代码来源:HTMLWorker.java

示例3: retrieveFont

import com.lowagie.text.FontFactory; //导入方法依赖的package包/类
/**
 * Retrieves a font from the FontFactory based on some style attributes.
 * Looks for the font-family, font-size, font-weight, font-style and color.
 * Takes the default encoding and embedded value.
 * @param styleAttributes a Properties object containing keys and values
 * @return an iText Font object
 */
    
public Font retrieveFont(Properties styleAttributes) {
    String fontname = null;
    String encoding = FontFactory.defaultEncoding;
    boolean embedded = FontFactory.defaultEmbedding;
    float size = Font.UNDEFINED;
    int style = Font.NORMAL;
    Color color = null;
    String value = (String)styleAttributes.get(MarkupTags.CSS_KEY_FONTFAMILY);
    if (value != null) {
    	if (value.indexOf(",") == -1) {
    		fontname = value.trim();
    	}
        else {
        	String tmp;
        	while (value.indexOf(",") != -1) {
        		tmp = value.substring(0, value.indexOf(",")).trim();
        		if (FontFactory.isRegistered(tmp)) {
        			fontname = tmp;
        			break;
        		}
        		else {
        			value = value.substring(value.indexOf(",") + 1);
        		}
        	}
        }
    }
    if ((value = (String)styleAttributes.get(MarkupTags.CSS_KEY_FONTSIZE)) != null) {
         size = MarkupParser.parseLength(value);
    }
    if ((value = (String)styleAttributes.get(MarkupTags.CSS_KEY_FONTWEIGHT)) != null) {
        style |= Font.getStyleValue(value);
    }
    if ((value = (String)styleAttributes.get(MarkupTags.CSS_KEY_FONTSTYLE)) != null) {
        style |= Font.getStyleValue(value);
    }
    if ((value = (String)styleAttributes.get(MarkupTags.CSS_KEY_COLOR)) != null) {
        color = MarkupParser.decodeColor(value);
    }
    return FontFactory.getFont(fontname, encoding, embedded, size, style, color);
}
 
开发者ID:MesquiteProject,项目名称:MesquiteArchive,代码行数:49,代码来源:MarkupParser.java


注:本文中的com.lowagie.text.FontFactory.isRegistered方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。