mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
5.2 KiB
145 lines
5.2 KiB
#ifndef Magnum_Trade_AbstractImageConverter_h |
|
#define Magnum_Trade_AbstractImageConverter_h |
|
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014 |
|
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 Magnum::Trade::AbstractImageConverter |
|
*/ |
|
|
|
#include <Corrade/PluginManager/AbstractPlugin.h> |
|
|
|
#include "Magnum/Magnum.h" |
|
#include "Magnum/visibility.h" |
|
#include "Magnum/Text/Text.h" |
|
|
|
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. |
|
|
|
@section AbstractImageConverter-subclassing Subclassing |
|
|
|
Plugin implements function doFeatures() and one or more of doExportToImage(), |
|
doExportToData() or 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: |
|
|
|
- Functions @ref doExportToImage() or @ref doExportToData() are called only |
|
if @ref Feature::ConvertImage or @ref Feature::ConvertData is supported. |
|
*/ |
|
class MAGNUM_EXPORT AbstractImageConverter: public PluginManager::AbstractPlugin { |
|
CORRADE_PLUGIN_INTERFACE("cz.mosra.magnum.Trade.AbstractImageConverter/0.2.1") |
|
|
|
public: |
|
/** |
|
* @brief Features supported by this converter |
|
* |
|
* @see Features, features() |
|
*/ |
|
enum class Feature: UnsignedByte { |
|
/** Conversion to image with different format with exportToImage() */ |
|
ConvertImage = 1 << 0, |
|
|
|
/** Exporting to raw data with exportToData() */ |
|
ConvertData = 1 << 1 |
|
}; |
|
|
|
/** |
|
* @brief Features supported by this converter |
|
* |
|
* @see features() |
|
*/ |
|
typedef Containers::EnumSet<Feature, UnsignedByte> Features; |
|
|
|
/** @brief Default constructor */ |
|
explicit AbstractImageConverter(); |
|
|
|
/** @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, `nullptr` otherwise. |
|
* @see @ref features(), @ref exportToData(), @ref exportToFile() |
|
*/ |
|
Image2D* exportToImage(const ImageReference2D& image) const; |
|
|
|
/** |
|
* @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() |
|
*/ |
|
Containers::Array<unsigned char> exportToData(const ImageReference2D& image) const; |
|
|
|
/** |
|
* @brief Export image to file |
|
* |
|
* Returns `true` on success, `false` otherwise. |
|
* @see features(), exportToImage(), exportToData() |
|
*/ |
|
bool exportToFile(const ImageReference2D& image, const std::string& filename) const; |
|
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT |
|
private: |
|
#else |
|
protected: |
|
#endif |
|
/** @brief Implementation of features() */ |
|
virtual Features doFeatures() const = 0; |
|
|
|
/** @brief Implementation of exportToImage() */ |
|
virtual Image2D* doExportToImage(const ImageReference2D& image) const; |
|
|
|
/** @brief Implementation of exportToData() */ |
|
virtual Containers::Array<unsigned char> doExportToData(const ImageReference2D& image) const; |
|
|
|
/** |
|
* @brief Implementation of exportToFile() |
|
* |
|
* If @ref Feature::ConvertData is supported, default implementation |
|
* calls @ref doExportToData() and saves the result to given file. |
|
*/ |
|
virtual bool doExportToFile(const ImageReference2D& image, const std::string& filename) const; |
|
}; |
|
|
|
CORRADE_ENUMSET_OPERATORS(AbstractImageConverter::Features) |
|
|
|
}} |
|
|
|
#endif
|
|
|