Write page content to PDF on Server/Desktop

To write page content to a new document.

1PDFDoc doc = new PDFDoc();
2
3// ElementBuilder is used to build new Element objects
4ElementBuilder builder = new ElementBuilder();
5
6// ElementWriter is used to write Elements to the page
7ElementWriter writer = new ElementWriter();
8
9// Start a new page
10Page page = doc.PageCreate();
11
12// Begin writing to this page
13writer.Begin(page);
14
15// Create an Image that can be reused multiple times in the document or multiple on the same page.
16MappedFile img_file = new MappedFile(imagename);
17FilterReader img_data = new FilterReader(img_file);
18Image img = Image.Create(doc, img_data, 400, 600, 8, ColorSpace.CreateDeviceRGB(), Image.InputFilter.e_jpeg);
19Element element = builder.CreateImage(img, new Matrix2D(200, -145, 20, 300, 200, 150));
20writer.WritePlacedElement(element);
21
22// Use the same image (just change its matrix)
23GState gstate = element.GetGState();
24gstate.SetTransform(200, 0, 0, 300, 50, 450);
25writer.WritePlacedElement(element);
26
27// Use the same image (just change its matrix)
28writer.WritePlacedElement(builder.CreateImage(img, 300, 600, 200, -150));
29
30// save changes to the current page
31writer.End();
32
33// Add the new page to the document sequence
34doc.PagePushBack(page);

Build, Write, Embed Elements in PDF Pages
Full code sample which illustrates how to use PDFNet page writing API, how to embed fonts and images and how to copy graphical elements from one page to another.

About writing page content

New page content can be added to an existing page or a blank new page using ElementBuilder and ElementWriter. ElementBuilder is used to instantiate one or more Elements that can be written to one or more pages using ElementWriter:

Apryse Docs Image

Note that once the Element is instantiated using ElementBuilder, you have full control over its properties and graphics state.

Page content can also come from existing pages. For example, you can use ElementReader to read paths, text, and images from existing pages and copy them to the current page. Note that, along the way, you can fully modify an Element's properties or its graphics state. This is how to perform page content editing. For example, the following copies all Elements from an existing page and changes text color to blue:

1PDFDoc doc = new PDFDoc(filename);
2ElementWriter writer = new ElementWriter();
3ElementReader reader = new ElementReader();
4
5reader.Begin(doc.PageBegin().Current());
6
7Page new_page = doc.PageCreate(new Rect(0, 0, 612, 794));
8doc.PagePushBack(new_page);
9
10writer.Begin(new_page);
11
12Element element;
13while ((element = reader.Next()) != null)
14{
15 switch (element.GetType())
16 {
17 case Element.Type.e_text:
18 {
19 // Set all text to blue color.
20 GState gs = element.GetGState();
21 gs.SetFillColorSpace(ColorSpace.CreateDeviceRGB());
22 gs.SetFillColor(new ColorPt(0, 0, 1));
23 writer.WriteElement(element);
24 break;
25 }
26 default:
27 writer.WriteElement(element);
28 break;
29 }
30}
31
32writer.End();
33reader.End();

PDF Editor (Programmatic)
Full code sample which strips all images from the page and changes text color to blue.

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales