Examples

Add Basic Shapes to PDF

Adding basic shapes such as circles, rectangles, lines and paths to a PDF document is straightforward using DynamicPDF Core Suite.

How to Add Circle to PDF in C#

The following steps and sample code illustrate adding a Circle to PDF document using DynamicPDF Core Suite.

Steps for Adding a Circle to a PDF Document

  1. Create a Document object.
  2. Create a Page object and add it to the Document instance.
  3. Create a Circle object by specifying the parameters.
  4. Add the Circle instance to the Page instance.
  5. Save the PDF document.

Sample Code - C#

Document document = new Document();
            
Page page = new Page();
document.Pages.Add( page );            
 
Circle circle1 = new Circle(100, 100, 50, 100, Grayscale.Black, RgbColor.OrangeRed, 2, LineStyle.Solid);
Circle circle2 = new Circle(150, 75, 50, 50, Grayscale.Black, RgbColor.Lime, 2, LineStyle.Solid);
 
page.Elements.Add( circle1 );	
page.Elements.Add( circle2 );	
 
document.Draw(@"Output.pdf");

How to Add Path to PDF in C#

The following steps and sample code illustrates adding a Path to PDF document using DynamicPDF Core Suite.

Steps for Adding Path to a PDF Document

  1. Create a Document object.
  2. Create a Page object and add it to the Document instance.
  3. Create a Path object by specifying the parameters.
  4. Add four sub-paths to the Path instance (Curve, Line, CurveTo and CurveFrom).
  5. Add the Path instance to the Page instance.
  6. Save the PDF document.

Sample Code - C#

Document document = new Document();
            
Page page = new Page();
document.Pages.Add( page );
            
Path path = new Path( 50, 150, RgbColor.Blue, RgbColor.Yellow, 3, LineStyle.Solid, true );
            
path.SubPaths.Add( new CurveSubPath( 50, 400, 300, 150, -200, 400 ) );
path.SubPaths.Add( new LineSubPath( 300, 400 ) );
path.SubPaths.Add( new CurveToSubPath( 300, 150, 50, 300 ) );
path.SubPaths.Add( new CurveFromSubPath( 150, 100, 200, -100 ) );
            
page.Elements.Add( path );	
            
document.Draw(@"Output.pdf");

GitHub Project

Clone or view the example project at GitHub. This example code is contained in the Examples/AddShapeExample.cs file.

Clone or View Example Project on GitHub

Getting Started

NuGet Package

DynamicPDF Core Suite is available on NuGet and is part of the ceTe.DynamicPDF.CoreSuite.NET package. The easiest way to install the package is through the Visual Studio Package Manager. You can also download the package directly from NuGet.

NuGet Package ID: ceTe.DynamicPDF.CoreSuite.NET

DynamicPDF Core Suite Information

DynamicPDF Core Suite 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

More information can be found on the DynamicPDF Core Suite webpage.

Available on Other Platforms

DynamicPDF Core Suite is available for the Java and COM/ActiveX platforms. Refer to the respective product pages for more details.

Why Choose DynamicPDF?

  • Transparent Pricing
  • Lots of Features
  • Easy to Use
  • Great Support
  • Efficient Performance
  • Product Maturity (Over 22 Years)
  • Free Evaluation
  • .NET Core Support (Most Products)
  • Flexible Licensing

We’re Not The Only Ones That Think We’re Great!