mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2026-02-15 06:03:00 -05:00
Adds TGA 2.0 compliance: - Support for Extension Area, Developer Area and Footer (metadata support) - Support for 15-bit and 16-bit per pixel images (both RGB and Indexed) - Full support for rotation on reading (we cannot use Qt transformations because only a subset is part of the TGA specification) - When writing you can choose the supported version (subType) - Improved writing speed (approximately 10 times) and removed whole image conversions (significant memory savings) It pass the [TrueVision TGA 2.0 conformance suite](https://github.com/zigimg/test-suite/tree/master/fixtures/tga). Test changes: - Read test: added ability to skip a specific test on sequential devices (via JSON behavior file) - Write test: added the ability to set the subType when writing (via JSON properties file) Closes #37
53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
/*
|
|
This file is part of the KDE project
|
|
SPDX-FileCopyrightText: 2003 Dominik Seichter <domseichter@web.de>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KIMG_TGA_P_H
|
|
#define KIMG_TGA_P_H
|
|
|
|
#include <QImageIOPlugin>
|
|
#include <QScopedPointer>
|
|
|
|
class TGAHandlerPrivate;
|
|
class TGAHandler : public QImageIOHandler
|
|
{
|
|
public:
|
|
TGAHandler();
|
|
|
|
bool canRead() const override;
|
|
bool read(QImage *image) override;
|
|
bool write(const QImage &image) override;
|
|
|
|
bool supportsOption(QImageIOHandler::ImageOption option) const override;
|
|
void setOption(ImageOption option, const QVariant &value) override;
|
|
QVariant option(QImageIOHandler::ImageOption option) const override;
|
|
|
|
static bool canRead(QIODevice *device);
|
|
|
|
private:
|
|
bool writeIndexed(const QImage &image);
|
|
bool writeGrayscale(const QImage &image);
|
|
bool writeRGB555(const QImage &image);
|
|
bool writeRGBA(const QImage &image);
|
|
|
|
bool writeMetadata(const QImage &image);
|
|
bool readMetadata(QImage &image);
|
|
|
|
const QScopedPointer<TGAHandlerPrivate> d;
|
|
};
|
|
|
|
class TGAPlugin : public QImageIOPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "tga.json")
|
|
|
|
public:
|
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
|
};
|
|
|
|
#endif // KIMG_TGA_P_H
|