Qt Image Formats
The core Qt Gui library by default supports reading and writing image files of the most common file formats: PNG
, JPEG
, BMP
, GIF
and a few more, ref. Reading and Writing Image Files. The Qt Image Formats add-on module provides optional support for other image file formats.
The file format support is provided transparently, through plugins for Qt's image I/O system. As such, this module provides no API of its own. Instead, the functionality is accessed in the same way as other image I/O in Qt: through QImage::load() and QImage::save(). Or, for more detailed control, through QImageReader and QImageWriter.
The Image I/O Plugins
The actual coding and decoding of the file format is done by a codec library. The codec can be Qt or third party code. In case of a third party codec, the build process will look for it among the system libraries. If not found, it may fall back on using a bundled copy (in src/3rdparty
).
Format | Description | Support | 3rd party codec |
---|---|---|---|
DDS | Direct Draw Surface | Read/write | No |
ICNS | Apple Icon Image | Read/write | No |
JP2 | Joint Photographic Experts Group 2000 | Read/write | Yes (bundled) |
MNG | Multiple-image Network Graphics | Read | Yes (bundled) |
TGA | Truevision Graphics Adapter | Read | No |
TIFF | Tagged Image File Format | Read/write | Yes (bundled) |
WBMP | Wireless Bitmap | Read/write | No |
WEBP | WebP | Read/write | Yes (bundled) |
Deployment
When built, the Qt Image Formats plugins are located as dynamic libraries in the runtime plugin directory (typically plugins/imageformats
), together with the default image format plugins. They may be deployed to the target system in the same way as other plugins, see the Deploying Plugins documentation.
Security considerations
Since these file formats are more rarely used, the codecs may be less thoroughly debugged against potential security holes. As always, care should be taken when creating applications that may be used to decode uncontrolled data files.
© 2015 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.