Add image to a specific location using iText in Android
问题 I want to add image to a specific location in a PDF file using iText in Android. This is a fillable form and I have added textbox that is a place holder for the image and what I want to do is to get that textbox and image to it like this. public class FormFill { public static void fill(AcroFields form, Person person) throws IOException, DocumentException{ form.setField("firstname", person.getFirstName()); form.setField("lastname", person.getLastName()); form.setField("imagetextbox", "???"); }