2X faster development
The ultimate WPF UI toolkit to boost your development speed.
PDF (Portable Document Format) is a file format used to display the document with same formatting, independent of application software, hardware, and operating system. Syncfusion Essential PDF is a .NET PDF library used to create, read, and edit PDF documents. Using this library, you create a PDF document in WPF. Steps to create PDF programmatically:
C# using Syncfusion.Pdf; using Syncfusion.Pdf.Graphics; using System; using System.ComponentModel; using System.Drawing; using System.Windows; VB.NET Imports Syncfusion.Pdf Imports Syncfusion.Pdf.Graphics Imports System Imports System.ComponentModel Imports System.Drawing Imports System.Windows
C# using (PdfDocument document = new PdfDocument()) { //Add a page to the document PdfPage page = document.Pages.Add(); //Create PDF graphics for a page PdfGraphics graphics = page.Graphics; //Set the standard font PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 20); //Draw the text graphics.DrawString("Hello World!!!", font, PdfBrushes.Black, new PointF(0, 0)); //Save the document document.Save("Output.pdf"); }
VB.NET 'Create a new PDF document Using document As PdfDocument = New PdfDocument() 'Add a page to the document Dim page As PdfPage = document.Pages.Add() 'Create PDF graphics for a page Dim graphics As PdfGraphics = page.Graphics 'Set the standard font Dim font As PdfFont = New PdfStandardFont(PdfFontFamily.Helvetica, 20) 'Draw the text graphics.DrawString("Hello World!!!", font, PdfBrushes.Black, New PointF(0, 0)) 'Save the document document.Save("Output.pdf") End Using
A complete working sample can be downloaded from Create-PDF-file.zip By executing the program, you will get the PDF document as follows. Take a moment to peruse the documentation, where you will find other options like drawing right-to-left text and multi-column text, consuming TrueType fonts, Standards fonts, and CJK fonts. Also, the features like PDF form filling, extract text or images from PDF, and protect PDF documents with code examples. Refer here to explore the rich set of Syncfusion Essential PDF features. An online sample link to generate Hello world PDF document. See Also: Create a PDF file in ASP.NET Core Create a PDF file in ASP.NET MVC Create a PDF file in Windows Forms Note: Starting with v16.2.0.x, if you reference Syncfusion assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion license key in your application to use the components without trail message.
|
2X faster development
The ultimate WPF UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.