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
- Create a
Document
object. - Create a
Page
object and add it to theDocument
instance. - Create a
Circle
object by specifying the parameters. - Add the
Circle
instance to thePage
instance. - 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
- Create a
Document
object. - Create a
Page
object and add it to the Document instance. - Create a
Path
object by specifying the parameters. - Add four sub-paths to the Path instance (Curve, Line, CurveTo and CurveFrom).
- Add the Path instance to the Page instance.
- 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.
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.
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.
- Java - DynamicPDF Generator for Java
- COM/ActiveX - DynamicPDF Generator for COM/ActiveX