我有一个 PDF,我需要在其中定义非常精确的矩形,我需要在其中注入文本。即PDF是一个模板,我需要能够指定一个矩形区域,然后将文本与矩形底部和右侧对齐。
我尝试过这样的事情: -
PdfContentByte over = ps.GetOverContent(1);
font = new Font(bf, 47, Font.NORMAL, new Color(190, 210, 49));
ct = new ColumnText(over);
myText = new Phrase("3.5", font);
ct.Alignment = Element.ALIGN_RIGHT | Element.ALIGN_BOTTOM;
ct.SetSimpleColumn(myText, 446.5f, 314.5f, 536.5f, 294.5f, 47, Element.ALIGN_RIGHT | Element.ALIGN_BOTTOM);
ct.Go();
不知道我做错了什么,但它不起作用....