-
-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BMP Writer only supports TYPE_4BYTE_ABGR #547
Comments
Ahem... What can I say. This is embarrassing... But thanks for reporting! The TwelveMonkeys Can you try just editing the Best regards, -- |
…registers with low pri. Better exception message for other image types.
Hi Florian, I just pushed a fix for the issue, your test case will now pass (but may not write anything) for If you skip the If you need a specific implementation/plugin, but don't want to clutter your read/write code with this, it's possible to set the ordering of ImageIO service providers ( PS: It should be fairly easy to support Best regards, -- |
The BMPImageWriter currently only supports TYPE_4BYTE_ABGR
With the previous version, 3.4.3 it worked in our environment because another ImageWriter was found.
With 3.5 the twelve-monkey implementation is found randomly which ends with the "Blows!" exception.
But we have to remove the other implementation anyway.
The issue can be found in the class DIBImageWriter
The required ColorModel is hardcoded. If the code finds another "Type" then a "Blows!" exception is thrown.
I assume this is relatively easy to fix? Can I help somehow?
Test class:
The text was updated successfully, but these errors were encountered: