mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-07-18 03:54:18 -04:00
kra is the native format for Krita and ora the interchange format for krita, gimp and mypaint (it's also mypaint's native format). Both formats are simply zip containers with an embedded png. REVIEW:126675
88 lines
2.1 KiB
C++
88 lines
2.1 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2013 Boudewijn Rempt <boud@valdyas.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the Lesser GNU General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This code is based on Thacher Ulrich PSD loading code released
|
|
on public domain. See: http://tulrich.com/geekstuff/
|
|
*/
|
|
|
|
#include "ora.h"
|
|
|
|
#include <QImage>
|
|
#include <QScopedPointer>
|
|
|
|
#include <kzip.h>
|
|
|
|
OraHandler::OraHandler()
|
|
{
|
|
}
|
|
|
|
bool OraHandler::canRead() const
|
|
{
|
|
if (canRead(device())) {
|
|
setFormat("ora");
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool OraHandler::read(QImage *image)
|
|
{
|
|
KZip zip(device());
|
|
if (!zip.open(QIODevice::ReadOnly)) return false;
|
|
|
|
const KArchiveEntry *entry = zip.directory()->entry(QLatin1String("mergedimage.png"));
|
|
if (!entry || !entry->isFile()) return false;
|
|
|
|
const KZipFileEntry* fileZipEntry = static_cast<const KZipFileEntry*>(entry);
|
|
|
|
image->loadFromData(fileZipEntry->data(), "PNG");
|
|
|
|
return true;
|
|
}
|
|
|
|
bool OraHandler::canRead(QIODevice *device)
|
|
{
|
|
if (!device) {
|
|
qWarning("OraHandler::canRead() called with no device");
|
|
return false;
|
|
}
|
|
|
|
char buff[54];
|
|
if (device->peek(buff, sizeof(buff)) == sizeof(buff))
|
|
return qstrcmp(buff + 0x26, "image/openraster") == 0;
|
|
|
|
return false;
|
|
}
|
|
|
|
QImageIOPlugin::Capabilities OraPlugin::capabilities(QIODevice *device, const QByteArray &format) const
|
|
{
|
|
if (format == "ora" || format == "ORA") {
|
|
return Capabilities(CanRead);
|
|
}
|
|
if (!format.isEmpty()) {
|
|
return 0;
|
|
}
|
|
if (!device->isOpen()) {
|
|
return 0;
|
|
}
|
|
|
|
Capabilities cap;
|
|
if (device->isReadable() && OraHandler::canRead(device)) {
|
|
cap |= CanRead;
|
|
}
|
|
return cap;
|
|
}
|
|
|
|
QImageIOHandler *OraPlugin::create(QIODevice *device, const QByteArray &format) const
|
|
{
|
|
QImageIOHandler *handler = new OraHandler;
|
|
handler->setDevice(device);
|
|
handler->setFormat(format);
|
|
return handler;
|
|
}
|