TGA: add indexed write support

Indexed images are saved as uncompressed TGA with color map.

Closes #30
This commit is contained in:
Mirco Miranda
2025-07-03 07:36:33 +02:00
parent 4f2f2425d3
commit f6c718a789
3 changed files with 66 additions and 1 deletions

View File

@ -27,6 +27,10 @@ public:
static bool canRead(QIODevice *device);
private:
bool writeIndexed(const QImage &image);
bool writeRGBA(const QImage &image);
const QScopedPointer<TGAHandlerPrivate> d;
};