Create PDF in COM
Creating PDFs programmatically from scratch using DynamicPDF Generator is very straight forward. You have access to the document, pages in the document and content (using page elements) on each page.
How to Create PDF in COM
Below are the steps and sample code to create a PDF document using the Generator product.
Steps for Creating a PDF Document
- Create a
Document
object. - Create a
Page
object and add it to theDocument
. - Create a
Label
object (or any other page element) and add it to thePage
. - Save the PDF document.
Sample Code - COM
Dim MyDocument
Set MyDocument = Server.CreateObject("DynamicPDF.Document")
Dim MyPage
Set MyPage = MyDocument.AddPage()
Dim MyLabel
Set MyLabel = MyPage.AddLabel("My PDF Document", 0, 0, 512, 40)
MyLabel.Font = DPDF_Font_Helvetica
MyDocument.DrawToWeb
Over 75 Page Elements
DynamicPDF Generator contains over 75 page elements so you can add rich content to the PDFs you create:
- Images
- Text Objects (TextArea and Label)
- HTML
- Barcodes (47 types)
- Form Fields
- Charts
Getting Started
DynamicPDF Generator Information
More information can be found here:
Available in other platforms
DynamicPDF Generator is available for the following platforms. Refer to the respective product pages for more details.
- .NET - DynamicPDF Generator for .NET
- Java - DynamicPDF Generator for Java