我正在使用 iText 生成 PDF,并希望包含 iText 表单和 TextFields,以便用户可以电子方式填写 PDF 表单,而不是打印出来。
我在这里遵循了示例:http: //itextpdf.com/examples/iia.php ?id=161
在这里:http: //itextpdf.com/examples/iia.php ?id=162
到目前为止,我的横向 PDF 上有一个 TextField,我可以单击并输入文本。
我有两个问题:
- 文本字段对齐。要单击文本字段,我必须将鼠标放在我也添加了 TextField 的单元格的右侧。如何将 TextField 与单元格对齐?
- 输入文本旋转。一旦我输入了文本,它就会与页面的其余部分旋转 90 度显示。如何设置此显示文本的旋转?
输入文本的旋转是最让我烦恼的事情。我尝试在单元格和 TextField 上设置旋转,但这似乎没有效果。
有什么建议么?
谢谢
这是我的代码:
int rotation = document.getPageSize().getRotation();
PdfFormField pdfForm = PdfFormField.createEmpty(docWriter);
coverSheetPdfForm.setFieldName("Form");
coverSheetPdfForm.setRotate(rotation);
...
cell = new PdfPCell(borderedTable("Cell Title:", tblHeadingFont, "", borderColor));
cell.setColspan(1);
cell.setPadding(5f);
cell.setBorderWidth(0f);
cell.setHorizontalAlignment(PdfPCell.ALIGN_LEFT);
cell.setMinimumHeight(100f);
TextField textField = new TextField(docWriter, new Rectangle(50, 50,rotation), "cell_text_field");
textField.setFontSize(12);
textField.setRotation(rotation);
textField.setVisibility(TextField.VISIBLE);
textField.setBorderColor(borderColor);
textField.setBorderWidth(BORDER_WIDTH);
cell.setCellEvent(new ChildFieldEvent(pdfForm, textField.getTextField(), 1, rotation));
.....
docWriter.addAnnotation(pdfForm);
以及我从示例页面借用的 ChildFieldEvent 代码,并添加了一个额外的旋转参数:
/**
* Creates a ChildFieldEvent.
* @param parent the parent field
* @param kid the child field
* @param padding a padding
* @param rotation
*/
public ChildFieldEvent(PdfFormField parent, PdfFormField kid, float padding, int rotation) {
this.parent = parent;
this.kid = kid;
this.padding = padding;
this.rotation = rotation;
}
/**
* Add the child field to the parent, and sets the coordinates of the child field.
* @param cell
* @param rect
* @param cb
* @see com.lowagie.text.pdf.PdfPCellEvent#cellLayout(com.lowagie.text.pdf.PdfPCell,
* com.lowagie.text.Rectangle, com.lowagie.text.pdf.PdfContentByte[])
*/
@Override
public void cellLayout(PdfPCell cell, Rectangle rect, PdfContentByte[] cb) {
try {
parent.addKid(kid);
kid.setWidget(new Rectangle(rect.getLeft(padding), rect.getBottom(padding),
rect.getRight(padding), rect.getTop(padding),rotation),
PdfAnnotation.HIGHLIGHT_INVERT);
} catch (Exception e) {
throw new ExceptionConverter(e);
}
}