mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-05-28 00:30:23 -04:00
31 lines
835 B
C
31 lines
835 B
C
/*
|
|
SPDX-FileCopyrightText: 2014 Alex Merry <alex.merry@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#ifndef FORMAT_ENUM_H
|
|
#define FORMAT_ENUM_H
|
|
|
|
#include <QMetaEnum>
|
|
#include <QImage>
|
|
|
|
QImage::Format formatFromString(const QString &str)
|
|
{
|
|
const QMetaEnum metaEnum = QMetaEnum::fromType<QImage::Format>();
|
|
const QString enumString = QStringLiteral("Format_") + str;
|
|
|
|
bool ok;
|
|
const int res = metaEnum.keyToValue(enumString.toLatin1().constData(), &ok);
|
|
|
|
return ok ? static_cast<QImage::Format>(res) : QImage::Format_Invalid;
|
|
}
|
|
|
|
QString formatToString(QImage::Format format)
|
|
{
|
|
const QMetaEnum metaEnum = QMetaEnum::fromType<QImage::Format>();
|
|
return QString::fromLatin1(metaEnum.valueToKey(format)).remove(QStringLiteral("Format_"));
|
|
}
|
|
|
|
#endif
|