mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-07-16 19:34:17 -04:00
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 nullptr;
|
|
}
|
|
if (!device->isOpen()) {
|
|
return nullptr;
|
|
}
|
|
|
|
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;
|
|
}
|