IronPDF トラブルシューティング フォント IronPDFのフォント:ベストプラクティス カーティス・チャウ 更新日:6月 1, 2025 IronPDF をダウンロード NuGet ダウンロード DLL ダウンロード Windows 版 無料トライアル LLM向けのコピー LLM向けのコピー LLM 用の Markdown としてページをコピーする ChatGPTで開く このページについてChatGPTに質問する ジェミニで開く このページについてGeminiに問い合わせる ジェミニで開く このページについてGeminiに問い合わせる 困惑の中で開く このページについてPerplexityに問い合わせる 共有する Facebook で共有 Xでシェア(Twitter) LinkedIn で共有 URLをコピー 記事をメールで送る This article was translated from English: Does it need improvement? Translated View the article in English IronPDFはフォントを埋め込みますか? HTML内で使用されているすべてのフォント(サブセット)は、フォントの埋め込みプロパティがEditableに設定されている場合、自動的にPDFに埋め込まれます。 これにより、PDFは同じフォントで表示され、不整合を防ぎます。 IronPDFはフォントを削除できますか? はい、IronPDFはフォントを削除できます。 技術的には、フォントを解除(アンエンベッド)することによってこれを実現します。 PDFからフォントを管理および解除する方法の詳細な手順については、以下のハウツー記事をご覧ください: 'PDFのフォントを管理する方法' // Example of code to unembed fonts from a PDF using IronPDF using IronPdf; // Load the existing PDF document var pdf = PdfDocument.FromFile("existing-document.pdf"); // Remove fonts by unembedding them pdf.UnembedAllFonts(); // Save the updated PDF document pdf.SaveAs("document-without-embedded-fonts.pdf"); // Example of code to unembed fonts from a PDF using IronPDF using IronPdf; // Load the existing PDF document var pdf = PdfDocument.FromFile("existing-document.pdf"); // Remove fonts by unembedding them pdf.UnembedAllFonts(); // Save the updated PDF document pdf.SaveAs("document-without-embedded-fonts.pdf"); ' Example of code to unembed fonts from a PDF using IronPDF Imports IronPdf ' Load the existing PDF document Private pdf = PdfDocument.FromFile("existing-document.pdf") ' Remove fonts by unembedding them pdf.UnembedAllFonts() ' Save the updated PDF document pdf.SaveAs("document-without-embedded-fonts.pdf") $vbLabelText $csharpLabel PDFにフォント全体を埋め込むことはできますか? はい、IronPDFを使用すると、PDFドキュメントにフォントを埋め込むことができます。 フォントを埋め込むことで視覚的一貫性が確保され、閲覧者のシステムにフォントがインストールされていない場合でも、望ましいフォントで文書が表示されます。 フォントを埋め込むと、PDFのファイルサイズが増加することがあることに注意してください。 PDFにフォントを管理および埋め込む方法に関する詳細な手順については、ハウツー記事をご覧ください: 'PDFのフォントを管理する方法' // Example of code to embed fonts in a PDF using IronPDF using IronPdf; // Create a new PdfDocument or load an existing one var pdf = new IronPdf.HtmlToPdf().RenderHtmlAsPdf("<h1>Hello World</h1>"); // Ensure all fonts are embedded pdf.SaveAs("document-with-embedded-fonts.pdf", new PdfSaveOptions { EmbedFonts.Enabled = true }); // Example of code to embed fonts in a PDF using IronPDF using IronPdf; // Create a new PdfDocument or load an existing one var pdf = new IronPdf.HtmlToPdf().RenderHtmlAsPdf("<h1>Hello World</h1>"); // Ensure all fonts are embedded pdf.SaveAs("document-with-embedded-fonts.pdf", new PdfSaveOptions { EmbedFonts.Enabled = true }); ' Example of code to embed fonts in a PDF using IronPDF Imports IronPdf ' Create a new PdfDocument or load an existing one Private pdf = (New IronPdf.HtmlToPdf()).RenderHtmlAsPdf("<h1>Hello World</h1>") ' Ensure all fonts are embedded pdf.SaveAs("document-with-embedded-fonts.pdf", New PdfSaveOptions With {.EmbedFonts.Enabled = True}) $vbLabelText $csharpLabel カーティス・チャウ 今すぐエンジニアリングチームとチャット テクニカルライター Curtis Chauは、カールトン大学でコンピュータサイエンスの学士号を取得し、Node.js、TypeScript、JavaScript、およびReactに精通したフロントエンド開発を専門としています。直感的で美しいユーザーインターフェースを作成することに情熱を持ち、Curtisは現代のフレームワークを用いた開発や、構造の良い視覚的に魅力的なマニュアルの作成を楽しんでいます。開発以外にも、CurtisはIoT(Internet of Things)への強い関心を持ち、ハードウェアとソフトウェアの統合方法を模索しています。余暇には、ゲームをしたりDiscordボットを作成したりして、技術に対する愛情と創造性を組み合わせています。 準備はできましたか? Nuget ダウンロード 16,493,056 | Version: 2025.11 リリース NuGet 無料版 総ダウンロード数: 16,493,056 ライセンスを見る