|
|
|
|
#ifndef Magnum_Trade_AbstractImageConverter_h
|
|
|
|
|
#define Magnum_Trade_AbstractImageConverter_h
|
|
|
|
|
/*
|
|
|
|
|
This file is part of Magnum.
|
|
|
|
|
|
|
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016
|
|
|
|
|
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::AbstractImageConverter
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <Corrade/PluginManager/AbstractManagingPlugin.h>
|
|
|
|
|
|
|
|
|
|
#include "Magnum/Magnum.h"
|
|
|
|
|
#include "Magnum/visibility.h"
|
|
|
|
|
#include "MagnumExternal/Optional/optional.hpp"
|
|
|
|
|
|
|
|
|
|
namespace Magnum { namespace Trade {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Base for image converter plugins
|
|
|
|
|
|
|
|
|
|
Provides functionality for converting images between various internal formats
|
|
|
|
|
or compressing them. See @ref plugins for more information and `*ImageConverter`
|
|
|
|
|
classes in @ref Trade namespace for available image converter plugins.
|
|
|
|
|
|
|
|
|
|
## Subclassing
|
|
|
|
|
|
|
|
|
|
Plugin implements function @ref doFeatures() and one or more of
|
|
|
|
|
@ref doExportToImage(), @ref doExportToCompressedImage(), @ref doExportToData()
|
|
|
|
|
or @ref doExportToFile() functions based on what features are supported.
|
|
|
|
|
|
|
|
|
|
You don't need to do most of the redundant sanity checks, these things are
|
|
|
|
|
checked by the implementation:
|
|
|
|
|
|
|
|
|
|
- Function @ref doExportToImage() is called only if @ref Feature::ConvertImage
|
|
|
|
|
is supported.
|
|
|
|
|
- Function @ref doExportToCompressedImage() is called only if
|
|
|
|
|
@ref Feature::ConvertCompressedImage is supported.
|
|
|
|
|
- Function @ref doExportToData(const ImageView2D&) is called only if
|
|
|
|
|
@ref Feature::ConvertData is supported.
|
|
|
|
|
- Function @ref doExportToData(const CompressedImageView2D&) is called only
|
|
|
|
|
if @ref Feature::ConvertCompressedData is supported.
|
|
|
|
|
|
|
|
|
|
Plugin interface string is `"cz.mosra.magnum.Trade.AbstractImageConverter/0.2.1"`.
|
|
|
|
|
|
|
|
|
|
@attention @ref Containers::Array instances returned from the plugin should
|
|
|
|
|
*not* use anything else than the default deleter, otherwise this can cause
|
|
|
|
|
dangling function pointer call on array destruction if the plugin gets
|
|
|
|
|
unloaded before the array is destroyed.
|
|
|
|
|
*/
|
|
|
|
|
class MAGNUM_EXPORT AbstractImageConverter: public PluginManager::AbstractManagingPlugin<AbstractImageConverter> {
|
|
|
|
|
CORRADE_PLUGIN_INTERFACE("cz.mosra.magnum.Trade.AbstractImageConverter/0.2.1")
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* @brief Features supported by this converter
|
|
|
|
|
*
|
|
|
|
|
* @see @ref Features, @ref features()
|
|
|
|
|
*/
|
|
|
|
|
enum class Feature: UnsignedByte {
|
|
|
|
|
/** Conversion to image with different format with @ref exportToImage() */
|
|
|
|
|
ConvertImage = 1 << 0,
|
|
|
|
|
|
|
|
|
|
/** Conversion to compressed image with @ref exportToCompressedImage() */
|
|
|
|
|
ConvertCompressedImage = 1 << 1,
|
|
|
|
|
|
|
|
|
|
/** Exporting to file with @ref exportToFile(const ImageView2D&, const std::string&) */
|
|
|
|
|
ConvertFile = 1 << 2,
|
|
|
|
|
|
|
|
|
|
/** Exporting to file with @ref exportToFile(const CompressedImageView2D&, const std::string&) */
|
|
|
|
|
ConvertCompressedFile = 1 << 3,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Exporting to raw data with @ref exportToData(const ImageView2D&).
|
|
|
|
|
* Implies @ref Feature::ConvertFile.
|
|
|
|
|
*/
|
|
|
|
|
ConvertData = ConvertFile|(1 << 4),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Exporting compressed image to raw data with
|
|
|
|
|
* @ref exportToData(const CompressedImageView2D&). Implies
|
|
|
|
|
* @ref Feature::ConvertCompressedFile.
|
|
|
|
|
*/
|
|
|
|
|
ConvertCompressedData = ConvertCompressedFile|(1 << 4)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Features supported by this converter
|
|
|
|
|
*
|
|
|
|
|
* @see @ref features()
|
|
|
|
|
*/
|
|
|
|
|
typedef Containers::EnumSet<Feature> Features;
|
|
|
|
|
|
|
|
|
|
/** @brief Default constructor */
|
|
|
|
|
explicit AbstractImageConverter();
|
|
|
|
|
|
|
|
|
|
/** @brief Constructor with access to plugin manager */
|
|
|
|
|
explicit AbstractImageConverter(PluginManager::Manager<AbstractImageConverter>& manager);
|
|
|
|
|
|
|
|
|
|
/** @brief Plugin manager constructor */
|
|
|
|
|
explicit AbstractImageConverter(PluginManager::AbstractManager& manager, std::string plugin);
|
|
|
|
|
|
|
|
|
|
/** @brief Features supported by this converter */
|
|
|
|
|
Features features() const { return doFeatures(); }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Convert image to different format
|
|
|
|
|
*
|
|
|
|
|
* Available only if @ref Feature::ConvertImage is supported. Returns
|
|
|
|
|
* converted image on success, `std::nullopt` otherwise.
|
|
|
|
|
* @see @ref features(), @ref exportToData(), @ref exportToFile()
|
|
|
|
|
*/
|
|
|
|
|
std::optional<Image2D> exportToImage(const ImageView2D& image);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Convert image to compressed format
|
|
|
|
|
*
|
|
|
|
|
* Available only if @ref Feature::ConvertCompressedImage is supported.
|
|
|
|
|
* Returns converted image on success, `std::nullopt` otherwise.
|
|
|
|
|
* @see @ref features(), @ref exportToData(), @ref exportToFile()
|
|
|
|
|
*/
|
|
|
|
|
std::optional<CompressedImage2D> exportToCompressedImage(const ImageView2D& image);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Export image to raw data
|
|
|
|
|
*
|
|
|
|
|
* Available only if @ref Feature::ConvertData is supported. Returns
|
|
|
|
|
* data on success, zero-sized array otherwise.
|
|
|
|
|
* @see @ref features(), @ref exportToImage(),
|
|
|
|
|
* @ref exportToFile(const ImageView2D&, const std::string&)
|
|
|
|
|
*/
|
|
|
|
|
Containers::Array<char> exportToData(const ImageView2D& image);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Export compressed image to raw data
|
|
|
|
|
*
|
|
|
|
|
* Available only if @ref Feature::ConvertCompressedData is supported.
|
|
|
|
|
* Returns data on success, zero-sized array otherwise.
|
|
|
|
|
* @see @ref features(), @ref exportToCompressedImage(),
|
|
|
|
|
* @ref exportToFile(const CompressedImageView2D&, const std::string&)
|
|
|
|
|
*/
|
|
|
|
|
Containers::Array<char> exportToData(const CompressedImageView2D& image);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Export image to file
|
|
|
|
|
*
|
|
|
|
|
* Available only if @ref Feature::ConvertFile or
|
|
|
|
|
* @ref Feature::ConvertData is supported. Returns `true` on success,
|
|
|
|
|
* `false` otherwise.
|
|
|
|
|
* @see @ref features(), @ref exportToImage(),
|
|
|
|
|
* @ref exportToData(const ImageView2D&)
|
|
|
|
|
*/
|
|
|
|
|
bool exportToFile(const ImageView2D& image, const std::string& filename);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Export compressed image to file
|
|
|
|
|
*
|
|
|
|
|
* Available only if @ref Feature::ConvertCompressedFile or
|
|
|
|
|
* @ref Feature::ConvertCompressedData is supported. Returns `true` on
|
|
|
|
|
* success, `false` otherwise.
|
|
|
|
|
* @see @ref features(), @ref exportToCompressedImage(),
|
|
|
|
|
* @ref exportToData(const CompressedImageView2D&)
|
|
|
|
|
*/
|
|
|
|
|
bool exportToFile(const CompressedImageView2D& image, const std::string& filename);
|
|
|
|
|
|
|
|
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT
|
|
|
|
|
private:
|
|
|
|
|
#else
|
|
|
|
|
protected:
|
|
|
|
|
#endif
|
|
|
|
|
/** @brief Implementation of @ref features() */
|
|
|
|
|
virtual Features doFeatures() const = 0;
|
|
|
|
|
|
|
|
|
|
/** @brief Implementation of @ref exportToImage() */
|
|
|
|
|
virtual std::optional<Image2D> doExportToImage(const ImageView2D& image);
|
|
|
|
|
|
|
|
|
|
/** @brief Implementation of @ref exportToCompressedImage() */
|
|
|
|
|
virtual std::optional<CompressedImage2D> doExportToCompressedImage(const ImageView2D& image);
|
|
|
|
|
|
|
|
|
|
/** @brief Implementation of @ref exportToData(const ImageView2D&) */
|
|
|
|
|
virtual Containers::Array<char> doExportToData(const ImageView2D& image);
|
|
|
|
|
|
|
|
|
|
/** @brief Implementation of @ref exportToData(const CompressedImageView2D&) */
|
|
|
|
|
virtual Containers::Array<char> doExportToData(const CompressedImageView2D& image);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Implementation of @ref exportToFile(const ImageView2D&, const std::string&)
|
|
|
|
|
*
|
|
|
|
|
* If @ref Feature::ConvertData is supported, default implementation
|
|
|
|
|
* calls @ref doExportToData(const ImageView2D&) and saves the result
|
|
|
|
|
* to given file.
|
|
|
|
|
*/
|
|
|
|
|
virtual bool doExportToFile(const ImageView2D& image, const std::string& filename);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Implementation of @ref exportToFile(const CompressedImageView2D&, const std::string&)
|
|
|
|
|
*
|
|
|
|
|
* If @ref Feature::ConvertCompressedData is supported, default
|
|
|
|
|
* implementation calls @ref doExportToData(const CompressedImageView2D&)
|
|
|
|
|
* and saves the result to given file.
|
|
|
|
|
*/
|
|
|
|
|
virtual bool doExportToFile(const CompressedImageView2D& image, const std::string& filename);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CORRADE_ENUMSET_OPERATORS(AbstractImageConverter::Features)
|
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
#endif
|