我正在使用itext生成可编辑的日历pdf。
我试图使用此代码
将TextField添加到PdfPCell//为特定日期创建PdfPCell
public PdfPCell getDayCell(Calendar calendar, Locale locale) {
PdfPCell cell = new PdfPCell();
cell.setPadding(3);
// set the background color, based on the type of day
if (isSunday(calendar))
cell.setBackgroundColor(BaseColor.GRAY);
else if (isSpecialDay(calendar))
cell.setBackgroundColor(BaseColor.LIGHT_GRAY);
else
cell.setBackgroundColor(BaseColor.WHITE);
// set the content in the language of the locale
Chunk chunk = new Chunk(String.format(locale, "%1$ta", calendar), small);
chunk.setTextRise(5);
// a paragraph with the day
Paragraph p = new Paragraph(chunk);
// a separator
p.add(new Chunk(new VerticalPositionMark()));
// and the number of the day
p.add(new Chunk(String.format(locale, "%1$te", calendar), normal));
cell.addElement(p);
cell.setCellEvent(new MyCellField(locale+""+calendar));
cell.setFixedHeight(80);
return cell;
}
//将TextField添加到cellEvent
class MyCellField implements PdfPCellEvent {
protected String fieldname;
public MyCellField(String fieldname) {
this.fieldname = fieldname;
}
public void cellLayout(PdfPCell cell, Rectangle rectangle, PdfContentByte[] canvases) {
final PdfWriter writer = canvases[0].getPdfWriter();
final TextField textField = new TextField(writer, rectangle, fieldname);
textField.setAlignment(Element.ALIGN_TOP);
textField.setOptions(TextField.MULTILINE);
try {
final PdfFormField field = textField.getTextField();
writer.addAnnotation(field);
} catch (final IOException ioe) {
throw new ExceptionConverter(ioe);
} catch (final DocumentException de) {
throw new ExceptionConverter(de);
}
}
}
当我渲染日历pdf时,Cell焦点是垂直的而不是水平的。 请帮助我找出我所缺少的东西。
注意:请不要反对,我真的想弄清楚如何解决这个问题。我引用了ITextSharp - text field in PdfPCell之类的其他链接,这些链接没有帮助。
我尝试添加
float textboxheight = 12f;
Rectangle rect = rectangle;
rect.Bottom = rect.Top - textboxheight;
rect.Bottom显示错误“无法分配最终字段Rectangle.BOTTOM”。
我正在使用iText5
答案 0 :(得分:0)
我觉得这很奇怪,因为你描述的行为不应该发生在官方的iText版本中。 (这让我想知道:你从哪里得到你的版本?)
但是,您可以尝试替换此行:
Document document = new Document(PageSize.A4);
这一行:
Document document = new Document(new Rectangle(842, 595));