PDF/UA
使用 IronPDF 的 SaveAsPdfUA
方法,您可以將 PDF 保存為符合 PDFUA 標準的文件。這確保您的 PDF 遵循 PDF/UA 的通用可訪問性標準,使其對殘疾人士更加包容和友好。
using IronPdf; // Open a PDF or use an exisiting PdfDocument object PdfDocument pdf = PdfDocument.FromFile("source_doc.pdf"); // Save the PDF/UA Document to File pdf.SaveAsPdfUA("pdfua-compliant.pdf");
Imports IronPdf ' Open a PDF or use an exisiting PdfDocument object Private pdf As PdfDocument = PdfDocument.FromFile("source_doc.pdf") ' Save the PDF/UA Document to File pdf.SaveAsPdfUA("pdfua-compliant.pdf")
Install-Package IronPdf
使用 IronPDF 的 SaveAsPdfUA
方法,您可以將 PDF 保存為符合 PDFUA 標準的文件。這確保您的 PDF 遵循 PDF/UA 的通用可訪問性標準,使其對殘疾人士更加包容和友好。