You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When jai-imageio-core is not included, the result for ImageIO.getReaderMIMETypes() is
"image/png","image/vnd.wap.wbmp","image/x-png","image/jpeg","image/bmp","image/gif".
After employing the package, the result is
"","image/png","image/vnd.wap.wbmp","image/jpeg","image/x-portable-graymap","image/bmp","image/pcx","image/x-windows-bmp","image/gif","image/x-windows-pcx","image/x-pc-paintbrush","image/x-bmp","image/x-pcx","image/x-png","image/x-portable-bitmap","image/x-portable-pixmap","image/tiff","image/x-portable-anymap".
The empty string in the head causes error, is it possible to remove such a string?
The text was updated successfully, but these errors were encountered:
i don't know which of the many "raw" formats this means, so I've changed those to extension raw and mimetype image/x-raw in RawImageReaderSpi and RawImageWriterSpi
The Part#getContent does a lot of things (potentially) which may
depend on things like the runtime classpath. For example, for an image
part, the image is read into a java.awt.Image and therefore involves
the ImageIO plugin system. This may cause issues (like this:
jai-imageio/jai-imageio-core#27) and also
has a memory and performance implications, obviously.
When jai-imageio-core is not included, the result for ImageIO.getReaderMIMETypes() is
"image/png","image/vnd.wap.wbmp","image/x-png","image/jpeg","image/bmp","image/gif".
After employing the package, the result is
"","image/png","image/vnd.wap.wbmp","image/jpeg","image/x-portable-graymap","image/bmp","image/pcx","image/x-windows-bmp","image/gif","image/x-windows-pcx","image/x-pc-paintbrush","image/x-bmp","image/x-pcx","image/x-png","image/x-portable-bitmap","image/x-portable-pixmap","image/tiff","image/x-portable-anymap".
The empty string in the head causes error, is it possible to remove such a string?
The text was updated successfully, but these errors were encountered: