jxlatte
jxlatte copied to clipboard
Java JPEG XL decoder
Based on your code, I created the following thing Jetbrains plugin :[JPEGXL Support](https://plugins.jetbrains.com/plugin/22925-jpegxl-support) Artifact : [https://jitpack.io/#meiMingle/jxlatte/main-mavenize-SNAPSHOT](https://jitpack.io/#meiMingle/jxlatte/main-mavenize-SNAPSHOT)
I have an 8 band remote sensing image. I can get the values from the main channel. ```java JXLDecoder decoder = new JXLDecoder(stream); JXLImage image = decoder.decode(); BufferedImage bufferedImage =...
The Reason for this would be that then any Java app loading an image resource could use JPEG XLs without changing its code - the only thing needed would be...
Hi again, I've been testing the decoder on a lot of images, and I have found an image that won't decode. It's one of the images from the libjxl conformance...
As mentioned in #20, I'm working on an ImageIO plugin for JPEG XL using your decoder. For this to work reasonably, I need a way to read the header (`ImageHeader`)...
Hi, is there an official release somewhere? 😀 I would prefer Maven Central, but GitHub Packages or other is fine too. Let me know if I can help, setting up...