0
PDFBox 2.0.0でフィールドの位置を取得する方法は? Pdfbox 1.8.11とで それはこのように私の作品:pdfbox PDFBox 2.0.0フィールドの位置を取得
String formTemplate = "Template.pdf";
PDDocument pdfDocument = PDDocument.load(new File(formTemplate));
PDDocumentCatalog docCatalog = pdfDocument.getDocumentCatalog();
PDAcroForm acroForm = docCatalog.getAcroForm();
String fieldName = "Name";
PDField f = acroForm.getField(fieldName);
if (f != null) {
PDRectangle r = f.getWidget().getRectangle();
float llx = r.getLowerLeftX();
float lly = r.getLowerLeftY();
float urx = r.getUpperRightX();
float ury = r.getUpperRightY();
さて、f.getWidget()はもう動作してはいけない。..
おかげ ロン