觀看David Jones, Agorus, 使用Iron Suite創造新效能
觀看Milan Jovanović使用IronPDF
觀看我們的團隊產品演示
幾秒鐘內即可整理 PDF 文件中的頁面和書籤。
您可以根據需要新增、複製或刪除頁面來管理 PDF 文件的結構。此功能便於您輕鬆地組織和重新排列內容。
using IronPdf; // Import cover page PdfDocument coverPage = PdfDocument.FromFile("coverPage.pdf"); // Import content document PdfDocument contentPage = PdfDocument.FromFile("contentPage.pdf"); // Insert PDF contentPage.InsertPdf(coverPage, 0); contentPage.SaveAs("report_final.pdf"); // Copy a single page into a new PDF object PdfDocument myReport = PdfDocument.FromFile("report_final.pdf"); PdfDocument copyOfPageOne = myReport.CopyPage(0);
將多個 PDF 文件合併成一個文檔,或將大型 PDF 文件拆分成較小的部分,使您的文檔更易於管理和分發。
using IronPdf; // Import two pdfs PdfDocument pdf_A = PdfDocument.FromFile("merge_docA.pdf"); PdfDocument pdf_B = PdfDocument.FromFile("merge_docB.pdf"); // Merge the two pdfs A and B var merged = PdfDocument.Merge(pdf_A, pdf_B); merged.SaveAs("Merged.pdf");
在 PDF 中建立書籤和大綱,以增強導航,並為讀者提供直覺的方式來尋找關鍵部分。
using IronPdf; // Create a new PDF or edit an existing document. PdfDocument pdf = PdfDocument.FromFile("existing.pdf"); // Add a bookmark var mainBookmarks = pdf.Bookmarks.AddBookMarkAtEnd("NameOfBookmark", 0); //Add a sub-bookmark var subBookmarks = mainBookmarks.Children.AddBookMarkAtEnd("Conclusion", 1); pdf.SaveAs("singleLayerBookmarks.pdf");
在 PDF 文件中新增附件,例如其他文件、圖像或相關內容,以提供補充資訊或背景資訊。
using IronPdf; using System.IO; // Import attachment file byte[] fileData = File.ReadAllBytes(@"path/to/file"); // Open existing PDF PdfDocument pdf = PdfDocument.FromFile("sample.pdf"); // Add attachment to the PDF pdf.Attachments.AddAttachment("Example", fileData); pdf.SaveAs("addAttachment.pdf");
想快速取得證據? PM > Install-Package IronPdf 運行範例看著你的HTML程式碼變成PDF檔。
Install-Package IronPdf
無需信用卡
試驗表格已提交成功地。您的試用金鑰應該在郵件中。如果不是,請聯繫support@ironsoftware.com
您的試用金鑰應該在郵件中。如果不是,請聯繫support@ironsoftware.com
在生產環境中測試而不帶水印。適用於您所需的任何地方。
獲得 30 天完整功能產品。幾分鐘內即可運行。
在您的產品試用期間全面訪問我們的支持技術團隊
產品與其關鍵功能的即時展示
獲取項目特定的功能建議
我們會回答您所有的問題,以確保您掌握所有需要的資訊。(絕無承諾)。
請檢查您的電子郵件以取得試用授權金鑰。
如果您沒有收到電子郵件,請啟動 即時聊天 或寄送電子郵件至 support@ironsoftware.com
預約免費諮詢
請填寫以下表格或發送電子郵件至 sales@ironsoftware.com
您的個人資料將始終保密。
預約30分鐘的個人演示。
無需合同,無需提供信用卡信息,無需任何承諾。
版權所有 © Iron Software 2013-2026