JiriOndrusek opened a new issue, #9091:
URL: https://github.com/apache/camel-quarkus/issues/9091
`camel-quarkus-pdf` registers PDFBox's native resources from a hand-listed
constant, `PdfProcessor.RUNTIME_RESOURCES`. It has drifted: it names
`icc/ISOcoated_v2_300_bas.icc`, which PDFBox 3.0.8 replaced with
`icc/CGATS001Compat-v2-micro.icc` — so it registers a resource not in the jar
and misses the real ICC profile (latent native failure for PDFs that load the
default output-intent profile).
Fix: replace the list with
`NativeImageResourceDirectoryBuildItem("org/apache/pdfbox/resources")`, so
native image embeds whatever the jar ships and the set self-heals on upgrades.
See #9078 for the same change in `langchain4j-ingest` as an example.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]