iText: PdfTable cell vertical alignment

删除回忆录丶 提交于 2019-12-03 03:06:27

According to Lowagie:

PdfPCell cell = new PdfPCell(new Phrase("blah Blah blah");
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);

This is always correct in a technical sense, but sometimes looks bad.

To center, draw a box around the object, find its middle, and align it with the center of its surrounding object.

iText thus finds the center of the phrase, and aligns it. But human eyes sometimes focus on the bulk of text, say the parts of the font between the baseline and the cap height. So to have it look good, you need to center relative to that.

Phrase content = new Phrase("Blah blah blah", Font);

Float fontSize = content.getFont().getSize();
Float capHeight = content.getFont().getBaseFont().getFontDescriptor(BaseFont.CAPHEIGHT, fontSize);

Float padding = 5f;    

PdfPCell cell = new PdfPCell(content);
cell.setPadding(padding);
cell.setPaddingTop(capHeight - fontSize + padding);

Note that the PdfPCell method setVerticalAlignment(..) isn't used.

It seems like this wouldn't necessarily work for a multi-line phrase, but it does.

The problem would be obvious if iText could show bounding boxes around things (mind, you can tell iText to draw bounding boxes, it's just more work than a magical on/off switch).

This solution is adapted from an email from Paulo Soares.

Add cell.setUseAscender(true) before c1.setVerticalAlignment(Element.ALIGN_MIDDLE); I have the same problem with you, when add code above I find it can work, hope this can solve your problem, thanks.

Pajoc

You can use the option ExtraParagraphSpace:

c1.HorizontalAlignment = Element.ALIGN_CENTER;
c1.VerticalAlignment = Element.ALIGN_MIDDLE;
c1.ExtraParagraphSpace = 2;
Arséne

You cant do like this :

cell.setBackgroundColor(BaseColor.GRAY);
cell.setHorizontalAlignment(Element.ALIGN_LEFT);
cell.setVerticalAlignment(Element.ALIGN_MIDDLE);
cell.setUseAscender(true);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!