-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
34 lines (22 loc) · 1.21 KB
/
mainwindow.cpp
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
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "KEncodePNG.h"
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
MainWindow::MainWindow(QWidget * pParent)
: QMainWindow(pParent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
MainWindow::~MainWindow()
{
delete ui;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void MainWindow::on_encodeButton_clicked()
{
QImage test_image(":/images/Mac-Screen-Shot.png");
KEncodePNG encoder(test_image);
encoder.analyzeColor();
}