ライブ環境でテストする
ウォーターマークなしで本番環境でテストしてください。
必要な場所でいつでも動作します。
正しいガイドを使用すれば、C# .NETライブラリでPDFを作成するのは簡単で効率的です。 IronPDFを使用することで、アプリケーションの要件に従って、シンプルな方法でPDF機能を作成および編集することができます。 これチュートリアル例プロジェクトでソフトウェアを効率的に使用し、ボタンをワンクリックするだけでPDFを作成する方法を示します。!
ライブラリにアクセスする主な方法は次の2つです:
Install-Package IronPdf
ソフトウェアが手に入ったので、私たちはPDFを生成する, 設定を調整する, 追加カスタムテキストと画像、およびPDFを操作する私たちのプロジェクト要件に対して。
以下のコードでは、C#フォームを使用して、C# .NETライブラリでPDFを作成する方法を簡単に示しています。 この例では、テキストボックスでテキストを書き、ボタンをクリックしてPDFを作成します。 ChromePdfRenderer`クラスは、PDFファイルを生成する最も簡単な方法を提供します。HTML文字列, ウェブURL、または別のレンダラーの下にある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 アプリを使用しました。 ワンクリックで、テキストボックスのテキストがカスタムPDFに変換されます。 これは、単一行のコード関数のみを必要とし、理解しやすいです。
9つの .NET API製品 オフィス文書用