本文整理汇总了Java中org.apache.poi.ss.usermodel.Font.getFontHeightInPoints方法的典型用法代码示例。如果您正苦于以下问题:Java Font.getFontHeightInPoints方法的具体用法?Java Font.getFontHeightInPoints怎么用?Java Font.getFontHeightInPoints使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.poi.ss.usermodel.Font
的用法示例。
在下文中一共展示了Font.getFontHeightInPoints方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: fontStyle
import org.apache.poi.ss.usermodel.Font; //导入方法依赖的package包/类
private void fontStyle(Font font) {
if (font.getBoldweight() >= Font.BOLDWEIGHT_BOLD)
out.format(" font-weight: bold;%n");
if (font.getItalic())
out.format(" font-style: italic;%n");
out.format(" font-family: %s;%n", font.getFontName());
int fontheight = font.getFontHeightInPoints();
if (fontheight == 9) {
fontheight = 10;
}
out.format(" font-size: %dpt;%n", fontheight);
helper.styleColor(out, "color", getColor(font));
}
示例2: PoiFontDto
import org.apache.poi.ss.usermodel.Font; //导入方法依赖的package包/类
/**
* コンストラクタ
* @param font
*/
public PoiFontDto(Font font) {
if (font == null) return;
boldweight = StyleUtil.getBoldWeight(font.getBoldweight());
color = StyleUtil.getColor(font.getColor());
fontHeight = font.getFontHeight();
fontHeightInPoints = font.getFontHeightInPoints();
fontName = font.getFontName();
italic = font.getItalic();
strikeout = font.getStrikeout();
typeOffset = StyleUtil.getFontOffset(font.getTypeOffset());
underline = StyleUtil.getFontUnderline(font.getUnderline());
this.font = font;
}
示例3: getPoiFont
import org.apache.poi.ss.usermodel.Font; //导入方法依赖的package包/类
PoiFont getPoiFont(com.dua3.utility.text.Font font, TextAttributes attributes) {
String name = String.valueOf(attributes.getOrDefault(TextAttributes.FONT_FAMILY, font.getFamily()));
Object sSize = attributes.get(TextAttributes.FONT_SIZE);
short height = (short) Math.round(sSize == null ? font.getSizeInPoints() : TextUtil.decodeFontSize(sSize.toString()));
final Object sStyle = attributes.get(TextAttributes.FONT_STYLE);
boolean italic = sStyle == null ? font.isItalic() : "italic".equals(sStyle);
final Object sWeight = attributes.get(TextAttributes.FONT_WEIGHT);
boolean bold = sWeight == null ? font.isBold() : "bold".equals(sWeight);
Object sDecoration = attributes.get(TextAttributes.TEXT_DECORATION);
boolean underline = sDecoration == null ? font.isUnderlined() : "underline".equals(sDecoration);
boolean strikethrough = sDecoration == null ? font.isStrikeThrough() : "line-through".equals(sDecoration);
Object sColor = attributes.get(TextAttributes.COLOR);
Color color = sColor == null ? font.getColor() : Color.valueOf(sColor.toString());
// try to find existing font
for (short i = 0; i < poiWorkbook.getNumberOfFonts(); i++) {
Font poiFont = poiWorkbook.getFontAt(i);
if (poiFont.getFontName().equalsIgnoreCase(name)
&& poiFont.getFontHeightInPoints() == height
&& poiFont.getBold() == bold
&& poiFont.getItalic() == italic
&& (poiFont.getUnderline() != Font.U_NONE) == underline
&& poiFont.getStrikeout() == strikethrough
&& getColor(poiFont, Color.BLACK).equals(color)
&& poiFont.getTypeOffset() == Font.SS_NONE) {
return new PoiFont(this, poiFont);
}
}
// if not found, create it
return createFont(font);
}
示例4: getScale
import org.apache.poi.ss.usermodel.Font; //导入方法依赖的package包/类
private static double getScale(Font font) {
String name = font.getFontName();
int pt = font.getFontHeightInPoints();
if ("MS Pゴシック".equals(name) && pt == 11) return SCALE_MSGOTHIC;
if ("Arial".equals(name) && pt == 10) return SCALE_ARIAL;
System.out.println("Unknown font: " + name + ", " + pt);
return SCALE_MSGOTHIC;
}
示例5: get
import org.apache.poi.ss.usermodel.Font; //导入方法依赖的package包/类
@Override
public Object get(Column column, Cell cell, Font font) {
return (long) font.getFontHeightInPoints();
}