mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-06-03 17:08:08 -04:00
According to relicensecheck Brad is OK with changing LGPLv2 to LGPLv2+, which is required to be compatible with the LGPL-2.1-or-later licensed source files.
37 lines
881 B
C++
37 lines
881 B
C++
/*
|
|
QImageIO Routines to read (and perhaps in the future, write) images
|
|
in the high definition EXR format.
|
|
|
|
SPDX-FileCopyrightText: 2003 Brad Hards <bradh@frogmouth.net>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#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
|