mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
31 lines
680 B
C++
31 lines
680 B
C++
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "ColorImageProvider.h"
|
|
|
|
#include <QPainter>
|
|
|
|
QPixmap
|
|
ColorImageProvider::requestPixmap(const QString &id, QSize *size, const QSize &)
|
|
{
|
|
auto args = id.split('?');
|
|
|
|
QPixmap source(args[0]);
|
|
|
|
if (size)
|
|
*size = QSize(source.width(), source.height());
|
|
|
|
if (args.size() < 2)
|
|
return source;
|
|
|
|
QColor color(args[1]);
|
|
|
|
QPixmap colorized = source;
|
|
QPainter painter(&colorized);
|
|
painter.setCompositionMode(QPainter::CompositionMode_SourceIn);
|
|
painter.fillRect(colorized.rect(), color);
|
|
painter.end();
|
|
|
|
return colorized;
|
|
}
|