IronPDF 支援在您的 PDF 文件中新增和刪除附件。
如需更多資訊,您可以瀏覽 IronPDF 文件,其中提供詳細的指南和資源。 此外,請在 Iron Software 網站上了解更多功能和能力。
學習使用 IronPDF 在 PDF 中新增/刪除附件。using IronPdf;
using System.IO;
// Instantiate the Renderer and create PdfDocument from HTML
var renderer = new ChromePdfRenderer();
var myPdf = renderer.RenderHtmlFileAsPdf("my-content.html");
// Load your own attachment
byte[] attachment = File.ReadAllBytes("path/to/attachment");
// Here we can add an attachment with a name and a byte[]
PdfAttachment exampleAttachment = myPdf.Attachments.AddAttachment("exampleAttachment", attachment);
// And here is an example of removing an attachment
myPdf.Attachments.RemoveAttachment(exampleAttachment);
myPdf.SaveAs("my-content.pdf");
Imports IronPdf
Imports System.IO
' Instantiate the Renderer and create PdfDocument from HTML
Dim renderer As New ChromePdfRenderer()
Dim myPdf = renderer.RenderHtmlFileAsPdf("my-content.html")
' Load your own attachment
Dim attachment As Byte() = File.ReadAllBytes("path/to/attachment")
' Here we can add an attachment with a name and a byte()
Dim exampleAttachment As PdfAttachment = myPdf.Attachments.AddAttachment("exampleAttachment", attachment)
' And here is an example of removing an attachment
myPdf.Attachments.RemoveAttachment(exampleAttachment)
myPdf.SaveAs("my-content.pdf")IronPDF 支援在您的 PDF 文件中新增和刪除附件。
如需更多資訊,您可以瀏覽 IronPDF 文件,其中提供詳細的指南和資源。 此外,請在 Iron Software 網站上了解更多功能和能力。
學習使用 IronPDF 在 PDF 中新增/刪除附件。Nuget Downloads 20,389,208|版本:2026.7剛剛發布