You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating or editing a PDF document using RadPdfProcessing, understanding how to manage the positioning of elements is essential. This knowledge base article addresses the question of whether it's necessary to reposition all elements below a newly added element in the middle of the PDF file using [FixedContentEditor](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/editing/fixedcontenteditor) and explores the existence of a design tool for creating PDF documents. This knowledge base article also answers the following questions:
17
-
- How to generate a PDF document from images using FixedContentEditor?
18
-
- How to add a watermark to PDF files using RadPdfProcessing?
19
-
- Is there a design tool provided by Telerik for creating PDF documents?
16
+
17
+
When creating or editing a PDF document using [RadPdfProcessing]({%slug radpdfprocessing-overview%}), understanding how to manage the positioning of elements is essential. This knowledge base article addresses the question of whether it's necessary to reposition all elements below a newly added element in the middle of the PDF file using [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%}) and explores the alternative functionality offerred by the [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}) to generate a PDF table.
20
18
21
19
## Solution
20
+
21
+
RadPdfProcessing offers two options for manipulating the content in a PDF document:
22
+
23
+
***[FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%})** - requires managing the Position at which the document elements will be drawn.
24
+
25
+
***[RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%})** - manages the document's content in a flow-like manner and allows you to insert all desired elements one after another without calculating the elements' position.
26
+
22
27
### Managing Elements with FixedContentEditor
23
-
The [FixedContentEditor](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/editing/fixedcontenteditor) in RadPdfProcessing enables precise control over the element's positioning within a PDF page. It acts as a pencil, allowing content to be drawn at specific locations. After adding an element, adjust the editor's Position to prevent overlapping with subsequent elements. This method requires manual management of each element's position, especially when inserting a new element amidst existing ones.
28
+
29
+
The [FixedContentEditor]({%slug radpdfprocessing-editing-fixedcontenteditor%}) in RadPdfProcessing enables precise control over the element's positioning within a PDF page. It acts as a pencil, allowing content to be drawn at specific locations. After adding an element, adjust the editor's Position to prevent overlapping with subsequent elements. This method requires manual management of each element's position, especially when inserting a new element amidst existing ones.
24
30
25
31
For more insights on using FixedContentEditor effectively, consider reviewing these resources:
26
-
-[How to Generate a PDF Document from Images with FixedContentEditor](https://docs.telerik.com/devtools/document-processing/knowledge-base/pdf-from-images-with-fixedcontenteditor)
27
-
-[Adding a Watermark to PDF Files Using RadPdfProcessing](https://docs.telerik.com/devtools/document-processing/knowledge-base/add-watermark-pdf-radpdfprocessing)
32
+
-[Creating Custom Layout Tables with RadPdfProcessing]({%slug customize-table-layout-radpdfprocessing%})
33
+
-[How to Generate a Table with Images with PdfProcessing]({%slug generate-table-with-images-pdf-processing%})
28
34
29
35
### Flow-Like Content Management with RadFixedDocumentEditor
30
-
Alternatively, RadPdfProcessing offers the [RadFixedDocumentEditor](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/editing/radfixeddocumenteditor), which allows for a flow-like content management approach. This editor automates the positioning of elements, enabling you to insert content sequentially without manually calculating positions. This option might be more suitable for scenarios where manual positioning is cumbersome.
31
36
32
-
### Design Tool for Creating PDF
33
-
Regarding the query on a design tool for PDF creation, Telerik Document Processing is primarily focused on processing document formats programmatically and does not include a design tool for PDF creation. The functionality to visually design and edit PDF documents typically falls within UI components like a PDF viewer, which is outside the scope of the Telerik Document Processing libraries.
37
+
Alternatively, RadPdfProcessing offers the [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}, which allows for a flow-like content management approach. This editor automates the positioning of elements, enabling you to insert content sequentially without manually calculating positions. This option might be more suitable for scenarios where manual positioning is cumbersome.
38
+
39
+
The following example demonstrates how to create a table which result is illustrated below:
0 commit comments