ライブ環境でテストする
ウォーターマークなしで本番環境でテストしてください。
必要な場所でいつでも動作します。
HTMLファイルまたはコンテンツをPDFページ形式に変換する機能は、多くのアプリケーションにおいて貴重な機能です。 C#では、HTMLからPDF形式のファイルを生成するアプリケーションをゼロから構築するのは非常に面倒な作業です。 この記事では、wkhtmltopdfライブラリを使用してC++でHTMLをPDFに変換する方法を探ります。
IronPDF allows developers to integrate HTML to PDF conversion into their .NET projects using the WKHtmltoPdf rendering engine. This is particularly useful for creating PDF documents from web pages, HTML content, and complex web-based forms. The WKHtmltoPdf engine supports the latest HTML5, CSS3, and JavaScript standards, ensuring compatibility with modern web technologies.
For more information, visit IronPDF.
One of the standout features of IronPDF using WKHtmltoPdf is the ability to execute JavaScript within the HTML before conversion, making it possible to create dynamic content and interactive elements in the resulting PDFs. This ensures that even the most interactive and modern web applications can be accurately converted to PDF format.
By leveraging these capabilities, developers can make sure that their PDFs are not only visually compelling but also functionally robust, matching the original web content closely.
For a detailed guide on how to use WKHtmltoPdf with IronPDF, consult our documentation.TOPdfライブラリ
wkhtmltopdfは、HTMLプレーンテキストページを高品質なPDFドキュメントにシームレスに変換するオープンソースのコマンドラインツールです。 C++プログラムにおける機能を活用することで、HTML文字列コンテンツを簡単にPDF形式に変換できます。 C++でwkhtmltopdfライブラリを使用してHTMLページをPDFに変換するステップバイステップのプロセスを掘り下げましょう。
C++でHTMLからPDFファイルへのコンバーターを作成するには、次の点を確認する必要があります:
システムにインストールされたGCCまたはClangなどのC++コンパイラ。
wkhtmltopdfライブラリがインストールされました。 公式サイトから最新バージョンをダウンロードできますwkhtmltopdfウェブサイトお使いのオペレーティングシステムの指示に従ってインストールしてください。
Code::BlocksでC++ PDF変換プロジェクトを作成するには、次の手順に従ってください:
Code::Blocks IDEを開いてください。
「ファイル」メニューに移動して「新規」を選び、「プロジェクト」を選択して新しいプロジェクトウィザードを開きます。
新しいプロジェクトウィザードで「コンソールアプリケーション」を選択します。
C++ 言語を選択します。
プロジェクトのタイトルと保存したい場所を設定します。 「次へ」をクリックして進みます。
Code::Blocks が必要なヘッダファイルを見つけられるようにするためには、検索ディレクトリを設定する必要があります。
メニューバーの "Project "メニューをクリックし、"Build options "を選択してください。 「デバッグ」を選択してください。
Build options "ダイアログボックスで、"Search directories "タブを選択します。
「コンパイラ」タブの下にある「追加」ボタンをクリックしてください。
wkhtmltox ヘッダーファイルが配置されているディレクトリに移動します。(例えば、 C:\Program Files\wkhtmltopdf\include)、そしてそれを選択します。
最後に、「OK」をクリックしてダイアログボックスを閉じます。
wkhtmltoxライブラリにリンクするには、以下の手順に従ってください:
もう一度メニューバーの "Project "メニューをクリックし、"Build options "を選択してください。 「デバッグ」を選択してください。
ビルド・オプション」ダイアログ・ボックスで、「リンカ設定」タブを選択します。
「リンクライブラリ」タブの下にある「追加」ボタンをクリックします。
wkhtmltox ライブラリファイルがあるディレクトリに移動します。(例えば、C:\Program Files\wkhtmltopdf\lib)適切なライブラリファイルを選択してください。
「開く」をクリックして、ライブラリをプロジェクトに追加します。
最後に、「OK」をクリックしてダイアログボックスを閉じます。
始めるには、C++プログラムでwkhtmltopdfライブラリの機能を利用するために必要なヘッダーファイルをインクルードしてください。 以下の例に示すように、main.cpp ソースコードファイルの先頭に以下のヘッダーファイルをインクルードしてください:
#include <iostream>
#include <fstream>
#include <string>
#include <wkhtmltox/pdf.h>
#include <iostream>
#include <fstream>
#include <string>
#include <wkhtmltox/pdf.h>
#include <iostream>
#include <fstream>
#include <string>
#include <wkhtmltox/pdf.h>
HTML を PDF に変換するには、wkhtmltopdf コンバーターを初期化する必要があります。 コードは次のようになります:
wkhtmltopdf_init(false);
wkhtmltopdf_global_settings* gs = wkhtmltopdf_create_global_settings();
wkhtmltopdf_object_settings* os = wkhtmltopdf_create_object_settings();
wkhtmltopdf_converter* converter = wkhtmltopdf_create_converter(gs);
wkhtmltopdf_init(false);
wkhtmltopdf_global_settings* gs = wkhtmltopdf_create_global_settings();
wkhtmltopdf_object_settings* os = wkhtmltopdf_create_object_settings();
wkhtmltopdf_converter* converter = wkhtmltopdf_create_converter(gs);
wkhtmltopdf_init(False)
wkhtmltopdf_global_settings* gs = wkhtmltopdf_create_global_settings()
wkhtmltopdf_object_settings* os = wkhtmltopdf_create_object_settings()
wkhtmltopdf_converter* converter = wkhtmltopdf_create_converter(gs)
さて、PDFに変換する必要があるHTMLコンテンツを提供しましょう。 HTMLファイルを読み込むか、文字列を直接提供することができます。
string htmlString = "<html><body><h1>Hello, World!</h1></body></html>"; wkhtmltopdf_add_object(converter, os, htmlString.c_str());
string htmlString = "<html><body><h1>Hello, World!</h1></body></html>"; wkhtmltopdf_add_object(converter, os, htmlString.c_str());
Dim htmlString As String = "<html><body><h1>Hello, World!</h1></body></html>"
wkhtmltopdf_add_object(converter, os, htmlString.c_str())
コンバーターとHTMLコンテンツの準備が整ったら、HTMLをPDFファイルに変換することができます。次のコードスニペットを使用してください:
wkhtmltopdf_convert(converter);
wkhtmltopdf_convert(converter);
wkhtmltopdf_convert(converter)
wkhtmltopdf_get_output 関数を使用すると、既存のPDFデータをメモリバッファストリームとして取得することができます。 それはまたPDFの長さも返します。 次の例は、このタスクを実行します:
const unsigned char* pdfData;
const int pdfLength = wkhtmltopdf_get_output(converter, &pdfData);
const unsigned char* pdfData;
const int pdfLength = wkhtmltopdf_get_output(converter, &pdfData);
const unsigned Char* pdfData
Const pdfLength As Integer = wkhtmltopdf_get_output(converter, &pdfData)
変換が完了したら、生成されたPDFファイルをディスクに保存する必要があります。 PDFを保存するファイルパスを指定してください。 次に、出力ファイルストリームを使用して、ファイルをバイナリモードで開き、pdfDataをそれに書き込みます。 最後に、ファイルを閉じます。以下にコード例を示します:
const char* outputPath = "file.pdf";
ofstream outputFile(outputPath, ios::binary);
outputFile.write(reinterpret_cast<const char*>(pdfData), pdfLength);
outputFile.close();
const char* outputPath = "file.pdf";
ofstream outputFile(outputPath, ios::binary);
outputFile.write(reinterpret_cast<const char*>(pdfData), pdfLength);
outputFile.close();
const Char* outputPath = "file.pdf"
ofstream outputFile(outputPath, ios:=:=binary)
outputFile.write(reinterpret_cast<const Char*>(pdfData), pdfLength)
outputFile.close()
HTMLをPDFに変換した後、wkhtmltopdfによって割り当てられたリソースをクリーンアップすることが重要です。 以下のコードスニペットを使用してください:
wkhtmltopdf_destroy_converter(converter);
wkhtmltopdf_destroy_object_settings(os);
wkhtmltopdf_destroy_global_settings(gs);
wkhtmltopdf_deinit();
cout << "PDF saved successfully." << endl;
wkhtmltopdf_destroy_converter(converter);
wkhtmltopdf_destroy_object_settings(os);
wkhtmltopdf_destroy_global_settings(gs);
wkhtmltopdf_deinit();
cout << "PDF saved successfully." << endl;
wkhtmltopdf_destroy_converter(converter)
wkhtmltopdf_destroy_object_settings(os)
wkhtmltopdf_destroy_global_settings(gs)
wkhtmltopdf_deinit()
cout << "PDF saved successfully." << endl
では、プロジェクトをビルドし、F9を使用してコードを実行してください。出力はプロジェクトフォルダーに生成および保存されます。 結果として得られたPDFは以下の通りです:
IronPDF HTML-PDF変換ライブラリは、堅牢な.NETおよび.NET Core C#ライブラリで、開発者はHTMLコンテンツからPDF文書を簡単に生成できます。 HTMLウェブページをPDFに変換するプロセスを簡素化する、わかりやすく直感的なAPIを提供し、さまざまなアプリケーションやユースケースで人気のある選択肢となっています。
IronPDF の主な利点の一つは、その汎用性です。 それはシンプルなHTMLドキュメントの変換だけでなく、CSSスタイリング、JavaScriptインタラクション、さらには動的コンテンツを含む複雑なウェブページの変換もサポートしています。 さらに、変換メソッドへの迅速なアクセスにより、さまざまなPDF変換器を開発することができます。
Here is the Japanese translation of the provided text:
以下は、変換するためのコード例ですIronPDFを使用したHTML文字列からPDFへの変換C#での翻訳です:
using IronPdf;
// Instantiate Renderer
var renderer = new ChromePdfRenderer();
// Create PDF content from an HTML string using C#
var pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>");
// Export to a file or Stream
pdf.SaveAs("output.pdf");
using IronPdf;
// Instantiate Renderer
var renderer = new ChromePdfRenderer();
// Create PDF content from an HTML string using C#
var pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>");
// Export to a file or Stream
pdf.SaveAs("output.pdf");
Imports IronPdf
' Instantiate Renderer
Private renderer = New ChromePdfRenderer()
' Create PDF content from an HTML string using C#
Private pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>")
' Export to a file or Stream
pdf.SaveAs("output.pdf")
PDF出力:
HTMLファイル、WebページのURL、および画像をPDFに変換する方法の詳細については、こちらをご覧くださいHTMLからPDFへのコード例.
IronPDFを使用すると、.NET Framework言語でHTMLコンテンツからPDFファイルを生成することが簡単になります。 直感的なAPIと豊富な機能セットのおかげで、変換を必要とする開発者にとって貴重なツールとなります。HTMLからPDFC#プロジェクトで。 レポート、請求書、または正確なHTMLからPDFへの変換を必要とする他のドキュメントの生成であれ、IronPDFは信頼性が高く効率的なソリューションです。
IronPDFは開発目的であれば無料ですが、商用利用にはライセンスが必要です。 また、以下を提供しますIronPDFの全機能の無料トライアル商業用途で完全な機能をテストするため。 ソフトウェアは次の場所からダウンロードできますIronPDFをダウンロード.
9つの .NET API製品 オフィス文書用