Change the position of a field
These examples were written in answer to questions such as:
changefieldsize
JAVA
JAVA
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2023 Apryse Group NV
Authors: Apryse Software.
For more information, please contact iText Software at this address:
sales@itextpdf.com
*/
package com.itextpdf.samples.sandbox.acroforms;
import com.itextpdf.forms.PdfAcroForm;
import com.itextpdf.forms.fields.PdfFormCreator;
import com.itextpdf.forms.fields.PdfFormField;
import com.itextpdf.kernel.pdf.PdfDocument;
import com.itextpdf.kernel.pdf.PdfWriter;
import com.itextpdf.kernel.pdf.PdfReader;
import com.itextpdf.kernel.pdf.PdfArray;
import com.itextpdf.kernel.pdf.PdfNumber;
import com.itextpdf.kernel.pdf.annot.PdfWidgetAnnotation;
import java.io.File;
public class ChangeFieldSize {
public static final String DEST = "./target/sandbox/acroforms/change_field_size.pdf";
public static final String SRC = "./src/main/resources/pdfs/form.pdf";
public static void main(String[] args) throws Exception {
File file = new File(DEST);
file.getParentFile().mkdirs();
new ChangeFieldSize().manipulatePdf(DEST);
}
protected void manipulatePdf(String dest) throws Exception {
PdfDocument pdfDoc = new PdfDocument(new PdfReader(SRC), new PdfWriter(dest));
PdfAcroForm form = PdfFormCreator.getAcroForm(pdfDoc, true);
PdfFormField field = form.getField("Name");
PdfWidgetAnnotation widgetAnnotation = field.getWidgets().get(0);
PdfArray annotationRect = widgetAnnotation.getRectangle();
// Change value of the right coordinate (index 2 corresponds with right coordinate)
annotationRect.set(2, new PdfNumber(annotationRect.getAsNumber(2).floatValue() + 20f));
String value = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" +
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
field.setValue(value);
form.getField("Company").setValue(value);
pdfDoc.close();
}
}
C#
C#
using System;
using System.IO;
using iText.Forms;
using iText.Forms.Fields;
using iText.Kernel.Pdf;
using iText.Kernel.Pdf.Annot;
namespace iText.Samples.Sandbox.Acroforms
{
public class ChangeFieldSize
{
public static readonly String DEST = "results/sandbox/acroforms/change_field_size.pdf";
public static readonly String SRC = "../../../resources/pdfs/form.pdf";
public static void Main(String[] args)
{
FileInfo file = new FileInfo(DEST);
file.Directory.Create();
new ChangeFieldSize().ManipulatePdf(DEST);
}
protected void ManipulatePdf(String dest)
{
PdfDocument pdfDoc = new PdfDocument(new PdfReader(SRC), new PdfWriter(dest));
PdfAcroForm form = PdfFormCreator.GetAcroForm(pdfDoc, true);
PdfFormField field = form.GetField("Name");
PdfWidgetAnnotation widgetAnnotation = field.GetWidgets()[0];
PdfArray annotationRect = widgetAnnotation.GetRectangle();
// Change value of the right coordinate (index 2 corresponds with right coordinate)
annotationRect.Set(2, new PdfNumber(annotationRect.GetAsNumber(2).FloatValue() + 20f));
String value = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" +
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
field.SetValue(value);
form.GetField("Company").SetValue(value);
pdfDoc.Close();
}
}
}
checkboxflatten
JAVA
JAVA
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2023 Apryse Group NV
Authors: Apryse Software.
For more information, please contact iText Software at this address:
sales@itextpdf.com
*/
package com.itextpdf.samples.sandbox.acroforms;
import com.itextpdf.forms.fields.PdfFormCreator;
import com.itextpdf.kernel.pdf.PdfDocument;
import com.itextpdf.kernel.pdf.PdfReader;
import com.itextpdf.kernel.pdf.PdfWriter;
import com.itextpdf.forms.PdfAcroForm;
import java.io.File;
public class CheckBoxFlatten {
public static final String DEST = "./target/sandbox/acroforms/checkbox_flatten.pdf";
public static final String SRC = "./src/main/resources/pdfs/checkboxes.pdf";
public static void main(String[] args) throws Exception {
File file = new File(DEST);
file.getParentFile().mkdirs();
new CheckBoxFlatten().manipulatePdf(DEST);
}
protected void manipulatePdf(String dest) throws Exception {
PdfDocument pdfDoc = new PdfDocument(new PdfReader(SRC), new PdfWriter(dest));
PdfAcroForm form = PdfFormCreator.getAcroForm(pdfDoc, true);
// If no fields have been explicitly included, then all fields are flattened.
// Otherwise only the included fields are flattened.
form.flattenFields();
pdfDoc.close();
}
}
C#
C#
using System;
using System.IO;
using iText.Forms;
using iText.Forms.Fields;
using iText.Kernel.Pdf;
namespace iText.Samples.Sandbox.Acroforms
{
public class CheckBoxFlatten
{
public static readonly String DEST = "results/sandbox/acroforms/checkbox_flatten.pdf";
public static readonly String SRC = "../../../resources/pdfs/checkboxes.pdf";
public static void Main(String[] args)
{
FileInfo file = new FileInfo(DEST);
file.Directory.Create();
new CheckBoxFlatten().ManipulatePdf(DEST);
}
protected void ManipulatePdf(String dest)
{
PdfDocument pdfDoc = new PdfDocument(new PdfReader(SRC), new PdfWriter(dest));
PdfAcroForm form = PdfFormCreator.GetAcroForm(pdfDoc, true);
// If no fields have been explicitly included, then all fields are flattened.
// Otherwise only the included fields are flattened.
form.FlattenFields();
pdfDoc.Close();
}
}
}