iText制作PDFCheckbox-1

package test;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.ExceptionConverter;
import com.itextpdf.text.Rectangle;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfPCell;
import com.itextpdf.text.pdf.PdfPCellEvent;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;
import com.itextpdf.text.pdf.RadioCheckField;
public class CheckboxCell {

public static final String DEST = "E:\\checkboxl.pdf";

public static void main(String[] args) throws IOException, DocumentException {
File file = new File(DEST);
file.getParentFile().mkdirs();
new CheckboxCell().createPdf(DEST);
}

public void createPdf(String dest) throws IOException, DocumentException {
Document document = new Document();
PdfWriter.getInstance(document, new FileOutputStream(dest));
document.open();
// We create a table with 5 columns
PdfPTable table = new PdfPTable(5);
PdfPCell cell;
// We add 5 cells
for (int i = 0; i < 5; i++) {
cell = new PdfPCell();
cell.setCellEvent(new CheckboxCellEvent("cb" + i));
// We create cell with height 50
cell.setMinimumHeight(50);
table.addCell(cell);
}
document.add(table);
document.close();
}

class CheckboxCellEvent implements PdfPCellEvent {
// The name of the check box field
protected String name;
// We create a cell event
public CheckboxCellEvent(String name) {
this.name = name;
}
// We create and add the check box field
public void cellLayout(PdfPCell cell, Rectangle position,
PdfContentByte[] canvases) {
PdfWriter writer = canvases[0].getPdfWriter();
// define the coordinates of the middle
float x = (position.getLeft() + position.getRight()) / 2;
float y = (position.getTop() + position.getBottom()) / 2;
// define the position of a check box that measures 20 by 20
Rectangle rect = new Rectangle(x - 10, y - 10, x + 10, y + 10);
// define the check box
RadioCheckField checkbox = new RadioCheckField(
writer, rect, name, "ON");
checkbox.setCheckType(RadioCheckField.TYPE_CHECK);
//关键
checkbox.setChecked(true);
//checkbox.setChecked(false);
// add the check box as a field
try {
writer.addAnnotation(checkbox.getCheckField());
System.out.println("===========:end");
} catch (Exception e) {
throw new ExceptionConverter(e);
}
}
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值