Test in production without watermarks.
Works wherever you need it to.
Get 30 days of fully functional product.
Have it up and running in minutes.
Full access to our support engineering team during your product trial
Making a PDF in a C# .NET Library is easy and efficient with the right guides. Using IronPDF, we're able to create and edit PDF features in a simple manner according to our application requirements. This tutorial example shows how to use the software efficiently in your project and create a PDF with just one button click!
The two main ways of accessing the library are either:
# Use the NuGet package manager to install IronPDF
nuget install IronPdf
# Use the NuGet package manager to install IronPDF
nuget install IronPdf
Now that we have the software, we can generate PDFs, adjust settings, add custom text and images, and manipulate the PDFs to our project requirements.
In the below code, we have used a C# Form demonstrating simply how to create a PDF with the C# .NET library. In this example, we have a TextBox to write our own text and then just click on a button to make a PDF. The class ChromePdfRenderer
offers the simplest possible way to generate PDF files from different sources including an HTML string, web URLs, or doc files under another renderer.
// C# Program to create PDF from TextBox input using IronPDF
using IronPdf;
using System.Windows.Forms;
namespace readpdf
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
// Event handler for the button click
private void button1_Click(object sender, System.EventArgs e)
{
// Create a ChromePdfRenderer object to convert HTML to PDF
var HtmlLine = new ChromePdfRenderer();
// Retrieve the text from the TextBox
string text = textBox1.Text;
// Render the HTML as a PDF, wrapping the text in an <h1> tag
using var pdf = HtmlLine.RenderHtmlAsPdf("<h1>" + text + "</h1>");
// Save the PDF to a file called "custom.pdf"
pdf.SaveAs("custom.pdf");
// Show a confirmation message to the user
MessageBox.Show("Done!");
}
}
}
// C# Program to create PDF from TextBox input using IronPDF
using IronPdf;
using System.Windows.Forms;
namespace readpdf
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
// Event handler for the button click
private void button1_Click(object sender, System.EventArgs e)
{
// Create a ChromePdfRenderer object to convert HTML to PDF
var HtmlLine = new ChromePdfRenderer();
// Retrieve the text from the TextBox
string text = textBox1.Text;
// Render the HTML as a PDF, wrapping the text in an <h1> tag
using var pdf = HtmlLine.RenderHtmlAsPdf("<h1>" + text + "</h1>");
// Save the PDF to a file called "custom.pdf"
pdf.SaveAs("custom.pdf");
// Show a confirmation message to the user
MessageBox.Show("Done!");
}
}
}
' C# Program to create PDF from TextBox input using IronPDF
Imports IronPdf
Imports System.Windows.Forms
Namespace readpdf
Partial Public Class Form1
Inherits Form
Public Sub New()
InitializeComponent()
End Sub
' Event handler for the button click
Private Sub button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
' Create a ChromePdfRenderer object to convert HTML to PDF
Dim HtmlLine = New ChromePdfRenderer()
' Retrieve the text from the TextBox
'INSTANT VB NOTE: The variable text was renamed since Visual Basic does not handle local variables named the same as class members well:
Dim text_Conflict As String = textBox1.Text
' Render the HTML as a PDF, wrapping the text in an <h1> tag
Dim pdf = HtmlLine.RenderHtmlAsPdf("<h1>" & text_Conflict & "</h1>")
' Save the PDF to a file called "custom.pdf"
pdf.SaveAs("custom.pdf")
' Show a confirmation message to the user
MessageBox.Show("Done!")
End Sub
End Class
End Namespace
We have used a C# Windows Forms App to show you the perfect output with custom text. In just a single click, the text in the TextBox gets converted to a custom PDF. This requires only a single-line code function and is easy to understand.
Read through and share the API Reference for all the functionality you need to work with PDFs in your .NET project.
API Reference for IronPDFIronPDF is a PDF library for .NET that allows developers to easily create and edit PDFs within C# projects.
You can install IronPDF by downloading the IronPDF package DLL file or by using NuGet to install the package via Visual Studio.
Using IronPDF, you can create a PDF by writing a simple function in C#. This involves using the ChromePdfRenderer object to convert HTML to PDF.
Yes, you can convert a C# form to a PDF using IronPDF by implementing a function to capture the form data and render it as a PDF.
The simplest method to generate PDFs with IronPDF is using the ChromePdfRenderer object to render an HTML string or URL directly into a PDF.
You can add custom text and images to a PDF by manipulating the HTML content before rendering it to PDF using IronPDF.
Yes, IronPDF provides functionality to manipulate and edit existing PDFs to meet your project requirements.
You can access the API reference for IronPDF on their official website at ironpdf.com, under the API Reference section.
IronPDF allows for PDF creation, editing, conversion from HTML, adding custom text and images, and much more, making it a versatile tool for .NET developers.
Yes, IronPDF supports converting a web URL directly into a PDF using the ChromePdfRenderer object.