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
I need to export items, including images, text, and prices, into a PDF format that allows the text fields to be editable. This PDF document will be shared with a team while maintaining the look and feel of a specific design template.
26
+
Learn how to generate a PDF catalog from business objects, including images, text, and prices.
22
27
23
-
This knowledge base article also answers the following questions:
24
-
- How can I export items with editable text fields to a PDF?
25
-
- Can Telerik PdfProcessing create an editable PDF with interactive fields?
26
-
- How to generate a PDF catalog with images and editable text using Telerik PdfProcessing?
28
+

27
29
28
30
## Solution
29
31
30
-
To achieve this, use the Telerik [PdfProcessing](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/overview) library, which supports creating and modifying PDF documents with interactive forms. Below is a sample implementation to generate a catalog PDF with editable text fields:
32
+
To achieve this, use the Telerik [PdfProcessing]({%slug radpdfprocessing-overview%}) library, which supports creating and modifying PDF documents. Below is a sample implementation to generate a PDF catalog using the [RadFixedDocumentEditor]({%slug radpdfprocessing-editing-radfixeddocumenteditor%}):
31
33
32
34
### Code Example
33
35
@@ -150,14 +152,8 @@ internal class Program
150
152
}
151
153
```
152
154
153
-
### Key Notes
154
-
1. Replace the inserted text blocks with interactive form fields like [TextBoxField](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/model/interactive-forms/form-fields/textboxfield) for editable text.
155
-
2. Ensure all required images are available in the specified paths.
-[Interactive Forms in PdfProcessing](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/model/interactive-forms/overview)
0 commit comments