Próbuję wypełnić PDF za pomocą ekranów, jestem w stanie idealnie dodać dane ciągów, ale problemy z dodawaniem obrazów do ekranów. To jest mój kod na dodawanie danych ciągów ..Dodaj obraz do acrofield w iText?
File f = new File("F:/Test/Agreement.pdf");
InputStream sourceTemplatePDFUrlStream = new BufferedInputStream(new FileInputStream(f));
File destinationFile = new File("F:/Test/ag1.pdf");
PdfReader reader = new PdfReader(sourceTemplatePDFUrlStream);
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(
destinationFile));
AcroFields form = stamper.getAcroFields();
Image img = Image.getInstance("E:/signature/signature.png");
Set fields = form.getFields().keySet();
Hashtable val = new Hashtable();
val.put("name", "xxx");
val.put("city_street_zip", "xxx"+" "+"xxx"+" "+"xxx");
val.put("chck_1", "Yes");
val.put("chck_2", "No");
val.put("chck_3", "Yes");
val.put("street_address", "xxx");
val.put("account_num", "1234");
Enumeration enumeration = val.keys();
// iterate through Hashtable val keys Enumeration
while (enumeration.hasMoreElements()) {
String nextElement = (String) enumeration.nextElement();
String nextElementValue = (String) val.get(nextElement);
//System.out.println(nextElement + ":=================fillData===================:" + nextElementValue);
form.setField(nextElement, nextElementValue);
}
//Form flattening makes the form non-editable and saveable with the
//form val filled in
stamper.setFormFlattening(true);
stamper.close();
pokazać nam swój kod –
@VigneshVino edytowane mój kod question..included –
Twój ślad stosu pomoże mi zrozumieć u'r WYDANIE –