IronPDF トラブルシューティング フォント Fonts in IronPDF: Best Practices Curtis Chau 更新日:6月 1, 2025 Download IronPDF NuGet Download テキストの検索と置換 テキストと画像のスタンプ Start Free Trial Copy for LLMs Copy for LLMs Copy page as Markdown for LLMs Open in ChatGPT Ask ChatGPT about this page Open in Gemini Ask Gemini about this page Open in Grok Ask Grok about this page Open in Perplexity Ask Perplexity about this page Share Share on Facebook Share on X (Twitter) Share on LinkedIn Copy URL Email article 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 今すぐエンジニアリングチームとチャット テクニカルライター Curtis Chauは、カールトン大学でコンピュータサイエンスの学士号を取得し、Node.js、TypeScript、JavaScript、およびReactに精通したフロントエンド開発を専門としています。直感的で美しいユーザーインターフェースを作成することに情熱を持ち、Curtisは現代のフレームワークを用いた開発や、構造の良い視覚的に魅力的なマニュアルの作成を楽しんでいます。開発以外にも、CurtisはIoT(Internet of Things)への強い関心を持ち、ハードウェアとソフトウェアの統合方法を模索しています。余暇には、ゲームをしたりDiscordボットを作成したりして、技術に対する愛情と創造性を組み合わせています。 準備はいいですか? Nuget ダウンロード 16,154,058 | バージョン: 2025.11 ただ今リリースされました 試用ライセンスキーがメールで送信されました。 総ダウンロード数: 16,154,058 ライセンスを見る