Hello,
In the attached pdf, I try to replace some text,
but one text-part is never replaced/found : AVPV8888.
Remark : AVPV8888 in Helvetica Lt is not found,
change font to TIMES Lt Roman, everything is Ok.
When I search in Acrobat Pro, AVPV8888 is found.
Someone any idea?
try {
//create an object of PdfContentEditor
PdfContentEditor contentEditor = new PdfContentEditor();
//bind input PDF file
contentEditor.bindPdf("nummer_TEST_2a.pdf");
contentEditor.replaceText("alles", "12345"); //ok
contentEditor.replaceText("AVPV8888", "11111111"); //not found
//save output PDF file
contentEditor.save("result.pdf");
} catch (Exception e) {
;
}
Thanks,
Dirk