comment changed
parent
b1283e4990
commit
f3ef19801f
|
@ -65,7 +65,7 @@ public:
|
||||||
// Speicherreservierung für die Pixeldaten
|
// Speicherreservierung für die Pixeldaten
|
||||||
pixel = new int[width * height * 3];
|
pixel = new int[width * height * 3];
|
||||||
|
|
||||||
// Alle Pixeldaten bestehend aus rgb in data[] speichern mit width * height * 3 für alle Wertes
|
// Alle Pixeldaten bestehend aus rgb in pixel[] speichern mit width * height * 3 für alle Werte
|
||||||
for (int i = 0; i < width * height * 3; ++i) {
|
for (int i = 0; i < width * height * 3; ++i) {
|
||||||
// file speichert in data[i]
|
// file speichert in data[i]
|
||||||
file >> pixel[i];
|
file >> pixel[i];
|
||||||
|
|
Loading…
Reference in New Issue