1/*
2 SPDX-FileCopyrightText: 2009 Canonical
3 SPDX-FileContributor: Aurélien Gâteau <aurelien.gateau@canonical.com>
4
5 SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only
6*/
7
8#ifndef IMAGECONVERTER_H
9#define IMAGECONVERTER_H
10
11class QVariant;
12class QImage;
13
14namespace ImageConverter
15{
16/**
17 * Returns a variant representing an image using the format describe in the
18 * freedesktop.org spec
19 */
20QVariant variantForImage(const QImage &image);
21
22} // namespace
23
24#endif /* IMAGECONVERTER_H */
25

source code of knotifications/src/imageconverter.h