-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicFrame.java
More file actions
232 lines (217 loc) · 6.89 KB
/
BasicFrame.java
File metadata and controls
232 lines (217 loc) · 6.89 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import java.awt.BorderLayout;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class BasicFrame extends JFrame {
JPanel controlPanel;
ImagePanel imagePanel;
JButton btnShow;
JButton btnInverse;
JButton btnGray;
JButton btnUpDown;
JButton btnLeftRight;
JButton btnRotatetRight;
JButton btnRotatetLeft;
JButton btnRotate180;
JButton btnSave;
JLabel lbFile;
JTextField tfFile;
int[][][] data;
int height;
int width;
BufferedImage img = null;
BufferedImage img1 = null;
boolean sizeChanged;
BasicFrame() {
setTitle("HW1: Basic Operations");
btnShow = new JButton("顯示");
btnInverse = new JButton("反白 (負片效果)");
btnGray = new JButton("灰階 (黑白片效果)");
btnUpDown = new JButton("上下顚倒");
btnLeftRight = new JButton("左右相反");
btnRotatetRight = new JButton("向右90度");
btnRotatetLeft = new JButton("向左90度");
btnRotate180 = new JButton("旋轉180度");
btnSave = new JButton("Save PNG ");
tfFile = new JTextField(10);
lbFile = new JLabel("Name: ");
tfFile.setText("Image_");
controlPanel = new JPanel();
controlPanel.add(btnShow);
controlPanel.add(btnInverse);
controlPanel.add(btnGray);
controlPanel.add(btnUpDown);
controlPanel.add(btnLeftRight);
controlPanel.add(btnRotatetRight);
controlPanel.add(btnRotatetLeft);
controlPanel.add(btnRotate180);
controlPanel.add(btnSave);
controlPanel.add(lbFile);
controlPanel.add(tfFile);
setLayout(new BorderLayout());
add(controlPanel, BorderLayout.PAGE_START);
imagePanel = new ImagePanel();
add(imagePanel);
try {
img = ImageIO.read(new File("plate.png"));
} catch (IOException e1) {
e1.printStackTrace();
}
height = img.getHeight();
width = img.getWidth();
data = new int[height][width][3];
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int rgb = img.getRGB(x, y);
data[y][x][0] = Util.getR(rgb);
data[y][x][1] = Util.getG(rgb);
data[y][x][2] = Util.getB(rgb);
}
}
btnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
Graphics g = imagePanel.getGraphics();
imagePanel.paintComponent(g);
g.drawImage(img, 0, 0, null);
}
});
btnSave.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
File outputfile = new File(tfFile.getText() + ".png");
try {
if (sizeChanged) {
ImageIO.write(img1, "png", outputfile);
} else {
ImageIO.write(img, "png", outputfile);
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
btnInverse.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
sizeChanged = false;
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int r = 255 - data[y][x][0];
int g = 255 - data[y][x][1];
int b = 255 - data[y][x][2];
img.setRGB(x, y, Util.makeColor(r, g, b));
}
}
Graphics g = imagePanel.getGraphics();
imagePanel.paintComponent(g);
g.drawImage(img, 0, 0, null);
}
});
btnGray.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
sizeChanged = false;
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int gray = Util.covertToGray(data[y][x][0], data[y][x][1], data[y][x][2]);
int rgb = Util.makeColor(gray, gray, gray);
img.setRGB(x, y, rgb);
}
}
Graphics g = imagePanel.getGraphics();
imagePanel.paintComponent(g);
g.drawImage(img, 0, 0, null);
}
});
btnUpDown.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
sizeChanged = false;
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int rgb = Util.makeColor(data[height - 1 - y][x][0], data[height - 1 - y][x][1],
data[height - 1 - y][x][2]);
img.setRGB(x, y, rgb);
}
}
Graphics g = imagePanel.getGraphics();
imagePanel.paintComponent(g);
g.drawImage(img, 0, 0, null);
}
});
btnLeftRight.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
sizeChanged = false;
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int rgb = Util.makeColor(data[y][width - x - 1][0], data[y][width - x - 1][1],
data[y][width - x - 1][2]);
img.setRGB(x, y, rgb);
}
}
Graphics g = imagePanel.getGraphics();
imagePanel.paintComponent(g);
g.drawImage(img, 0, 0, null);
}
});
btnRotatetRight.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
sizeChanged = true;
img1 = new BufferedImage(height, width, BufferedImage.TYPE_INT_ARGB);
for (int y = 0; y < width; y++) {
for (int x = 0; x < height; x++) {
int rgb = Util.makeColor(data[height - x - 1][y][0], data[height - x - 1][y][1],
data[height - x - 1][y][2]);
img1.setRGB(x, y, rgb);
}
}
Graphics g = imagePanel.getGraphics();
imagePanel.paintComponent(g);
g.drawImage(img1, 0, 0, null);
}
});
btnRotatetLeft.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
sizeChanged = true;
img1 = new BufferedImage(height, width, BufferedImage.TYPE_INT_ARGB);
for (int y = 0; y < width; y++) {
for (int x = 0; x < height; x++) {
int rgb = Util.makeColor(data[x][width - y - 1][0], data[x][width - y - 1][1],
data[x][width - y - 1][2]);
img1.setRGB(x, y, rgb);
}
}
Graphics g = imagePanel.getGraphics();
imagePanel.paintComponent(g);
g.drawImage(img1, 0, 0, null);
}
});
btnRotate180.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
sizeChanged = true;
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int rgb = Util.makeColor(data[height - y - 1][width - x - 1][0],
data[height - y - 1][width - x - 1][1], data[height - y - 1][width - x - 1][2]);
img.setRGB(x, y, rgb);
}
}
Graphics g = imagePanel.getGraphics();
imagePanel.paintComponent(g);
g.drawImage(img, 0, 0, null);
}
});
}
public static void main(String[] args) {
BasicFrame frame = new BasicFrame();
frame.setSize(1500, 1500);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}