PDF/A

<div class="alert alert-info iron-variant-1" role="alert">
    Your business is spending too much on yearly subscriptions for PDF security and compliance. Consider <a href="https://ironsoftware.com/enterprise/securedoc/">IronSecureDoc PDF Security Solutions</a>, which provides solutions for managing SaaS services like digital signing, redaction, encryption, and protection, all for a one-time payment. <a href="https://ironsoftware.com/enterprise/securedoc/docs/">Explore IronSecureDoc Documentation</a>
</div>
<div class="alert alert-info iron-variant-1" role="alert">
    Your business is spending too much on yearly subscriptions for PDF security and compliance. Consider <a href="https://ironsoftware.com/enterprise/securedoc/">IronSecureDoc PDF Security Solutions</a>, which provides solutions for managing SaaS services like digital signing, redaction, encryption, and protection, all for a one-time payment. <a href="https://ironsoftware.com/enterprise/securedoc/docs/">Explore IronSecureDoc Documentation</a>
</div>
HTML
// With IronPDF's SaveAsPdfA method, you can save PDFs to be archiving compliant.
// Currently supported version of PDFA is PDFA-3B.

using IronPdf;

class Program
{
    static void Main()
    {
        // Load an existing PDF document, which we want to save as PDF/A
        var Renderer = new IronPdf.ChromePdfRenderer();
        var PDF = Renderer.RenderUrlAsPdf("https://example.com");

        // Use SaveAsPdfA method to save the document as a PDF/A compliant file.
        // The format is set to PDFA-3B, which is suitable for long-term archiving.
        PDF.SaveAsPdfA("archived-document.pdf", PdfAStandard.PdfA3B);

        // Output confirmation message
        Console.WriteLine("The document was successfully saved as PDF/A-3B.");
    }
}
// With IronPDF's SaveAsPdfA method, you can save PDFs to be archiving compliant.
// Currently supported version of PDFA is PDFA-3B.

using IronPdf;

class Program
{
    static void Main()
    {
        // Load an existing PDF document, which we want to save as PDF/A
        var Renderer = new IronPdf.ChromePdfRenderer();
        var PDF = Renderer.RenderUrlAsPdf("https://example.com");

        // Use SaveAsPdfA method to save the document as a PDF/A compliant file.
        // The format is set to PDFA-3B, which is suitable for long-term archiving.
        PDF.SaveAsPdfA("archived-document.pdf", PdfAStandard.PdfA3B);

        // Output confirmation message
        Console.WriteLine("The document was successfully saved as PDF/A-3B.");
    }
}
' With IronPDF's SaveAsPdfA method, you can save PDFs to be archiving compliant.
' Currently supported version of PDFA is PDFA-3B.

Imports IronPdf

Friend Class Program
	Shared Sub Main()
		' Load an existing PDF document, which we want to save as PDF/A
		Dim Renderer = New IronPdf.ChromePdfRenderer()
		Dim PDF = Renderer.RenderUrlAsPdf("https://example.com")

		' Use SaveAsPdfA method to save the document as a PDF/A compliant file.
		' The format is set to PDFA-3B, which is suitable for long-term archiving.
		PDF.SaveAsPdfA("archived-document.pdf", PdfAStandard.PdfA3B)

		' Output confirmation message
		Console.WriteLine("The document was successfully saved as PDF/A-3B.")
	End Sub
End Class
$vbLabelText   $csharpLabel