|
|
|
|
#ifndef Magnum_Trade_AnyImageConverter_h
|
|
|
|
|
#define Magnum_Trade_AnyImageConverter_h
|
|
|
|
|
/*
|
|
|
|
|
This file is part of Magnum.
|
|
|
|
|
|
|
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
|
|
|
|
|
2020, 2021, 2022, 2023 Vladimír Vondruš <mosra@centrum.cz>
|
|
|
|
|
|
|
|
|
|
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::AnyImageConverter
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Magnum/Trade/AbstractImageConverter.h"
|
|
|
|
|
#include "MagnumPlugins/AnyImageConverter/configure.h"
|
|
|
|
|
|
|
|
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT
|
|
|
|
|
#ifndef MAGNUM_ANYIMAGECONVERTER_BUILD_STATIC
|
plugins: new testing workflow.
The current testing workflow had quite a few major flaws and it was no
longer possible after the move of Any* plugins to core. Among the flaws
is:
* Every plugin was basically built twice, once as the real plugin and
once as a static testing library. Most of the build shared common
object files, but nevertheless it inflated build times and made the
buildsystem extremely complex.
* Because the actual plugin binary was never actually loaded during the
test, it couldn't spot problems like:
- undefined references
- errors in metadata files
- mismatched plugin interface/version, missing entry points
- broken static plugin import files
* Tests that made use of independent plugins (such as TgaImageConverter
test using TgaImporter to verify the output) had a hardcoded
dependency on such plugins, making a minimal setup very hard.
* Dynamic loading of plugins from the Any* proxies was always directed
to the install location on the filesystem with no possibility to
load these directly from the build tree. That caused random ABI
mismatch crashes, or, on the other hand, if no plugins were
installed, particular portions of the codebase weren't tested at all.
Now the workflow is the following:
* Every plugin is built exactly once, either as dynamic or as static.
* The test always loads it via the plugin manager. If it's dynamic,
it's loaded straight from the build directory; if it's static, it
gets linked to the test executable directly.
* Plugins used indirectly are always served from the build directory
(if enabled) to ensure reproducibility and independence on what's
installed on the filesystem. Missing presence of these plugins causes
particular tests to be simply skipped.
* Plugins that have extensive tests for internal functionality that's
not exposed through the plugin interface are still built in two
parts, but the internal tests are simply consuming the OBJECT files
directly instead of linking to a static library.
8 years ago
|
|
|
#ifdef AnyImageConverter_EXPORTS
|
|
|
|
|
#define MAGNUM_ANYIMAGECONVERTER_EXPORT CORRADE_VISIBILITY_EXPORT
|
|
|
|
|
#else
|
|
|
|
|
#define MAGNUM_ANYIMAGECONVERTER_EXPORT CORRADE_VISIBILITY_IMPORT
|
|
|
|
|
#endif
|
|
|
|
|
#else
|
|
|
|
|
#define MAGNUM_ANYIMAGECONVERTER_EXPORT CORRADE_VISIBILITY_STATIC
|
|
|
|
|
#endif
|
|
|
|
|
#define MAGNUM_ANYIMAGECONVERTER_LOCAL CORRADE_VISIBILITY_LOCAL
|
|
|
|
|
#else
|
|
|
|
|
#define MAGNUM_ANYIMAGECONVERTER_EXPORT
|
|
|
|
|
#define MAGNUM_ANYIMAGECONVERTER_LOCAL
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
namespace Magnum { namespace Trade {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Any image converter plugin
|
|
|
|
|
|
|
|
|
|
Detects file type based on file extension, loads corresponding plugin and then
|
|
|
|
|
tries to convert the file with it. Supported formats for uncompressed data:
|
|
|
|
|
|
|
|
|
|
- Basis Universal (`*.basis`), converted with @ref BasisImageConverter or any
|
|
|
|
|
other plugin that provides it. Only uncompressed 2D/3D and multi-level
|
|
|
|
|
2D/3D images.
|
|
|
|
|
- Windows Bitmap (`*.bmp`), converted with any plugin that provides
|
|
|
|
|
`BmpImageConverter`. Only uncompressed 2D images.
|
|
|
|
|
- OpenEXR (`*.exr`), converted with @ref OpenExrImageConverter or any other
|
|
|
|
|
plugin that provides it. Only uncompressed 2D/3D and multi-level 2D/3D
|
|
|
|
|
images.
|
|
|
|
|
- Radiance HDR (`*.hdr`), converted with any plugin that provides
|
|
|
|
|
`HdrImageConverter`. Only uncompressed 2D images.
|
|
|
|
|
- JPEG (`*.jpg`, `*.jpe`, `*.jpeg`), converted with @ref JpegImageConverter
|
|
|
|
|
or any other plugin that provides it. Only uncompressed 2D images.
|
|
|
|
|
- KTX2 (`*.ktx2`), converted with @ref KtxImageConverter or any other plugin
|
|
|
|
|
that provides it. Uncompressed, compressed, 1D/2D/3D and multi-level
|
|
|
|
|
1D/2D/3D images.
|
|
|
|
|
- Portable Network Graphics (`*.png`), converted with @ref PngImageConverter
|
|
|
|
|
or any other plugin that provides it. Only uncompressed 2D images.
|
|
|
|
|
- Truevision TGA (`*.tga`, `*.vda`, `*.icb`, `*.vst`), converted with
|
|
|
|
|
@ref TgaImageConverter or any other plugin that provides it. Only
|
|
|
|
|
uncompressed 2D images.
|
|
|
|
|
- OpenVDB (`*.vdb`), converted with any plugin that provides
|
|
|
|
|
`OpenVdbImageConverter`. Only uncompressed 3D images.
|
|
|
|
|
|
|
|
|
|
As the converter plugin is picked based on file extension, only saving to files
|
|
|
|
|
is supported.
|
|
|
|
|
|
|
|
|
|
@section Trade-AnyImageConverter-usage Usage
|
|
|
|
|
|
|
|
|
|
@m_class{m-note m-success}
|
|
|
|
|
|
|
|
|
|
@par
|
|
|
|
|
This class is a plugin that's meant to be dynamically loaded and used
|
|
|
|
|
via the base @ref AbstractImageConverter interface. See its documentation
|
|
|
|
|
for introduction and usage examples.
|
|
|
|
|
|
|
|
|
|
This plugin depends on the @ref Trade library and is built if
|
|
|
|
|
`MAGNUM_WITH_ANYIMAGECONVERTER` is enabled when building Magnum. To use as a
|
|
|
|
|
dynamic plugin, load @cpp "AnyImageConverter" @ce via
|
|
|
|
|
@ref Corrade::PluginManager::Manager.
|
|
|
|
|
|
|
|
|
|
Additionally, if you're using Magnum as a CMake subproject, do the following:
|
|
|
|
|
|
|
|
|
|
@code{.cmake}
|
|
|
|
|
set(MAGNUM_WITH_ANYIMAGECONVERTER ON CACHE BOOL "" FORCE)
|
|
|
|
|
add_subdirectory(magnum EXCLUDE_FROM_ALL)
|
|
|
|
|
|
|
|
|
|
# So the dynamically loaded plugin gets built implicitly
|
|
|
|
|
add_dependencies(your-app Magnum::AnyImageConverter)
|
|
|
|
|
@endcode
|
|
|
|
|
|
|
|
|
|
To use as a static plugin or as a dependency of another plugin with CMake, you
|
|
|
|
|
need to request the `AnyImageConverter` component of the `Magnum` package and
|
|
|
|
|
link to the `Magnum::AnyImageConverter` target:
|
|
|
|
|
|
|
|
|
|
@code{.cmake}
|
|
|
|
|
find_package(Magnum REQUIRED AnyImageConverter)
|
|
|
|
|
|
|
|
|
|
# ...
|
|
|
|
|
target_link_libraries(your-app PRIVATE Magnum::AnyImageConverter)
|
|
|
|
|
@endcode
|
|
|
|
|
|
|
|
|
|
See @ref building, @ref cmake, @ref plugins and @ref file-formats for more
|
|
|
|
|
information.
|
|
|
|
|
|
|
|
|
|
@section Trade-AnyImageConverter-proxy Interface proxying and option propagation
|
|
|
|
|
|
|
|
|
|
On a call to @ref convertToFile(), a target file format is detected from the
|
|
|
|
|
extension and a corresponding plugin is loaded. After that, flags set via
|
|
|
|
|
@ref setFlags() and options set through @ref configuration() are propagated to
|
|
|
|
|
the concrete implementation, with a warning emitted in case given option is not
|
|
|
|
|
present in the default configuration of the target plugin.
|
|
|
|
|
|
|
|
|
|
The @ref extension() and @ref mimeType() functions can't be implemented as
|
|
|
|
|
they depend on the plugin chosen inside @ref convertToFile(). Both return an
|
|
|
|
|
empty string.
|
|
|
|
|
|
|
|
|
|
The output of the @ref convertToFile() function called on the concrete
|
|
|
|
|
implementation is then proxied back.
|
|
|
|
|
|
|
|
|
|
Besides delegating the flags, the @ref AnyImageConverter itself recognizes
|
|
|
|
|
@ref ImageConverterFlag::Verbose, printing info about the concrete plugin being
|
|
|
|
|
used when the flag is enabled. @ref ImageConverterFlag::Quiet is recognized as
|
|
|
|
|
well and causes all warnings to be suppressed.
|
|
|
|
|
*/
|
|
|
|
|
class MAGNUM_ANYIMAGECONVERTER_EXPORT AnyImageConverter: public AbstractImageConverter {
|
|
|
|
|
public:
|
|
|
|
|
/** @brief Constructor with access to plugin manager */
|
|
|
|
|
explicit AnyImageConverter(PluginManager::Manager<AbstractImageConverter>& manager);
|
|
|
|
|
|
|
|
|
|
/** @brief Plugin manager constructor */
|
|
|
|
|
explicit AnyImageConverter(PluginManager::AbstractManager& manager, const Containers::StringView& plugin);
|
|
|
|
|
|
|
|
|
|
~AnyImageConverter();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL ImageConverterFeatures doFeatures() const override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(const ImageView1D& image, Containers::StringView filename) override;
|
Trade: refresh the AbstractImageConverter API.
First and foremost I need to expand the interface to support 3D
image conversion. But the interface was not great to begin with, so this
takes the opportunity of an API break and does several things:
* The `export*()` names were rather strange and I don't even remember
why I chose that name (maybe because at first I wanted to have an
"exporter" API as a counterpart to importers?)
* In addition, there was no way to convert a compressed image to a
compressed image (or to an uncompressed image) and adding the two
missing variants would be a lot of combinations. So instead the new
convert() returns an ImageData, which can be both, and thus also
allows the converters to produce compressed or uncompressed output
based on some runtime setting, without having to implement two
(four?) separate functions for that and requiring users to know
beforehand what type of an image will be created.
* The ImageConverterFeature enum was named in a really strange way as
well, with ConvertCompressedImage meaning "convert to a compressed
image" while "ConvertCompressedData" instead meant "convert a
compressed image to a data". Utter chaos. It also all implied 2D and
on the other hand had a redundant `Image` in the name, so I went and
remade the whole thing. As mentioned above, two of the enums now mean
the same thing, and are both replaced with Convert2D.
* Finally, similarly as changes elsewhere, I took this opportunity to
get rid of std::string in the convertToFile() APIs.
5 years ago
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(const ImageView2D& image, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(const ImageView3D& image, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(const CompressedImageView1D& image, Containers::StringView filename) override;
|
Trade: refresh the AbstractImageConverter API.
First and foremost I need to expand the interface to support 3D
image conversion. But the interface was not great to begin with, so this
takes the opportunity of an API break and does several things:
* The `export*()` names were rather strange and I don't even remember
why I chose that name (maybe because at first I wanted to have an
"exporter" API as a counterpart to importers?)
* In addition, there was no way to convert a compressed image to a
compressed image (or to an uncompressed image) and adding the two
missing variants would be a lot of combinations. So instead the new
convert() returns an ImageData, which can be both, and thus also
allows the converters to produce compressed or uncompressed output
based on some runtime setting, without having to implement two
(four?) separate functions for that and requiring users to know
beforehand what type of an image will be created.
* The ImageConverterFeature enum was named in a really strange way as
well, with ConvertCompressedImage meaning "convert to a compressed
image" while "ConvertCompressedData" instead meant "convert a
compressed image to a data". Utter chaos. It also all implied 2D and
on the other hand had a redundant `Image` in the name, so I went and
remade the whole thing. As mentioned above, two of the enums now mean
the same thing, and are both replaced with Convert2D.
* Finally, similarly as changes elsewhere, I took this opportunity to
get rid of std::string in the convertToFile() APIs.
5 years ago
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(const CompressedImageView2D& image, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(const CompressedImageView3D& image, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(Containers::ArrayView<const ImageView1D> imageLevels, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(Containers::ArrayView<const ImageView2D> imageLevels, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(Containers::ArrayView<const ImageView3D> imageLevels, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(Containers::ArrayView<const CompressedImageView1D> imageLevels, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(Containers::ArrayView<const CompressedImageView2D> imageLevels, Containers::StringView filename) override;
|
|
|
|
|
MAGNUM_ANYIMAGECONVERTER_LOCAL bool doConvertToFile(Containers::ArrayView<const CompressedImageView3D> imageLevels, Containers::StringView filename) override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
#endif
|