mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-06-03 17:08:08 -04:00
38 lines
891 B
C++
38 lines
891 B
C++
/*
|
|
* QImageIO Routines to read (and perhaps in the future, write) images
|
|
* in the high definition EXR format.
|
|
*
|
|
* Copyright (c) 2003, Brad Hards <bradh@frogmouth.net>
|
|
*
|
|
* This library is distributed under the conditions of the GNU LGPL.
|
|
*
|
|
*/
|
|
|
|
#ifndef KIMG_EXR_P_H
|
|
#define KIMG_EXR_P_H
|
|
|
|
#include <QImageIOPlugin>
|
|
|
|
class EXRHandler : public QImageIOHandler
|
|
{
|
|
public:
|
|
EXRHandler();
|
|
|
|
bool canRead() const override;
|
|
bool read(QImage *outImage) override;
|
|
|
|
static bool canRead(QIODevice *device);
|
|
};
|
|
|
|
class EXRPlugin : public QImageIOPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "exr.json")
|
|
|
|
public:
|
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
|
};
|
|
|
|
#endif // KIMG_EXR_P_H
|