PDF/A 형식으로 내보내기
Contents
[
Hide
]PDF/A 형식으로 내보내는 방법
문제: PDF/A 형식으로 내보내는 방법 (CADNET-281).
팁: 이를 위해 pdfOptions.CorePdfOptions를 생성하고 pdfOptions.CorePdfOptions.Compliance를 Aspose.CAD.ImageOptions.PdfCompliance.PdfA1a로 설정합니다.
예제:
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); |