TwelveMonkeys
TwelveMonkeys copied to clipboard
TwelveMonkeys ImageIO: Additional plug-ins and extensions for Java's ImageIO
**Describe the bug** I found a few WebP images that seem valid that are throwing an ArrayIndexOutOfBoundsException when reading. **Version information** 1. The version of the TwelveMonkeys ImageIO library in...
**Describe the bug** I'm noticing a color distortion when reading "big" (≥ ~4k-5k pixels in width or height) and lossy (generated with `cwebp -q 75`) WEBP images and converting them...
**Describe the bug** Some WebP images are decoded with a yellow tint. **Version information** 1. The version of the TwelveMonkeys ImageIO library in use. 3.10.1 2. The *exact* output of...
Hi Harald, Thank you for this great library. It helped me a lot. Could you please add support of ARGB type for BMP file format? I found your question on...
**Describe the bug** A specific webp image turns green when converted to jpeg or png. **Version information** 1. The version of the TwelveMonkeys ImageIO library in use. 3.9.4. I also...
**Describe the bug** we have a sample webp file which causes an OOM and we want to understand if this is something we need to expect (reading webp files need...
There is no way to obtain animated webp frame data, such as duration of the frame. This is necessary to be able to read webp and show animation with correct...
**Is your feature request related to a use case or a problem you are working on? Please describe.** Some user-supplied BMP images use fake alpha. Meaning that even though they...
**Describe the bug** The pom.xml as documented says to include the jar file via maven as ``` com.twelvemonkeys.imageio imageio-webp 3.9.4 ``` ``` As a result the final jar names that...
This code fragment raises an exception with some specific files: ``` try { ImageInputStream input = ImageIO.createImageInputStream(file); ImageReader reader = ImageIO.getImageReaders(input).next(); System.out.println( "Using reader: " + reader ); reader.setInput(input); int...