Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PDF/A1A & PDF/A1B inavlid due to title => xmp.metadata missing language attribute at <dc:title><rdf:Alt><rdf:li>Title... #971

Open
speckyspooky opened this issue Oct 31, 2023 · 2 comments
Labels

Comments

@speckyspooky
Copy link

I created pdf documents with the conformance of PDF/A1A and PDF/A1B with our BIRT engine.
The results was check on my side with veraPDF and the result is that the PDF/A-versions are unvalid due to an issue with the dc:title.

The problem ist that the language-attribute is missing on rdf:title
and therefore the PDF/A will be marked like invalid.

For the PDF/A-creation I used the default options which was given on openPDF.

The current PDF/A structure is:

      <dc:title>
        <rdf:Alt>
          <rdf:li>Titel-Subtitel</rdf:li>
        </rdf:Alt>
      </dc:title>

The structur shall be:

      <dc:title>
        <rdf:Alt>
          <rdf:li xml:lang="x-default">Titel-Subtitel</rdf:li>
        </rdf:Alt>
      </dc:title>
@speckyspooky speckyspooky changed the title PDF/A1A & PDF/A1B inavlid due to title => xmp.metadata missing language tag at <dc:title><rdf:Alt><rdf:li>Title... PDF/A1A & PDF/A1B inavlid due to title => xmp.metadata missing language attribute at <dc:title><rdf:Alt><rdf:li>Title... Oct 31, 2023
@andreasrosdal
Copy link
Contributor

Hello @speckyspooky
Would you be interested in contributing support for PDF/A support in OpenPDF? See #980 and https://en.wikipedia.org/wiki/PDF/A.
As suggested this can be implemented with new PdfADocument and PdfAWriter classes for PDF/A support.

@asturio
Copy link
Member

asturio commented Mar 16, 2024

Contributions to OpenPDF are welcome.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants