在實際環境中測試
在生產環境中測試無浮水印。
在任何需要的地方都能運作。
在 C# .NET 庫中生成 PDF 變得簡單高效,只需正確的指導。 使用 IronPDF,我們能夠根據我們的應用程序需求以簡單的方式創建和編輯 PDF 功能。 This教程範例顯示如何在您的專案中有效使用該軟體,只需點擊一個按鈕即可建立 PDF。!
訪問該庫的兩種主要方式是:
Install-Package IronPdf
現在我們有了軟體,我們可以生成PDF文件, 調整設置,添加自訂文字和圖像,和操作PDF文件符合我們的專案需求。
在以下程式碼中,我們使用了一個 C# 表單,簡單演示如何使用 C# .NET 程式庫創建 PDF。 在此範例中,我們有一個文字框可以寫入自己的文字,然後只需點擊按鈕即可製作PDF。 ChromePdfRenderer
類別提供了從不同來源生成 PDF 文件的最簡單方式,包括 anHTML 字串, Web網址,或在另一個渲染器下的doc文件.
/**
PDF NET Generator
anchor-use-the-pdf-net-library
**/
using IronPdf;
using System.Windows.Forms;
namespace readpdf
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, System.EventArgs e)
{
//Used ChromePdfRenderer Convert Class
var HtmlLine = new ChromePdfRenderer();
//Getting Text from TextBox
string text = textBox1.Text;
//Here we are rendering or converting htmlaspdf.
using var pdf = HtmlLine.RenderHtmlAsPdf("<h1>"+text+"</h1>");
pdf.SaveAs("custom.pdf");
//Confirmation
MessageBox.Show("Done !");
}
}
}
/**
PDF NET Generator
anchor-use-the-pdf-net-library
**/
using IronPdf;
using System.Windows.Forms;
namespace readpdf
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, System.EventArgs e)
{
//Used ChromePdfRenderer Convert Class
var HtmlLine = new ChromePdfRenderer();
//Getting Text from TextBox
string text = textBox1.Text;
//Here we are rendering or converting htmlaspdf.
using var pdf = HtmlLine.RenderHtmlAsPdf("<h1>"+text+"</h1>");
pdf.SaveAs("custom.pdf");
//Confirmation
MessageBox.Show("Done !");
}
}
}
'''
'''PDF NET Generator
'''anchor-use-the-pdf-net-library
'''*
Imports IronPdf
Imports System.Windows.Forms
Namespace readpdf
Partial Public Class Form1
Inherits Form
Public Sub New()
InitializeComponent()
End Sub
Private Sub button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
'Used ChromePdfRenderer Convert Class
Dim HtmlLine = New ChromePdfRenderer()
'Getting Text from 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
'Here we are rendering or converting htmlaspdf.
Dim pdf = HtmlLine.RenderHtmlAsPdf("<h1>" & text_Conflict &"</h1>")
pdf.SaveAs("custom.pdf")
'Confirmation
MessageBox.Show("Done !")
End Sub
End Class
End Namespace
我們使用了一個 C# Windows Forms 應用程式來展示自訂文字的完美輸出。 只需單擊一下,TextBox 中的文本便會被轉換為自訂 PDF。 這僅需要一行代碼功能且易於理解。