PDF/A formatına aktarma
Contents
[
Hide
]PDF/A formatına nasıl aktarılır
Sorun: PDF/A formatına nasıl aktarılır (CADNET-281).
İpuçları: Bunu yapmak için pdfOptions.CorePdfOptions oluşturun ve pdfOptions.CorePdfOptions.Compliance’ı Aspose.CAD.ImageOptions.PdfCompliance.PdfA1a olarak ayarlayın.
Örnek:
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); |