Hey Guys, I Hope I am sending this through the proper channels, but it
seems the forum for pdfbox is down, so i figured I would try the mailing
list. I've got a form that I've created and I'm stuck on trying to print
the form with markups. I looked at the flags, but I am unsure if I'm on the
right track. I can save the document with markup's just fine, but I cannot
silently print them. Is there an annotation setting that I'm missing? here
is my current code. Also, is there a new forum where this project is
active. I like using PDFBox but the information on it is... sparse. Thanks
for your time.
PDDocument doc = null;
try{
doc = PDDocument.load("resources/orderForm.pdf");
PDDocumentCatalog docCatalog = doc.getDocumentCatalog();
PDAcroForm acroForm = docCatalog.getAcroForm();
PDField field = acroForm.getField("Qty1");
field.setValue("JohnTest");
field.setFieldFlags(4);
//PDAnnotation.FLAG_PRINTED;
} catch (IOException ie){
System.out.println(ie);
}
//doc.addPage(new PDPage());
try{
doc.save("Empty PDF.pdf");
//doc.silentPrint();
doc.print();
doc.close();
} catch (Exception io){
System.out.println(io);
}
}
thanks!
John