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
|
package aufgaben.b20160425;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import aufgaben.Aufgabe;
import misc.Utils;
public class Aufgabe2 extends Aufgabe {
private final int width = 1000, height = 500;
private boolean done = false;
private String name;
private BufferedImage source, vertical, horizontal, both;
private Color[][] pixels;
public Aufgabe2() {
name = "Spiegelung 2";
this.setSize(width, height);
this.setTitle(name);
this.addWindowListener(
new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
System.out.println("close");
done = true;
}
}
);
}
@Override
public boolean done() {
return done;
}
public void paint(Graphics g) {
if(source != null)
g.drawImage(source, 0, 0, 500, 500, this);
if(vertical != null)
g.drawImage(vertical, 500, 0, 250, 250, this);
if(horizontal != null)
g.drawImage(horizontal, 750, 0, 250, 250, this);
if(both != null)
g.drawImage(both, 500, 250, 250, 250, this);
}
@Override
public String getName() {
return name;
}
@Override
public void init() {
pixels = new Color[width][height];
try {
source = ImageIO.read(new File("kraehne2.jpg"));
vertical = ImageIO.read(new File("kraehne2.jpg"));
horizontal = ImageIO.read(new File("kraehne2.jpg"));
both = ImageIO.read(new File("kraehne2.jpg"));
for(int x = 0, width = source.getWidth(); x<width; x++) {
for(int y = 0, height = source.getHeight(); y<height; y++) {
Color c = new Color(source.getRGB(x, y));
int h = (int)(((double)(c.getRed()+c.getGreen()+c.getBlue())/765)*255);
vertical.setRGB(source.getWidth()-x-1, y, new Color(h, h, h).getRGB());
horizontal.setRGB(x, source.getHeight()-1-y, new Color(h, h, h).getRGB());
both.setRGB(source.getWidth()-x-1, source.getHeight()-1-y, new Color(h, h, h).getRGB());
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
|