TwelveMonkeys icon indicating copy to clipboard operation
TwelveMonkeys copied to clipboard

TwelveMonkeys ImageIO: Additional plug-ins and extensions for Java's ImageIO

Results 73 TwelveMonkeys issues
Sort by recently updated
recently updated
newest added

**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...

Confirmed bug
Reported bug

**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...

Confirmed bug
Reported bug

**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...

Confirmed bug
Reported bug

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...

New feature

**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...

Confirmed bug
Reported bug

**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...

Reported bug

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...

New feature

**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...

New feature

**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...

New feature

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...

Confirmed bug