Ekspor ke format PDF/A
Contents
[
Hide
]Cara mengekspor ke format PDF/A
Masalah: Cara mengekspor ke format PDF/A (CADNET-281).
Tips: Untuk melakukan ini, buat pdfOptions.CorePdfOptions dan set pdfOptions.CorePdfOptions.Compliance ke Aspose.CAD.ImageOptions.PdfCompliance.PdfA1a.
Contoh:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PdfOptions pdfOptions = new PdfOptions(); | |
pdfOptions.CorePdfOptions = new Aspose.CAD.ImageOptions.PdfDocumentOptions(); | |
pdfOptions.CorePdfOptions.Compliance = Aspose.CAD.ImageOptions.PdfCompliance.PdfA1a; | |
cadImage.Save(outDir + fileName + "_A1a.pdf", pdfOptions); | |
pdfOptions.CorePdfOptions.Compliance = Aspose.CAD.ImageOptions.PdfCompliance.PdfA1b; | |
cadImage.Save(outDir + fileName + "_A1b.pdf", pdfOptions); |