#ifndef Magnum_Trade_AnyImageImporter_h #define Magnum_Trade_AnyImageImporter_h /* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Vladimír Vondruš Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** @file * @brief Class @ref Magnum::Trade::AnyImageImporter */ #include "Magnum/Trade/AbstractImporter.h" #include "MagnumPlugins/AnyImageImporter/configure.h" #ifndef DOXYGEN_GENERATING_OUTPUT #ifndef MAGNUM_ANYIMAGEIMPORTER_BUILD_STATIC #ifdef AnyImageImporter_EXPORTS #define MAGNUM_ANYIMAGEIMPORTER_EXPORT CORRADE_VISIBILITY_EXPORT #else #define MAGNUM_ANYIMAGEIMPORTER_EXPORT CORRADE_VISIBILITY_IMPORT #endif #else #define MAGNUM_ANYIMAGEIMPORTER_EXPORT CORRADE_VISIBILITY_STATIC #endif #define MAGNUM_ANYIMAGEIMPORTER_LOCAL CORRADE_VISIBILITY_LOCAL #else #define MAGNUM_ANYIMAGEIMPORTER_EXPORT #define MAGNUM_ANYIMAGEIMPORTER_LOCAL #endif namespace Magnum { namespace Trade { /** @brief Any image importer plugin Detects file type based on file extension, loads corresponding plugin and then tries to open the file with it. Supported formats: - Basis Universal (`*.basis`), loaded @ref BasisImporter or any other plugin that provides it - Windows Bitmap (`*.bmp`), loaded with any plugin that provides `BmpImporter` - DirectDraw Surface (`*.dds` or data with corresponding signature), loaded with @ref DdsImporter or any other plugin that provides it - Graphics Interchange Format (`*.gif`), loaded with any plugin that provides `GifImporter` - OpenEXR (`*.exr` or data with corresponding signature), loaded with any plugin that provides `OpenExrImporter` - Radiance HDR (`*.hdr` or data with corresponding signature), loaded with any plugin that provides `HdrImporter` - Windows icon/cursor (`*.ico`, `*.cur`), loaded with @ref IcoImporter or any other plugin that provides it - JPEG (`*.jpg`, `*.jpe`, `*.jpeg` or data with corresponding signature), loaded with @ref JpegImporter or any other plugin that provides it - JPEG 2000 (`*.jp2`), loaded with any plugin that provides `Jpeg2000Importer` - Multiple-image Network Graphics (`*.mng`), loaded with any plugin that provides `MngImporter` - Portable Bitmap (`*.pbm`), loaded with any plugin that provides `PbmImporter` - ZSoft PCX (`*.pcx`), loaded with any plugin that provides `PcxImporter` - Portable Graymap (`*.pgm`), loaded with any plugin that provides `PgmImporter` - Softimage PIC (`*.pic`), loaded with any plugin that provides `PicImporter` - Portable Anymap (`*.pnm`), loaded with any plugin that provides `PnmImporter` - Portable Network Graphics (`*.png` or data with corresponding signature), loaded with @ref PngImporter or any other plugin that provides it - Portable Pixmap (`*.ppm`), loaded with any plugin that provides `PpmImporter` - Adobe Photoshop (`*.psd`), loaded with any plugin that provides `PsdImporter` - Silicon Graphics (`*.sgi`, `*.bw`, `*.rgb`, `*.rgba`), loaded with any plugin that provides `SgiImporter` - Tagged Image File Format (`*.tif`, `*.tiff` or data with corresponding signature), loaded with any plugin that provides `TiffImporter` - Truevision TGA (`*.tga`, `*.vda`, `*.icb`, `*.vst` or data with corresponding signature), loaded with @ref TgaImporter or any other plugin that provides it Detecting file type through @ref openData() is supported only for a subset of formats that are marked as such in the list above. @section Trade-AnyImageImporter-usage Usage This plugin depends on the @ref Trade library and is built if `WITH_ANYIMAGEIMPORTER` is enabled when building Magnum. To use as a dynamic plugin, load @cpp "AnyImageImporter" @ce via @ref Corrade::PluginManager::Manager. Additionally, if you're using Magnum as a CMake subproject, do the following: @code{.cmake} set(WITH_ANYIMAGEIMPORTER ON CACHE BOOL "" FORCE) add_subdirectory(magnum EXCLUDE_FROM_ALL) # So the dynamically loaded plugin gets built implicitly add_dependencies(your-app Magnum::AnyImageImporter) @endcode To use as a static plugin or as a dependency of another plugin with CMake, you need to request the `AnyImageImporter` component of the `Magnum` package and link to the `Magnum::AnyImageImporter` target: @code{.cmake} find_package(Magnum REQUIRED AnyImageImporter) # ... target_link_libraries(your-app PRIVATE Magnum::AnyImageImporter) @endcode See @ref building, @ref cmake, @ref plugins and @ref file-formats for more information. */ class MAGNUM_ANYIMAGEIMPORTER_EXPORT AnyImageImporter: public AbstractImporter { public: /** @brief Constructor with access to plugin manager */ explicit AnyImageImporter(PluginManager::Manager& manager); /** @brief Plugin manager constructor */ explicit AnyImageImporter(PluginManager::AbstractManager& manager, const std::string& plugin); /** @brief Copying is not allowed */ AnyImageImporter(const AnyImageImporter&) = delete; /** * @brief Move constructor * * See @ref Corrade::PluginManager::AbstractPlugin::AbstractPlugin(AbstractPlugin&&) * for caveats. */ AnyImageImporter(AnyImageImporter&&) noexcept; /** @brief Copying is not allowed */ AnyImageImporter& operator=(const AnyImageImporter&) = delete; /** @brief Only move construction is allowed */ AnyImageImporter& operator=(AnyImageImporter&&) = delete; ~AnyImageImporter(); private: MAGNUM_ANYIMAGEIMPORTER_LOCAL ImporterFeatures doFeatures() const override; MAGNUM_ANYIMAGEIMPORTER_LOCAL bool doIsOpened() const override; MAGNUM_ANYIMAGEIMPORTER_LOCAL void doClose() override; MAGNUM_ANYIMAGEIMPORTER_LOCAL void doOpenFile(const std::string& filename) override; MAGNUM_ANYIMAGEIMPORTER_LOCAL void doOpenData(Containers::ArrayView data) override; MAGNUM_ANYIMAGEIMPORTER_LOCAL UnsignedInt doImage2DCount() const override; MAGNUM_ANYIMAGEIMPORTER_LOCAL UnsignedInt doImage2DLevelCount(UnsignedInt id) override; MAGNUM_ANYIMAGEIMPORTER_LOCAL Containers::Optional doImage2D(UnsignedInt id, UnsignedInt level) override; Containers::Pointer _in; }; }} #endif