-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPictureEdit.java
436 lines (373 loc) · 9.21 KB
/
PictureEdit.java
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/**
* @author Derek Babb <[email protected]>
* @version 1.1
* @since 7-2-2013
*
* The PictureEdit class allows you to easily open and modify an image
* at the pixel level.
*
* New in version 1.1, ability to create a new file of given width and height
*
*/
import java.awt.image.BufferedImage;
import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.imageio.ImageIO;
import java.io.File;
import java.awt.Image;
import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.awt.Graphics;
import java.awt.Color;
public class PictureEdit extends JPanel
{
private BufferedImage image;
private BufferedImage revertImage;
private File file;
/**
* Constructor will use the JFileChooser to open a file
*/
public PictureEdit()
{
image = null;
this.open();
}
/**
* Constructor will use the JFileChooser to open a file
*
* @param fileName is the String file name including the directory path
*/
public PictureEdit(String fileName)
{
image = null;
this.open(fileName);
}
/**
* Constructor will use the JFileChooser to open a file
*
* @param file is the File object of the picture that will be opened.
*/
public PictureEdit(File file)
{
image = null;
this.open(file);
}
/**
* Constructor will use the JFileChooser to open a file
*
* @param the width and height of the desired blank picture.
*/
public PictureEdit(int width, int height)
{
image = buildImage(width, height);
revertImage = copyImage(image);
}
/**
* Opens a file by opening a JFileChooser which allows the user to select
* the file they would like to open.
*
* @return true if the file successfully opened, false otherwise.
*/
public boolean open()
{
JFileChooser chooser = new JFileChooser(".");
FileNameExtensionFilter filter = new FileNameExtensionFilter("PNG Images", "png");
chooser.setFileFilter(filter);
int returnVal = chooser.showOpenDialog(null);
if(returnVal == JFileChooser.APPROVE_OPTION) {
try{
file = chooser.getSelectedFile();
image = ImageIO.read(file);
revertImage = copyImage(image);
}
catch(Exception e){
return false;
}
return true;
}
else
{
return false;
}
}
/**
* Opens an image file based on the file name in String format
*
* @param fileName the name of the file including file path.
* @return true if the file is successfully opened, false otherwise.
*/
public boolean open(String fileName)
{
try{
file = new File(fileName);
image = ImageIO.read(file);
revertImage = copyImage(image);
}
catch(Exception e){
return false;
}
return true;
}
/**
* Opens an image file given a File object.
*
* @param file the File object of the image file.
* @return true if the file is successfully opened, false otherwise.
*/
public boolean open(File file)
{
try{
image = ImageIO.read(file);
revertImage = copyImage(image);
}
catch(Exception e){
return false;
}
return true;
}
/**
* Reverts to the original file, all unsaved changes are lost.
*/
public void revert()
{
image = copyImage(revertImage);
}
/**
* Saves a file by opening a JFileChooser which allows the user to select
* the file they would like to save over or create a new file to save onto.
*
* @return true if the file successfully opened, false otherwise.
*/
public boolean saveAs()
{
JFileChooser chooser = new JFileChooser(".");
int returnVal = chooser.showSaveDialog(null);
if(returnVal == JFileChooser.APPROVE_OPTION) {
try{
ImageIO.write(image, "png",chooser.getSelectedFile());
}
catch(Exception e){
return false;
}
return true;
}
return false;
}
/**
* Saves a file by writing a new file with the given fileName String.
* CAUTION: This will overwrite any file with the name provided. No confirmation
* dialog.
*
* @param fileName is a String with the file name and path directory.
*
* @return true if the file successfully opened, false otherwise.
*/
public boolean saveAs(String fileName)
{
try{
ImageIO.write(image, "png",new File(fileName));
}
catch(Exception e){
return false;
}
return true;
}
/**
* Returns the width of the image file
*
* @return integer value of the width. Will return 0 if there is no file currently open.
*/
public int getWidth()
{
if(image == null)
{
return 0;
}
else
{
return image.getWidth();
}
}
/**
* Returns the height of the image file
*
* @return integer value of the height. Will return 0 if there is no file currently open.
*/
public int getHeight()
{
if(image == null)
{
return 0;
}
else
{
return image.getHeight();
}
}
/**
* Returns the image file as an Image object. This might be used to easily display the open image.
*
* @return Image object of the currently open image.
*/
public Image getImage()
{
return (Image)image;
}
/**
* Displays the current image in a new JFrame.
* The title of the JFrame will be the timestamp of when it was displayed.
* The timestamp allows the user to see multiple revisions and know which came first.
*
*/
public void displayImage()
{
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date date = new Date();
displayImage(dateFormat.format(date));
}
/**
* Displays the current image in a new JFrame.
* The title of the window is given as a paramater.
*
* @param title Title of the window.
*
*/
public void displayImage(String title)
{
new Window(image, title);
}
/**
* Returns the integer value of the color at a given point.
* Will return a -1 if the coordinate is outside the width/height of the open image.
*
* @param x x-coordinate of the selected pixel
* @param y y-coordinate of the selected pixel
*
* @return integer value of the color at (x,y) coordinate.
*/
public int getRGBColor(int x, int y)
{
if(x < image.getWidth() && y < image.getHeight())
{
return image.getRGB(x,y);
}
else
{
return -1;
}
}
/**
* Returns a Color object of the color at a given point.
* Will return null if the coordinate is outside the width/height of the open image.
*
* @param x x-coordinate of the selected pixel
* @param y y-coordinate of the selected pixel
*
* @return Color object of the color at (x,y) coordinate.
*/
public Color getColor(int x, int y)
{
if(x < image.getWidth() && y < image.getHeight())
{
return new Color(getRGBColor(x,y));
}
else
{
return null;
}
}
/**
* Sets the color at a given x,y coordinate.
* The color is given in an integer RGB model.
*
* If the x,y is outside the image, the method returns false, true otherwise.
*
* @param x x-coordinate of the selected pixel
* @param y y-coordinate of the selected pixel
* @param color the color in integer RGB form
*
* @return Color object of the color at (x,y) coordinate.
*/
public boolean setColor(int x, int y, int color)
{
if(x < image.getWidth() && y < image.getHeight())
{
image.setRGB(x, y, color);
return true;
}
return false;
}
/**
* Sets the color at a given x,y coordinate.
* The color is given as a Color object.
*
* If the x,y is outside the image, the method returns false, true otherwise.
*
* @param x x-coordinate of the selected pixel
* @param y y-coordinate of the selected pixel
* @param color Color object of the color to change to
*
* @return Color object of the color at (x,y) coordinate.
*/
public boolean setColor(int x, int y, Color color)
{
if(x < image.getWidth() && y < image.getHeight() && color != null)
{
image.setRGB(x, y, color.getRGB());
return true;
}
return false;
}
private BufferedImage buildImage(int width, int height)
{
BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
return img;
}
private BufferedImage copyImage(BufferedImage i)
{
BufferedImage img = new BufferedImage(i.getWidth(), i.getHeight(), i.getType());
for (int y = 0; y < i.getHeight(); y++)
{
for (int x = 0; x < i.getWidth(); x++)
{
int rgb = i.getRGB(x, y);
img.setRGB(x, y, rgb);
}
}
return img;
}
/**
* Allows the user to get the currently open file as an object.
*
* @Return returns the File object of the current open file.
*
*/
public File getFile()
{
return file;
}
private class Window extends JPanel
{
private BufferedImage img;
public Window(BufferedImage i, String title)
{
img = copyImage(image);
JFrame jf = new JFrame(title);
jf.setSize(img.getWidth() + 16, img.getHeight() + 38);
jf.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
jf.getContentPane().add(this);
jf.setVisible(true);
}
/**
* @Override to display image
*/
public void paintComponent(Graphics g)
{
super.paintComponent(g);
g.drawImage(img,0,0,this);
}
}
}