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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Graphical Effects module.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** As a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "imagecompare.h"
ImageCompare::ImageCompare(QObject *parent) : QObject(parent){
}
bool ImageCompare::ComparePixels(QImage actual, QImage expected, int tolerance, QString filename){
bool result = true;
bool compareAlpha, compareRed, compareGreen, compareBlue;
int diffPixelCount = 0;
QImage diffImage(300, 300, QImage::Format_ARGB32);
diffImage.fill(Qt::white);
for(int y = 0; y < 300; y++){
for(int x = 0; x < 300; x++){
// Pixel difference is set initially to false.
bool diff = false;
// Gets the color of the pixel in the given position.
QRgb pixelActual = actual.pixel(x,y);
QRgb pixelExpected = expected.pixel(x,y);
// Compares separately the alpha, red, green and blue components of an ARGB value within the specified tolerance.
compareAlpha = (abs(qAlpha(pixelActual) - qAlpha(pixelExpected)) <= tolerance);
compareRed = (abs(qRed(pixelActual) - qRed(pixelExpected)) <= tolerance);
compareGreen = (abs(qGreen(pixelActual) - qGreen(pixelExpected)) <= tolerance);
compareBlue = (abs(qBlue(pixelActual) - qBlue(pixelExpected)) <= tolerance);
// Result value holds the overall boolean status are the compared images the same or different.
result &= (compareAlpha && compareRed && compareGreen && compareBlue);
// When the compared pixels differ, diff value is set to true and the pixel position is marked to an additional image file.
diff = !(compareAlpha && compareRed && compareGreen && compareBlue);
if (diff == true){
diffImage.setPixel(x, y, qRgba(255, 0, 0, 255));
++diffPixelCount;
}
}
}
if(result == false){
qDebug() << "The percentage difference in" << filename << ":" << diffPixelCount << "/" << 300*300 << "=" << 100.0*diffPixelCount/(300*300);
QDir wd = QDir().dirName();
wd.mkdir("diffImages");
diffImage.save("diffImages/" + filename);
}
return result;
}
bool ImageCompare::CompareSizes(QImage actual, QImage expected){
bool sizesMatch = true;
if (actual.width() == expected.width() && actual.height() == expected.height()){
sizesMatch = true;
}
else sizesMatch = false;
return sizesMatch;
}
|