-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArchivoImagenBMP.cpp
210 lines (189 loc) · 8.25 KB
/
ArchivoImagenBMP.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
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
#include "ArchivoImagenBMP.h"
bool ArchivoImagenBMP::guardarDatos (string cadena, const unsigned int offset){
bool estado, lsbMitad;
unsigned short int bpp; // bits per pixel
unsigned short int bitsUtilesPx, correccion;
short int valor;
unsigned int fila, columna, largo, ancho, tamanoFila;
string nombreArchivo = this->obtenerNombreCompleto();
// Abrimos el imagen BMP
BMP imagen;
RGBApixel pixel;
estado = imagen.ReadFromFile(nombreArchivo.c_str());
if (estado){
bpp = imagen.TellBitDepth();
largo = imagen.TellHeight();
ancho = imagen.TellWidth();
lsbMitad = (bpp == (2*BITS_BYTE));
bitsUtilesPx = (bpp == (4*BITS_BYTE)) ? 4 : 3;
tamanoFila = bitsUtilesPx * ancho; // Real en bits
fila = (offset * BITS_BYTE) / tamanoFila;
columna = ((offset*BITS_BYTE - fila*tamanoFila) / (bitsUtilesPx));
correccion = ((offset*BITS_BYTE - fila*tamanoFila) % (bitsUtilesPx));
if (correccion != 0)
columna++;
if (columna >= ancho){
columna = 0;
fila++;
}
// Se resuelve modificando los pixels de la paleta (3 bits por pixel con LSB)
if (bpp == BITS_BYTE) { //8 - offset values= 0,1,...,255
fila = (offset*BITS_BYTE)/bitsUtilesPx;
if (((offset*BITS_BYTE) % bitsUtilesPx) != 0)
fila++;
OperacionesBinarias::siguienteValorString(&cadena);
valor = 0;
// Esta parte esta en testeo
while (valor >= 0){
pixel = imagen.GetColor(fila);
valor = OperacionesBinarias::siguienteValorString(NULL);
if (valor >= 0){
OperacionesBinarias::setearValorLSB(&pixel.Red, valor, lsbMitad);
valor = OperacionesBinarias::siguienteValorString(NULL);
if (valor >= 0){
OperacionesBinarias::setearValorLSB(&pixel.Green, valor, lsbMitad);
valor = OperacionesBinarias::siguienteValorString(NULL);
if (valor >= 0){
OperacionesBinarias::setearValorLSB(&pixel.Blue, valor, lsbMitad);
}
}
}
imagen.SetColor(fila, pixel);
if (++fila == 256)
valor = -1;
}
}
else if (bpp >= (2*BITS_BYTE)){ //16, 24 y 32
OperacionesBinarias::siguienteValorString(&cadena);
valor = 0;
// Esta parte esta en testeo
while (valor >= 0){
pixel = imagen.GetPixel(columna, fila);
// Se esteganografia por el metodo LSB en el orden: r, g, b y a (si 32 bpp)
valor = OperacionesBinarias::siguienteValorString(NULL);
if (valor >= 0){
OperacionesBinarias::setearValorLSB(&pixel.Red, valor, lsbMitad);
valor = OperacionesBinarias::siguienteValorString(NULL);
if (valor >= 0){
OperacionesBinarias::setearValorLSB(&pixel.Green, valor, lsbMitad);
valor = OperacionesBinarias::siguienteValorString(NULL);
if (valor >= 0){
OperacionesBinarias::setearValorLSB(&pixel.Blue, valor, lsbMitad);
if (bpp == 32){
valor = OperacionesBinarias::siguienteValorString(NULL);
if (valor >= 0){
OperacionesBinarias::setearValorLSB(&pixel.Alpha, valor, lsbMitad);
}
}
}
}
}
// Seteo el pixel y avanzo el recorrido de la imagen
imagen.SetPixel(columna++, fila, pixel);
if (columna == ancho){
columna = 0;
fila++;
if (fila == largo)
valor = -1;
}
}//while
}//16,24 y 32
estado = imagen.WriteToFile(nombreArchivo.c_str());
}
return estado;
}
string ArchivoImagenBMP::recuperarDatos (const unsigned int offset, const unsigned int bitsInformacion ){
bool estado = false;
bool valor;
unsigned short int bpp; // bits per pixel
unsigned short int lsb, bitsUtilesPx, correccion;
unsigned int fila, columna, largo, ancho, tamanoFila;
unsigned int bitsLeidos;
// Abrimos el archivo imagen BMP
BMP imagen;
RGBApixel pixel;
estado = imagen.ReadFromFile(this->obtenerNombreCompleto().c_str());
if (estado){
bpp = imagen.TellBitDepth();
largo = imagen.TellHeight();
ancho = imagen.TellWidth();
bitsLeidos = 0;
lsb = (bpp == (2*BITS_BYTE)) ? 4 : 0;
bitsUtilesPx = (bpp == (4*BITS_BYTE)) ? 4 : 3;
tamanoFila = bitsUtilesPx * ancho; // Real en bits
fila = (offset * BITS_BYTE) / tamanoFila;
columna = ((offset*BITS_BYTE - fila*tamanoFila) / (bitsUtilesPx));
correccion = ((offset*BITS_BYTE - fila*tamanoFila) % (bitsUtilesPx));
if (correccion != 0)
columna++;
if (columna >= ancho){
columna = 0;
fila++;
}
if (bpp == BITS_BYTE) {
fila = (offset*BITS_BYTE)/bitsUtilesPx;
if (((offset*BITS_BYTE) % bitsUtilesPx) != 0)
fila++;
while (bitsLeidos < bitsInformacion){
pixel = imagen.GetColor(fila);
valor = OperacionesBinarias::valorEn(pixel.Red,lsb);
OperacionesBinarias::concatenarValorString(valor);
if (++bitsLeidos < bitsInformacion){
valor = OperacionesBinarias::valorEn(pixel.Green,lsb);
OperacionesBinarias::concatenarValorString(valor);
if (++bitsLeidos < bitsInformacion){
valor = OperacionesBinarias::valorEn(pixel.Blue,lsb);
OperacionesBinarias::concatenarValorString(valor);
bitsLeidos++;
}
}
imagen.SetColor(fila, pixel);
if (++fila == 256)
bitsLeidos = bitsInformacion;
}// while
}
else if (bpp >= (2*BITS_BYTE)){ // 16, 24 y 32
while (bitsLeidos < bitsInformacion){
pixel = imagen.GetPixel(columna, fila);
valor = OperacionesBinarias::valorEn(pixel.Red,lsb);
OperacionesBinarias::concatenarValorString(valor);
if (++bitsLeidos < bitsInformacion){
valor = OperacionesBinarias::valorEn(pixel.Green,lsb);
OperacionesBinarias::concatenarValorString(valor);
if (++bitsLeidos < bitsInformacion){
valor = OperacionesBinarias::valorEn(pixel.Blue,lsb);
OperacionesBinarias::concatenarValorString(valor);
if (++bitsLeidos < bitsInformacion){
if (bpp == 32){
OperacionesBinarias::concatenarValorString(OperacionesBinarias::valorEn(pixel.Alpha,lsb));
bitsLeidos++;
}
}
}
}
if (++columna == ancho){
columna = 0;
fila++;
if (fila == largo)
bitsLeidos = bitsInformacion;
}
}// while
}//16,24 y 32
}
return OperacionesBinarias::concatenarValorString(-1);
}
void ArchivoImagenBMP::preProcesar(){
BMP imagen;
imagen.ReadFromFile(this->obtenerNombreCompleto().c_str());
unsigned short int bpp = imagen.TellBitDepth();
unsigned short int largo = imagen.TellHeight();
unsigned short int ancho = imagen.TellWidth();
if (bpp == BITS_BYTE)
this->espacioDisponible = (3*256)/BITS_BYTE;
else if (bpp == 4*BITS_BYTE)
this->espacioDisponible = (4*largo*ancho)/BITS_BYTE;
else
this->espacioDisponible = (3*largo*ancho)/BITS_BYTE;
this->bytesLibres = this->espacioDisponible;
}
// private: