jamesnetherton commented on issue #3945: URL: https://github.com/apache/camel-quarkus/issues/3945#issuecomment-1198033895
Worth noting that `camel-quarkus-pdf` is not a general purpose extension for you to use Apache PDFBox APIs. Native support is only guaranteed to work in the context of the functionality that the Apache Camel PDF component uses. At the moment, that extends only to PDF text manipulation. There is currently no native support for all of the functionality provided by PDFBox, like image manipulation etc. You can try to work around the issue with a configuration property: ``` quarkus.native.additional-build-args=--initialize-at-run-time=org.apache.pdfbox.rendering.SoftMask,--initialize-at-run-time=org.apache.pdfbox.pdmodel.graphics.color.PDCIEDictionaryBasedColorSpace ``` -- 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]
