I figured it out. No thanks to you guys ;)
Here is what I have in the recordset loop on my jsp page:
PdfPCell cell;
PdfFormField nameField = PdfFormField.createSignature(writer);
nameField.setWidget(new Rectangle(0, 0, 0, 0),
PdfAnnotation.HIGHLIGHT_INVERT);
nameField.setFieldName("nameFi
Anyway you could be more specific? I might be extremely off here with my
guess..
PdfFormField field = PdfFormField.createSignature(writer);
field.setWidget(new Rectangle(0, 0, 200, 20),
PdfAnnotation.HIGHLIGHT_INVERT);
field.setFieldName("mySig");
field.setFlags(PdfAnnotation.FLAGS_PRINT);
pdfPC
QuietRiot wrote:
> I want something like this..
> float[] widths1 = {4f, 4f};
> PdfPTable table1 = new PdfPTable(widths1);
> table1.addCell(new Phrase("test1",font));
> table1.addCell(BLANK SIGNATURE FIELD);
Replace "BLANK SIGNATURE FIELD" with a PdfPCell that has a PdfCellEvent.
Add the blank si
Hi,
I'm struggling with this and haven't been able to find an answer online
anywhere. I want to add blank signature fields to a table.
I know how to create a blank signature like this:
PdfFormField field = PdfFormField.createSignature(writer);
field.setWidget(new Rectangle(72, 732, 144, 780),
P