Move kimageformats code to the root directory.

This commit is contained in:
Jenkins CI
2013-12-18 00:45:18 +00:00
parent 29f9dc7e4f
commit 47df9483fd
67 changed files with 0 additions and 0 deletions

38
src/imageformats/exr.h Normal file
View File

@ -0,0 +1,38 @@
/**
* 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_H
#define KIMG_EXR_H
#include <QImageIOPlugin>
class EXRHandler : public QImageIOHandler
{
public:
EXRHandler();
virtual bool canRead() const;
virtual bool read(QImage *outImage);
virtual bool write(const QImage &image);
static bool canRead(QIODevice *device);
};
class EXRPlugin : public QImageIOPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "exr.json")
public:
virtual Capabilities capabilities(QIODevice *device, const QByteArray &format) const;
virtual QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const;
};
#endif // KIMG_EXR_H