ITextFontUtil_word字体

public class ITextFontUtil {
 
 /** 
     * 新建一个字体,iText的方法 STSongStd-Light 是字体,在iTextAsian.jar 中以property为后缀 
     * UniGB-UCS2-H 是编码,在iTextAsian.jar 中以cmap为后缀 H 代表文字版式是 横版, 相应的 V 
     * 代表竖版 
     */  
 public static String CHINA_FONT_SONGTI = "STSongStd-Light"; //宋体
 public static String CHINA_FONT_KAIU = "C:\\WINDOWS\\Fonts\\kaiu.ttf"; // kaiu字體
 public static String ENCODE_GB = "UniGB-UCS2-H"; // 中文编码GB(横版)
 
 /**
  * 取得基本字体
  * @param font
  * @param encode
  * @return
  */
 public static BaseFont getBaseFont(String font, String encode){
  BaseFont bfChinese = null;
  try {
   bfChinese = BaseFont.createFont(font, encode, false);
  } catch (Exception e) {   
   e.printStackTrace();
  }
  return bfChinese;
 }
 
 
 /**
  *取得具体字体
  * @param baseFont 基本字体
  * @param fontSize 字体大小 ,如12
  * @param fontStyle  字体样式, 如com.lowagie.text.Font.BOLD(粗), Font.ITALIC(斜), Font.BOLDITALIC(粗斜),Font.NORMAL(普通)
  * @param color 字体颜色 ,如:java.awt.Color.BLACK ,Color.BLUE
  * @return
  */
 public static Font getFont(BaseFont baseFont, float fontSize, int fontStyle, Color color){
  Font font = new Font(baseFont, fontSize, fontStyle, color);
  return font;
 }
 
 /**
  * 取得中文基本字体(横向)
  * @return
  */
 public static BaseFont getCnBaseFont(){
  return getBaseFont(CHINA_FONT_SONGTI, ENCODE_GB);
 }
 
 /**
  * 取得正常字体
  * @param fontSize 字体大小 ,如12
  * @param color 字体颜色 ,如Color.BLACK
  * @return
  */
 public static Font getCnFont(float fontSize, Color color){
  BaseFont bfCn = getCnBaseFont();
  Font boldFont = getFont(bfCn, fontSize, Font.NORMAL, color);
  return boldFont;
 }
 
 /**
  * 取得加粗字体
  * @param fontSize 字体大小 ,如12
  * @param color 字体颜色 ,如Color.BLACK
  * @return
  */
 public static Font getCnBoldFont(float fontSize, Color color){
  BaseFont bfCn = getCnBaseFont();
  Font boldFont = getFont(bfCn, fontSize, Font.BOLD, color);
  return boldFont;
 }
 
 
 /**
  * 取得斜体
  * @param fontSize 字体大小 ,如12
  * @param color 字体颜色 ,如Color.BLACK
  * @return
  */
 public static Font getCnItalicFont(float fontSize, Color color){
  BaseFont bfCn = getCnBaseFont();
  Font boldFont = getFont(bfCn, fontSize, Font.ITALIC, color);
  return boldFont;
 }
 
 /**
  * 取得粗斜体
  * @param fontSize 字体大小 ,如12
  * @param color 字体颜色 ,如Color.BLACK
  * @return
  */
 public static Font getCnBoldItalicFont(float fontSize, Color color){
  BaseFont bfCn = getCnBaseFont();
  Font boldFont = getFont(bfCn, fontSize, Font.BOLDITALIC, color);
  return boldFont;
 }
 
 /**
  * 取得下划线字体
  * @param fontSize 字体大小 ,如12
  * @param color 字体颜色 ,如Color.BLACK
  * @return
  */
 public static Font getCnUnderlineFont(float fontSize, Color color){
  BaseFont bfCn = getCnBaseFont();
  Font boldFont = getFont(bfCn, fontSize, Font.UNDERLINE, color);
  return boldFont;
 }
 
 

 

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值