Chunk amountLabel = new Chunk("Amount: ");
amountLabel.setFont(smallBold);
Chunk amountValue = new Chunk("Rs 25,000/-");
amountValue.setUnderline(0.1f, -2f); //0.1 thick, -2 y-location
amountValue.setFont(small);
Phrase phrase4 = new Phrase();
phrase4.add(amountLabel);
phrase4.add(amountValue);
PdfPCell cell5 = new PdfPCell(phrase4);
cell5.setBorder(Rectangle.NO_BORDER);
cell5.setPadding(padding);
cell5.setHorizontalAlignment(Element.ALIGN_RIGHT);
table.addCell(cell5);
この場合、itext を使用して Java を介して PDF を生成するときに、額の値を表す正方形のボックスが必要です。どなたか助けてください。