Hi,
I want to create a PDF/A file..
How is this possible and what do I have to do.
My Save Procedure look like this :
procedure TfrmPreview.SavePDFVPE(aFileName: string);
begin
if FileExists(aFileName) then
DeleteFile(aFileName);
Rep.PDFALevel := VPE_PDF_A_LEVEL_1B;
Rep.AddColorProfile(
'GTS_PDFA1',
'sRGB_IEC61966-2-1',
'Custom',
'http://www.color.org',
'sRGB_IEC61966-2-1',
'sRGB_IEC61966-2-1'
);
Rep.WriteDoc(aFileName);
MessageDlg('Liste wurde in Datei ''' + aFilename + ''' archiviert', mtInformation, [mbOK], 0);
end;
With this validator : http://www.pdf-tools.com/pdf/validate-pdfa-online.aspx I've got the following Error:
Validating file "Test.PDF" for conformance level pdfa-1a
XML line 6:61: Input is not proper UTF-
Bytes: 0xE4 0x74 0x69 0x67.", 1
The key MarkInfo is required but missing.
The value of the key N is 4 but must be 3.
A device-specific color space (DeviceRGB) without an appropriate output intent is used.
The document does not conform to the requested standard.
The document doesn't conform to the PDF reference (missing required entries, wrong value types, etc.).
The document contains device-specific color spaces.
The document's meta data is either missing or inconsistent or corrupt.
The document doesn't provide appropriate logical structure information.
Done.
I Hope you can help me.