function SignPadesWithPdfA(const FileName: string; const Opcije: TPadesSignOptions; PdfAOptions: TPdfASaveOptions): Boolean;
Izvršava kombiniranu konverziju PDF/A usklađenosti i PAdES digital signing, outputting a long-term archive compliant document in a single workflow
| FileName | Destination path for the signed PDF/A file |
| Options | PAdES signature configuration record |
| PdfAOptions | PDF/A target conformance level and options record |
Active bude True
var
SignOpts: TPadesSignOptions;
PdfAOpts: TPdfASaveOptions;
begin
if not Pdf1.Active then Exit;
SignOpts := TPadesSignOptions.Default;
SignOpts.CertificateThumbprint := 'a1b2c3d4';
PdfAOpts.Conformance := pacPdfA1b;
Pdf1.SignPadesWithPdfA('archived-signed.pdf', SignOpts, PdfAOpts);
end;