mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-06-03 17:08:08 -04:00
- Progressive load from file - Added support for 1-bit image - Images with palette are now Index (instead of RGB32) - Added options support (Size, Format) - Added some test cases - Improved performance by directly accessing the scanline - Support for more RAS extension (taken from GIMP) The code should works "as is" also on KF5.
39 lines
1022 B
C++
39 lines
1022 B
C++
/*
|
|
This file is part of the KDE project
|
|
SPDX-FileCopyrightText: 2003 Dominik Seichter <domseichter@web.de>
|
|
SPDX-FileCopyrightText: 2010 Troy Unrau <troy@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KIMG_RAS_P_H
|
|
#define KIMG_RAS_P_H
|
|
|
|
#include <QImageIOPlugin>
|
|
|
|
class RASHandler : public QImageIOHandler
|
|
{
|
|
public:
|
|
RASHandler();
|
|
|
|
bool canRead() const override;
|
|
bool read(QImage *image) override;
|
|
|
|
bool supportsOption(QImageIOHandler::ImageOption option) const override;
|
|
QVariant option(QImageIOHandler::ImageOption option) const override;
|
|
|
|
static bool canRead(QIODevice *device);
|
|
};
|
|
|
|
class RASPlugin : public QImageIOPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "ras.json")
|
|
|
|
public:
|
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
|
};
|
|
|
|
#endif // KIMG_RAS_P_H
|