我正在使用 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 上生成一个小回形针图标。
如何使图标变大以使其更明显?我希望它的尺寸更大。