依赖版本
准备字体
这里以宋体为例
在win下
String fontPath = "C:\Windows\Fonts\simsun.ttc,0";
在linux下(以具体安装的路径为准)
String fontPath = "/usr/share/fonts/simsun.ttc,0";
这里说明一下,ttc后面的0的含义,在win环境下,双击打开字体文件后,可以看到有下一页的操作,这里就是代表使用第几页的意思,从0开始计数。
计算文本宽度
以计算以下文本为例,并且字体大小为12f
String text = "abc-你好呀";
float fontSize = 12f;
iText5
iText5计算文本宽度使用BaseFont的Api
BaseFont baseFont = BaseFont.createFont(fontPath, BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
float textWidth = baseFont.getWidthPoint(text, fontSize);
iText7
iText7计算文本宽度使用PdfFont的Api
并且建议包含中文字体的使用外部挂载的宋体之类的字体计算宽度,纯英文数字的使用Helv字体计算宽度,否则误差比较大。
//使用iText自带的字体
PdfFont enFont = PdfFontFactory.createFont(StandrdFonts.HELVETICA);
PdfFont cnFont = PdfFontFactory.createFont(fontPath, PdfEncodings.IDENTITY_H);
//检验是否包含中文
Pattern p = Pattern.compile("[\u4E00-\u9FA5|\\!|\\,|\\。|\\(|\\)|\\《|\\》|\\“|\\”|\\?|\\:|\\;|\\【|\\】]");
Matcher m = p.matcher(text);
float textWidth;
if(m.find()){
textWidth = cnFont.getWidth(text, fontSize);
}else{
textWidth = enFont.getWidth(text, fontSize);
}
以上计算得出的textWidth就是我们需要的文本宽度啦