1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include <qimageiohandler.h>
#include <qstringlist.h>
#if !defined(QT_NO_SVGRENDERER)
#include "qsvgiohandler.h"
#include <qiodevice.h>
#include <qbytearray.h>
#include <qdebug.h>
QT_BEGIN_NAMESPACE
class QSvgPlugin : public QImageIOPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "svg.json")
public:
QStringList keys() const;
Capabilities capabilities(QIODevice *device, const QByteArray &format) const;
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const;
};
QStringList QSvgPlugin::keys() const
{
return QStringList() << QLatin1String("svg") << QLatin1String("svgz");
}
QImageIOPlugin::Capabilities QSvgPlugin::capabilities(QIODevice *device, const QByteArray &format) const
{
if (format == "svg" || format == "svgz")
return Capabilities(CanRead);
Capabilities cap;
if (!format.isEmpty())
return cap;
if (device->isReadable() && QSvgIOHandler::canRead(device))
cap |= CanRead;
return cap;
}
QImageIOHandler *QSvgPlugin::create(QIODevice *device, const QByteArray &format) const
{
QSvgIOHandler *hand = new QSvgIOHandler();
hand->setDevice(device);
hand->setFormat(format);
return hand;
}
QT_END_NAMESPACE
#include "main.moc"
#endif // !QT_NO_IMAGEFORMATPLUGIN
|