次のように IText を使用して PDF ファイルに添付ファイルを追加しています。
document.add(new Paragraph(attac.get(index).toString()));
chunk = new Chunk("\u00a0\u00a0");
PdfAnnotation annotation = PdfAnnotation.createFileAttachment(writer,rect, "Click to open" , null,
attac.get(index),
attac.get(index));
annotation.setColor(BaseColor.BLUE);
annotation.setAppearance(new PdfName(""), template);
chunk.setAnnotation(annotation);
document.add(chunk);
これにより、作成された pdf に小さなクリップ アイコンが生成されます。
アイコンを大きくして見やすくするにはどうすればよいですか? その次元をもっと大きくしたい。