-1
我試圖修改現有的PDF,並希望在一個放置文本的PDF
我想下面的代碼頂部添加新的文本:
ColumnText ct = new ColumnText();
// write the text in the pdf content
cb.BeginText();
Phrase p = new Phrase(BrokerName);
ct.SetSimpleColumn(p, lxValue, lyValue, uxValue, uyValue, leadingValue, textAlign);
但是當試圖用新的文本編輯PDF。我可以插入新的文本,但它在表格下方顯示,如下圖所示。
Because Body section of table is encrypted. So I is it possible to Edit/Remove that portion?
你在哪裏得到您的值LX,LY,UX,UY? –