2017-09-18 14:33:44 +08:00
|
|
|
/*
|
2018-02-07 11:52:47 +08:00
|
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
2017-09-18 14:33:44 +08:00
|
|
|
*
|
|
|
|
* Author: sbw <sbw@sbw.so>
|
|
|
|
*
|
|
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-06-27 20:16:35 +08:00
|
|
|
#include "imagefactory.h"
|
|
|
|
|
|
|
|
#include <QDebug>
|
2016-06-28 13:58:41 +08:00
|
|
|
#include <QPainter>
|
2016-06-27 20:16:35 +08:00
|
|
|
|
|
|
|
ImageFactory::ImageFactory(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-06-28 13:58:41 +08:00
|
|
|
QPixmap ImageFactory::lighterEffect(const QPixmap pixmap, const int delta)
|
2016-06-27 20:16:35 +08:00
|
|
|
{
|
2016-08-16 17:18:26 +08:00
|
|
|
QImage image = pixmap.toImage();
|
2016-06-27 20:16:35 +08:00
|
|
|
|
2016-08-16 17:18:26 +08:00
|
|
|
const int width = image.width();
|
|
|
|
const int height = image.height();
|
|
|
|
const int bytesPerPixel = image.bytesPerLine() / image.width();
|
|
|
|
|
|
|
|
for (int i(0); i != height; ++i)
|
|
|
|
{
|
|
|
|
uchar *scanLine = image.scanLine(i);
|
|
|
|
for (int j(0); j != width; ++j)
|
|
|
|
{
|
|
|
|
QRgb &rgba = *(QRgb*)scanLine;
|
2018-01-23 14:51:37 +08:00
|
|
|
if (qAlpha(rgba) == 0xff) {
|
|
|
|
rgba = QColor::fromRgba(rgba).light(delta).rgba();
|
|
|
|
// const QColor hsv = QColor::fromRgba(rgba).toHsv();
|
|
|
|
// // check brightness first, color with max brightness processed with lighter will
|
|
|
|
// // become white like color which will ruin the whole image in general cases.
|
|
|
|
// if (hsv.value() < 255) {
|
|
|
|
// rgba = QColor::fromRgba(rgba).lighter(delta).rgba();
|
|
|
|
// }
|
2017-10-23 13:56:38 +08:00
|
|
|
}
|
2016-08-16 17:18:26 +08:00
|
|
|
scanLine += bytesPerPixel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QPixmap::fromImage(image);
|
2016-06-27 20:16:35 +08:00
|
|
|
}
|