]>
Commit | Line | Data |
---|---|---|
e65ed37a | 1 | ///////////////////////////////////////////////////////////////////////////// |
8898456d | 2 | // Name: src/common/imagbmp.cpp |
05813ada VS |
3 | // Purpose: wxImage BMP,ICO and CUR handlers |
4 | // Author: Robert Roebling, Chris Elliott | |
e65ed37a | 5 | // RCS-ID: $Id$ |
05813ada | 6 | // Copyright: (c) Robert Roebling, Chris Elliott |
65571936 | 7 | // Licence: wxWindows licence |
e65ed37a RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
e65ed37a RR |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #ifdef __BORLANDC__ | |
8898456d | 14 | #pragma hdrstop |
e65ed37a RR |
15 | #endif |
16 | ||
e30285ab | 17 | #if wxUSE_IMAGE |
c96ea657 | 18 | |
5ff14574 PC |
19 | #include "wx/imagbmp.h" |
20 | ||
8898456d | 21 | #ifndef WX_PRECOMP |
57bd4c60 WS |
22 | #ifdef __WXMSW__ |
23 | #include "wx/msw/wrapwin.h" | |
24 | #endif | |
8898456d WS |
25 | #include "wx/log.h" |
26 | #include "wx/app.h" | |
0bca0373 | 27 | #include "wx/bitmap.h" |
5ff14574 PC |
28 | #include "wx/palette.h" |
29 | #include "wx/intl.h" | |
37ba70a5 | 30 | #include "wx/math.h" |
8898456d WS |
31 | #endif |
32 | ||
e65ed37a RR |
33 | #include "wx/filefn.h" |
34 | #include "wx/wfstream.h" | |
1971d23c | 35 | #include "wx/quantize.h" |
72045d57 | 36 | #include "wx/anidecod.h" |
e65ed37a RR |
37 | |
38 | // For memcpy | |
39 | #include <string.h> | |
40 | ||
e65ed37a | 41 | //----------------------------------------------------------------------------- |
05813ada | 42 | // wxBMPHandler |
e65ed37a RR |
43 | //----------------------------------------------------------------------------- |
44 | ||
e65ed37a | 45 | IMPLEMENT_DYNAMIC_CLASS(wxBMPHandler,wxImageHandler) |
e65ed37a | 46 | |
e30285ab VZ |
47 | #if wxUSE_STREAMS |
48 | ||
37b83ca6 | 49 | #ifndef BI_RGB |
35b463c0 VZ |
50 | #define BI_RGB 0 |
51 | #endif | |
52 | ||
53 | #ifndef BI_RLE8 | |
37b83ca6 | 54 | #define BI_RLE8 1 |
35b463c0 VZ |
55 | #endif |
56 | ||
57 | #ifndef BI_RLE4 | |
37b83ca6 VS |
58 | #define BI_RLE4 2 |
59 | #endif | |
60 | ||
61 | #ifndef BI_BITFIELDS | |
62 | #define BI_BITFIELDS 3 | |
63 | #endif | |
64 | ||
65 | #define poffset (line * width * 3 + column * 3) | |
66 | ||
f6bcfd97 BP |
67 | bool wxBMPHandler::SaveFile(wxImage *image, |
68 | wxOutputStream& stream, | |
69 | bool verbose) | |
574c939e | 70 | { |
7beb59f3 | 71 | return SaveDib(image, stream, verbose, true/*IsBmp*/, false/*IsMask*/); |
37b83ca6 VS |
72 | } |
73 | ||
74 | bool wxBMPHandler::SaveDib(wxImage *image, | |
05813ada VS |
75 | wxOutputStream& stream, |
76 | bool verbose, | |
77 | bool IsBmp, | |
78 | bool IsMask) | |
37b83ca6 | 79 | |
f6bcfd97 | 80 | { |
7beb59f3 | 81 | wxCHECK_MSG( image, false, _T("invalid pointer in wxBMPHandler::SaveFile") ); |
f6bcfd97 | 82 | |
05813ada | 83 | if ( !image->Ok() ) |
f6bcfd97 | 84 | { |
574c939e | 85 | if ( verbose ) |
05813ada | 86 | wxLogError(_("BMP: Couldn't save invalid image.")); |
7beb59f3 | 87 | return false; |
f6bcfd97 BP |
88 | } |
89 | ||
1971d23c VZ |
90 | // get the format of the BMP file to save, else use 24bpp |
91 | unsigned format = wxBMP_24BPP; | |
fd94e8aa VS |
92 | if ( image->HasOption(wxIMAGE_OPTION_BMP_FORMAT) ) |
93 | format = image->GetOptionInt(wxIMAGE_OPTION_BMP_FORMAT); | |
1971d23c | 94 | |
574c939e | 95 | wxUint16 bpp; // # of bits per pixel |
1971d23c VZ |
96 | int palette_size; // # of color map entries, ie. 2^bpp colors |
97 | ||
98 | // set the bpp and appropriate palette_size, and do additional checks | |
05813ada | 99 | if ( (format == wxBMP_1BPP) || (format == wxBMP_1BPP_BW) ) |
1971d23c VZ |
100 | { |
101 | bpp = 1; | |
102 | palette_size = 2; | |
103 | } | |
05813ada | 104 | else if ( format == wxBMP_4BPP ) |
1971d23c VZ |
105 | { |
106 | bpp = 4; | |
107 | palette_size = 16; | |
108 | } | |
05813ada VS |
109 | else if ( (format == wxBMP_8BPP) || (format == wxBMP_8BPP_GREY) || |
110 | (format == wxBMP_8BPP_RED) || (format == wxBMP_8BPP_PALETTE) ) | |
1971d23c VZ |
111 | { |
112 | // need to set a wxPalette to use this, HOW TO CHECK IF VALID, SIZE? | |
b11e8fb6 VZ |
113 | if ((format == wxBMP_8BPP_PALETTE) |
114 | #if wxUSE_PALETTE | |
115 | && !image->HasPalette() | |
116 | #endif // wxUSE_PALETTE | |
117 | ) | |
1971d23c | 118 | { |
05813ada | 119 | if ( verbose ) |
dc9b623b | 120 | wxLogError(_("BMP: wxImage doesn't have own wxPalette.")); |
7beb59f3 | 121 | return false; |
1971d23c VZ |
122 | } |
123 | bpp = 8; | |
124 | palette_size = 256; | |
125 | } | |
126 | else // you get 24bpp | |
127 | { | |
128 | format = wxBMP_24BPP; | |
129 | bpp = 24; | |
130 | palette_size = 0; | |
131 | } | |
132 | ||
f6bcfd97 | 133 | unsigned width = image->GetWidth(); |
1971d23c VZ |
134 | unsigned row_padding = (4 - int(width*bpp/8.0) % 4) % 4; // # bytes to pad to dword |
135 | unsigned row_width = int(width * bpp/8.0) + row_padding; // # of bytes per row | |
136 | ||
f6bcfd97 BP |
137 | struct |
138 | { | |
139 | // BitmapHeader: | |
140 | wxUint16 magic; // format magic, always 'BM' | |
141 | wxUint32 filesize; // total file size, inc. headers | |
142 | wxUint32 reserved; // for future use | |
143 | wxUint32 data_offset; // image data offset in the file | |
33ac7e6f | 144 | |
f6bcfd97 BP |
145 | // BitmapInfoHeader: |
146 | wxUint32 bih_size; // 2nd part's size | |
147 | wxUint32 width, height; // bitmap's dimensions | |
148 | wxUint16 planes; // num of planes | |
149 | wxUint16 bpp; // bits per pixel | |
150 | wxUint32 compression; // compression method | |
151 | wxUint32 size_of_bmp; // size of the bitmap | |
37ba70a5 | 152 | wxUint32 h_res, v_res; // image resolution in pixels-per-meter |
f6bcfd97 BP |
153 | wxUint32 num_clrs; // number of colors used |
154 | wxUint32 num_signif_clrs;// number of significant colors | |
155 | } hdr; | |
1971d23c | 156 | |
f6bcfd97 BP |
157 | wxUint32 hdr_size = 14/*BitmapHeader*/ + 40/*BitmapInfoHeader*/; |
158 | ||
159 | hdr.magic = wxUINT16_SWAP_ON_BE(0x4D42/*'BM'*/); | |
1971d23c VZ |
160 | hdr.filesize = wxUINT32_SWAP_ON_BE( hdr_size + palette_size*4 + |
161 | row_width * image->GetHeight() ); | |
f6bcfd97 | 162 | hdr.reserved = 0; |
1971d23c | 163 | hdr.data_offset = wxUINT32_SWAP_ON_BE(hdr_size + palette_size*4); |
33ac7e6f | 164 | |
f6bcfd97 BP |
165 | hdr.bih_size = wxUINT32_SWAP_ON_BE(hdr_size - 14); |
166 | hdr.width = wxUINT32_SWAP_ON_BE(image->GetWidth()); | |
05813ada | 167 | if ( IsBmp ) |
37b83ca6 | 168 | { |
05813ada | 169 | hdr.height = wxUINT32_SWAP_ON_BE(image->GetHeight()); |
37b83ca6 VS |
170 | } |
171 | else | |
172 | { | |
173 | hdr.height = wxUINT32_SWAP_ON_BE(2 * image->GetHeight()); | |
05813ada | 174 | } |
f6bcfd97 | 175 | hdr.planes = wxUINT16_SWAP_ON_BE(1); // always 1 plane |
1971d23c | 176 | hdr.bpp = wxUINT16_SWAP_ON_BE(bpp); |
f6bcfd97 | 177 | hdr.compression = 0; // RGB uncompressed |
33ac7e6f | 178 | hdr.size_of_bmp = wxUINT32_SWAP_ON_BE(row_width * image->GetHeight()); |
37ba70a5 VZ |
179 | |
180 | // get the resolution from the image options or fall back to 72dpi standard | |
181 | // for the BMP format if not specified | |
182 | wxUint32 hres = image->GetOptionInt(wxIMAGE_OPTION_RESOLUTIONX), | |
183 | vres = image->GetOptionInt(wxIMAGE_OPTION_RESOLUTIONY); | |
184 | switch ( image->GetOptionInt(wxIMAGE_OPTION_RESOLUTION) ) | |
185 | { | |
186 | default: | |
187 | wxFAIL_MSG( _T("unexpected image resolution units") ); | |
188 | // fall through | |
189 | ||
190 | case wxIMAGE_RESOLUTION_NONE: | |
191 | hres = | |
192 | vres = 72; | |
193 | // fall through to convert it to correct units | |
194 | ||
195 | case wxIMAGE_RESOLUTION_INCHES: | |
196 | // convert resolution in inches to resolution in centimeters | |
ad91e1ad VZ |
197 | hres = (wxUint32)(100*mm2inches*hres); |
198 | vres = (wxUint32)(100*mm2inches*vres); | |
37ba70a5 VZ |
199 | // fall through to convert it to resolution in meters |
200 | ||
201 | case wxIMAGE_RESOLUTION_CM: | |
202 | // convert resolution in centimeters to resolution in meters | |
203 | hres *= 100; | |
204 | vres *= 100; | |
205 | break; | |
206 | } | |
207 | ||
208 | hdr.h_res = wxUINT32_SWAP_ON_BE(hres); | |
209 | hdr.v_res = wxUINT32_SWAP_ON_BE(vres); | |
1971d23c VZ |
210 | hdr.num_clrs = wxUINT32_SWAP_ON_BE(palette_size); // # colors in colormap |
211 | hdr.num_signif_clrs = 0; // all colors are significant | |
574c939e | 212 | |
05813ada | 213 | if ( IsBmp ) |
37b83ca6 | 214 | { |
05813ada VS |
215 | if (// VS: looks ugly but compilers tend to do ugly things with structs, |
216 | // like aligning hdr.filesize's ofset to dword :( | |
217 | // VZ: we should add padding then... | |
218 | !stream.Write(&hdr.magic, 2) || | |
219 | !stream.Write(&hdr.filesize, 4) || | |
220 | !stream.Write(&hdr.reserved, 4) || | |
574c939e | 221 | !stream.Write(&hdr.data_offset, 4) |
05813ada VS |
222 | ) |
223 | { | |
224 | if (verbose) | |
225 | wxLogError(_("BMP: Couldn't write the file (Bitmap) header.")); | |
7beb59f3 | 226 | return false; |
05813ada VS |
227 | } |
228 | } | |
229 | if ( !IsMask ) | |
f6bcfd97 | 230 | { |
05813ada VS |
231 | if ( |
232 | !stream.Write(&hdr.bih_size, 4) || | |
233 | !stream.Write(&hdr.width, 4) || | |
234 | !stream.Write(&hdr.height, 4) || | |
235 | !stream.Write(&hdr.planes, 2) || | |
236 | !stream.Write(&hdr.bpp, 2) || | |
237 | !stream.Write(&hdr.compression, 4) || | |
238 | !stream.Write(&hdr.size_of_bmp, 4) || | |
239 | !stream.Write(&hdr.h_res, 4) || | |
240 | !stream.Write(&hdr.v_res, 4) || | |
241 | !stream.Write(&hdr.num_clrs, 4) || | |
242 | !stream.Write(&hdr.num_signif_clrs, 4) | |
243 | ) | |
244 | { | |
245 | if (verbose) | |
246 | wxLogError(_("BMP: Couldn't write the file (BitmapInfo) header.")); | |
7beb59f3 | 247 | return false; |
05813ada | 248 | } |
f6bcfd97 BP |
249 | } |
250 | ||
1971d23c VZ |
251 | wxPalette *palette = NULL; // entries for quantized images |
252 | wxUint8 *rgbquad = NULL; // for the RGBQUAD bytes for the colormap | |
253 | wxImage *q_image = NULL; // destination for quantized image | |
254 | ||
255 | // if <24bpp use quantization to reduce colors for *some* of the formats | |
256 | if ( (format == wxBMP_1BPP) || (format == wxBMP_4BPP) || | |
05813ada | 257 | (format == wxBMP_8BPP) || (format == wxBMP_8BPP_PALETTE) ) |
1971d23c VZ |
258 | { |
259 | // make a new palette and quantize the image | |
260 | if (format != wxBMP_8BPP_PALETTE) | |
261 | { | |
262 | q_image = new wxImage(); | |
263 | ||
264 | // I get a delete error using Quantize when desired colors > 236 | |
265 | int quantize = ((palette_size > 236) ? 236 : palette_size); | |
266 | // fill the destination too, it gives much nicer 4bpp images | |
267 | wxQuantize::Quantize( *image, *q_image, &palette, quantize, 0, | |
268 | wxQUANTIZE_FILL_DESTINATION_IMAGE ); | |
269 | } | |
270 | else | |
271 | { | |
b11e8fb6 | 272 | #if wxUSE_PALETTE |
1971d23c | 273 | palette = new wxPalette(image->GetPalette()); |
b11e8fb6 | 274 | #endif // wxUSE_PALETTE |
1971d23c VZ |
275 | } |
276 | ||
277 | int i; | |
278 | unsigned char r, g, b; | |
279 | rgbquad = new wxUint8 [palette_size*4]; | |
280 | ||
05813ada | 281 | for (i = 0; i < palette_size; i++) |
1971d23c | 282 | { |
b11e8fb6 | 283 | #if wxUSE_PALETTE |
05813ada | 284 | if ( !palette->GetRGB(i, &r, &g, &b) ) |
b11e8fb6 VZ |
285 | #endif // wxUSE_PALETTE |
286 | r = g = b = 0; | |
1971d23c VZ |
287 | |
288 | rgbquad[i*4] = b; | |
289 | rgbquad[i*4+1] = g; | |
290 | rgbquad[i*4+2] = r; | |
291 | rgbquad[i*4+3] = 0; | |
292 | } | |
293 | } | |
294 | // make a 256 entry greyscale colormap or 2 entry black & white | |
05813ada VS |
295 | else if ( (format == wxBMP_8BPP_GREY) || (format == wxBMP_8BPP_RED) || |
296 | (format == wxBMP_1BPP_BW) ) | |
1971d23c | 297 | { |
1971d23c VZ |
298 | rgbquad = new wxUint8 [palette_size*4]; |
299 | ||
0ce5a3a8 | 300 | for ( int i = 0; i < palette_size; i++ ) |
1971d23c | 301 | { |
0ce5a3a8 | 302 | // if 1BPP_BW then the value should be either 0 or 255 |
11846af3 | 303 | wxUint8 c = (wxUint8)((i > 0) && (format == wxBMP_1BPP_BW) ? 255 : i); |
0ce5a3a8 VZ |
304 | |
305 | rgbquad[i*4] = | |
306 | rgbquad[i*4+1] = | |
307 | rgbquad[i*4+2] = c; | |
1971d23c VZ |
308 | rgbquad[i*4+3] = 0; |
309 | } | |
310 | } | |
311 | ||
312 | // if the colormap was made, then it needs to be written | |
313 | if (rgbquad) | |
314 | { | |
05813ada | 315 | if ( !IsMask ) |
1971d23c | 316 | { |
05813ada VS |
317 | if ( !stream.Write(rgbquad, palette_size*4) ) |
318 | { | |
319 | if (verbose) | |
320 | wxLogError(_("BMP: Couldn't write RGB color map.")); | |
321 | delete[] rgbquad; | |
b11e8fb6 | 322 | #if wxUSE_PALETTE |
05813ada | 323 | delete palette; |
b11e8fb6 | 324 | #endif // wxUSE_PALETTE |
05813ada | 325 | delete q_image; |
7beb59f3 | 326 | return false; |
05813ada VS |
327 | } |
328 | } | |
1971d23c VZ |
329 | delete []rgbquad; |
330 | } | |
331 | ||
332 | // pointer to the image data, use quantized if available | |
f6bcfd97 | 333 | wxUint8 *data = (wxUint8*) image->GetData(); |
1971d23c VZ |
334 | if (q_image) if (q_image->Ok()) data = (wxUint8*) q_image->GetData(); |
335 | ||
f6bcfd97 | 336 | wxUint8 *buffer = new wxUint8[row_width]; |
f6bcfd97 BP |
337 | memset(buffer, 0, row_width); |
338 | int y; unsigned x; | |
1971d23c | 339 | long int pixel; |
f6bcfd97 | 340 | |
05813ada | 341 | for (y = image->GetHeight() -1; y >= 0; y--) |
f6bcfd97 | 342 | { |
05813ada | 343 | if ( format == wxBMP_24BPP ) // 3 bytes per pixel red,green,blue |
1971d23c | 344 | { |
05813ada | 345 | for ( x = 0; x < width; x++ ) |
1971d23c VZ |
346 | { |
347 | pixel = 3*(y*width + x); | |
348 | ||
349 | buffer[3*x ] = data[pixel+2]; | |
350 | buffer[3*x + 1] = data[pixel+1]; | |
351 | buffer[3*x + 2] = data[pixel]; | |
352 | } | |
353 | } | |
354 | else if ((format == wxBMP_8BPP) || // 1 byte per pixel in color | |
355 | (format == wxBMP_8BPP_PALETTE)) | |
356 | { | |
357 | for (x = 0; x < width; x++) | |
358 | { | |
359 | pixel = 3*(y*width + x); | |
b11e8fb6 | 360 | #if wxUSE_PALETTE |
9a431f4d WS |
361 | buffer[x] = (wxUint8)palette->GetPixel( data[pixel], |
362 | data[pixel+1], | |
363 | data[pixel+2] ); | |
b11e8fb6 VZ |
364 | #else |
365 | // FIXME: what should this be? use some std palette maybe? | |
366 | buffer[x] = 0; | |
367 | #endif // wxUSE_PALETTE | |
1971d23c VZ |
368 | } |
369 | } | |
05813ada | 370 | else if ( format == wxBMP_8BPP_GREY ) // 1 byte per pix, rgb ave to grey |
1971d23c VZ |
371 | { |
372 | for (x = 0; x < width; x++) | |
373 | { | |
374 | pixel = 3*(y*width + x); | |
375 | buffer[x] = (wxUint8)(.299*data[pixel] + | |
376 | .587*data[pixel+1] + | |
377 | .114*data[pixel+2]); | |
378 | } | |
379 | } | |
05813ada | 380 | else if ( format == wxBMP_8BPP_RED ) // 1 byte per pixel, red as greys |
f6bcfd97 | 381 | { |
1971d23c VZ |
382 | for (x = 0; x < width; x++) |
383 | { | |
384 | buffer[x] = (wxUint8)data[3*(y*width + x)]; | |
385 | } | |
386 | } | |
05813ada | 387 | else if ( format == wxBMP_4BPP ) // 4 bpp in color |
1971d23c VZ |
388 | { |
389 | for (x = 0; x < width; x+=2) | |
390 | { | |
391 | pixel = 3*(y*width + x); | |
392 | ||
393 | // fill buffer, ignore if > width | |
b11e8fb6 | 394 | #if wxUSE_PALETTE |
9a431f4d | 395 | buffer[x/2] = (wxUint8)( |
b11e8fb6 VZ |
396 | ((wxUint8)palette->GetPixel(data[pixel], |
397 | data[pixel+1], | |
398 | data[pixel+2]) << 4) | | |
399 | (((x+1) > width) | |
400 | ? 0 | |
401 | : ((wxUint8)palette->GetPixel(data[pixel+3], | |
402 | data[pixel+4], | |
9a431f4d | 403 | data[pixel+5]) )) ); |
b11e8fb6 VZ |
404 | #else |
405 | // FIXME: what should this be? use some std palette maybe? | |
406 | buffer[x/2] = 0; | |
407 | #endif // wxUSE_PALETTE | |
1971d23c VZ |
408 | } |
409 | } | |
05813ada | 410 | else if ( format == wxBMP_1BPP ) // 1 bpp in "color" |
1971d23c VZ |
411 | { |
412 | for (x = 0; x < width; x+=8) | |
413 | { | |
414 | pixel = 3*(y*width + x); | |
415 | ||
b11e8fb6 | 416 | #if wxUSE_PALETTE |
9a431f4d WS |
417 | buffer[x/8] = (wxUint8)( |
418 | ((wxUint8)palette->GetPixel(data[pixel], data[pixel+1], data[pixel+2]) << 7) | | |
1971d23c VZ |
419 | (((x+1) > width) ? 0 : ((wxUint8)palette->GetPixel(data[pixel+3], data[pixel+4], data[pixel+5]) << 6)) | |
420 | (((x+2) > width) ? 0 : ((wxUint8)palette->GetPixel(data[pixel+6], data[pixel+7], data[pixel+8]) << 5)) | | |
421 | (((x+3) > width) ? 0 : ((wxUint8)palette->GetPixel(data[pixel+9], data[pixel+10], data[pixel+11]) << 4)) | | |
422 | (((x+4) > width) ? 0 : ((wxUint8)palette->GetPixel(data[pixel+12], data[pixel+13], data[pixel+14]) << 3)) | | |
423 | (((x+5) > width) ? 0 : ((wxUint8)palette->GetPixel(data[pixel+15], data[pixel+16], data[pixel+17]) << 2)) | | |
424 | (((x+6) > width) ? 0 : ((wxUint8)palette->GetPixel(data[pixel+18], data[pixel+19], data[pixel+20]) << 1)) | | |
9a431f4d | 425 | (((x+7) > width) ? 0 : ((wxUint8)palette->GetPixel(data[pixel+21], data[pixel+22], data[pixel+23]) )) ); |
b11e8fb6 VZ |
426 | #else |
427 | // FIXME: what should this be? use some std palette maybe? | |
428 | buffer[x/8] = 0; | |
429 | #endif // wxUSE_PALETTE | |
1971d23c VZ |
430 | } |
431 | } | |
05813ada | 432 | else if ( format == wxBMP_1BPP_BW ) // 1 bpp B&W colormap from red color ONLY |
1971d23c VZ |
433 | { |
434 | for (x = 0; x < width; x+=8) | |
435 | { | |
436 | pixel = 3*(y*width + x); | |
437 | ||
9a431f4d | 438 | buffer[x/8] = (wxUint8)( |
05813ada VS |
439 | (((wxUint8)(data[pixel] /128.)) << 7) | |
440 | (((x+1) > width) ? 0 : (((wxUint8)(data[pixel+3] /128.)) << 6)) | | |
441 | (((x+2) > width) ? 0 : (((wxUint8)(data[pixel+6] /128.)) << 5)) | | |
442 | (((x+3) > width) ? 0 : (((wxUint8)(data[pixel+9] /128.)) << 4)) | | |
443 | (((x+4) > width) ? 0 : (((wxUint8)(data[pixel+12]/128.)) << 3)) | | |
444 | (((x+5) > width) ? 0 : (((wxUint8)(data[pixel+15]/128.)) << 2)) | | |
445 | (((x+6) > width) ? 0 : (((wxUint8)(data[pixel+18]/128.)) << 1)) | | |
9a431f4d | 446 | (((x+7) > width) ? 0 : (((wxUint8)(data[pixel+21]/128.)) )) ); |
1971d23c | 447 | } |
f6bcfd97 | 448 | } |
33ac7e6f | 449 | |
05813ada | 450 | if ( !stream.Write(buffer, row_width) ) |
f6bcfd97 BP |
451 | { |
452 | if (verbose) | |
453 | wxLogError(_("BMP: Couldn't write data.")); | |
454 | delete[] buffer; | |
b11e8fb6 VZ |
455 | #if wxUSE_PALETTE |
456 | delete palette; | |
457 | #endif // wxUSE_PALETTE | |
458 | delete q_image; | |
7beb59f3 | 459 | return false; |
f6bcfd97 BP |
460 | } |
461 | } | |
462 | delete[] buffer; | |
b11e8fb6 VZ |
463 | #if wxUSE_PALETTE |
464 | delete palette; | |
465 | #endif // wxUSE_PALETTE | |
466 | delete q_image; | |
f6bcfd97 | 467 | |
7beb59f3 | 468 | return true; |
f6bcfd97 BP |
469 | } |
470 | ||
471 | ||
05813ada VS |
472 | typedef struct |
473 | { | |
474 | unsigned char r, g, b; | |
475 | } _cmap; | |
f6bcfd97 | 476 | |
574c939e | 477 | bool wxBMPHandler::DoLoadDib(wxImage * image, int width, int height, |
05813ada | 478 | int bpp, int ncolors, int comp, |
1b941f2d | 479 | wxFileOffset bmpOffset, wxInputStream& stream, |
05813ada VS |
480 | bool verbose, bool IsBmp, bool hasPalette) |
481 | { | |
52b64b0a RR |
482 | wxInt32 aDword, rmask = 0, gmask = 0, bmask = 0; |
483 | int rshift = 0, gshift = 0, bshift = 0; | |
9042a017 | 484 | int rbits = 0, gbits = 0, bbits = 0; |
52b64b0a RR |
485 | wxInt32 dbuf[4]; |
486 | wxInt8 bbuf[4]; | |
487 | wxUint8 aByte; | |
488 | wxUint16 aWord; | |
31528cd3 | 489 | |
05813ada | 490 | // allocate space for palette if needed: |
999836aa | 491 | _cmap *cmap; |
31528cd3 | 492 | |
05813ada | 493 | if ( bpp < 16 ) |
e65ed37a | 494 | { |
05813ada VS |
495 | cmap = new _cmap[ncolors]; |
496 | if ( !cmap ) | |
e65ed37a | 497 | { |
58c837a4 | 498 | if (verbose) |
05813ada | 499 | wxLogError(_("BMP: Couldn't allocate memory.")); |
7beb59f3 | 500 | return false; |
e65ed37a RR |
501 | } |
502 | } | |
503 | else | |
504 | cmap = NULL; | |
505 | ||
05813ada | 506 | // destroy existing here instead of: |
52b64b0a | 507 | image->Destroy(); |
05813ada | 508 | image->Create(width, height); |
574c939e | 509 | |
e65ed37a | 510 | unsigned char *ptr = image->GetData(); |
05813ada VS |
511 | |
512 | if ( !ptr ) | |
e65ed37a | 513 | { |
05813ada VS |
514 | if ( verbose ) |
515 | wxLogError( _("BMP: Couldn't allocate memory.") ); | |
516 | if ( cmap ) | |
517 | delete[] cmap; | |
7beb59f3 | 518 | return false; |
e65ed37a | 519 | } |
05813ada VS |
520 | |
521 | // Reading the palette, if it exists: | |
522 | if ( bpp < 16 && ncolors != 0 ) | |
e65ed37a | 523 | { |
3f4fc796 JS |
524 | unsigned char* r = new unsigned char[ncolors]; |
525 | unsigned char* g = new unsigned char[ncolors]; | |
526 | unsigned char* b = new unsigned char[ncolors]; | |
e65ed37a RR |
527 | for (int j = 0; j < ncolors; j++) |
528 | { | |
52b64b0a RR |
529 | if (hasPalette) |
530 | { | |
05813ada VS |
531 | stream.Read(bbuf, 4); |
532 | cmap[j].b = bbuf[0]; | |
533 | cmap[j].g = bbuf[1]; | |
534 | cmap[j].r = bbuf[2]; | |
535 | ||
536 | r[j] = cmap[j].r; | |
537 | g[j] = cmap[j].g; | |
538 | b[j] = cmap[j].b; | |
539 | } | |
52b64b0a RR |
540 | else |
541 | { | |
542 | //used in reading .ico file mask | |
9a431f4d WS |
543 | r[j] = cmap[j].r = |
544 | g[j] = cmap[j].g = | |
545 | b[j] = cmap[j].b = ( j ? 255 : 0 ); | |
52b64b0a RR |
546 | } |
547 | } | |
b11e8fb6 VZ |
548 | |
549 | #if wxUSE_PALETTE | |
3f4fc796 JS |
550 | // Set the palette for the wxImage |
551 | image->SetPalette(wxPalette(ncolors, r, g, b)); | |
b11e8fb6 | 552 | #endif // wxUSE_PALETTE |
3f4fc796 JS |
553 | |
554 | delete[] r; | |
555 | delete[] g; | |
556 | delete[] b; | |
e65ed37a | 557 | } |
05813ada | 558 | else if ( bpp == 16 || bpp == 32 ) |
e65ed37a | 559 | { |
05813ada | 560 | if ( comp == BI_BITFIELDS ) |
e65ed37a RR |
561 | { |
562 | int bit = 0; | |
05813ada | 563 | stream.Read(dbuf, 4 * 3); |
9042a017 | 564 | rmask = wxINT32_SWAP_ON_BE(dbuf[0]); |
05813ada | 565 | gmask = wxINT32_SWAP_ON_BE(dbuf[1]); |
9042a017 VZ |
566 | bmask = wxINT32_SWAP_ON_BE(dbuf[2]); |
567 | // find shift amount (Least significant bit of mask) | |
568 | for (bit = bpp-1; bit>=0; bit--) | |
e65ed37a RR |
569 | { |
570 | if (bmask & (1 << bit)) | |
571 | bshift = bit; | |
572 | if (gmask & (1 << bit)) | |
573 | gshift = bit; | |
574 | if (rmask & (1 << bit)) | |
575 | rshift = bit; | |
576 | } | |
9042a017 VZ |
577 | // Find number of bits in mask (MSB-LSB+1) |
578 | for (bit = 0; bit < bpp; bit++) | |
579 | { | |
580 | if (bmask & (1 << bit)) | |
581 | bbits = bit-bshift+1; | |
582 | if (gmask & (1 << bit)) | |
583 | gbits = bit-gshift+1; | |
584 | if (rmask & (1 << bit)) | |
585 | rbits = bit-rshift+1; | |
586 | } | |
e65ed37a | 587 | } |
05813ada | 588 | else if ( bpp == 16 ) |
e65ed37a RR |
589 | { |
590 | rmask = 0x7C00; | |
591 | gmask = 0x03E0; | |
592 | bmask = 0x001F; | |
593 | rshift = 10; | |
594 | gshift = 5; | |
595 | bshift = 0; | |
9042a017 VZ |
596 | rbits = 5; |
597 | gbits = 5; | |
598 | bbits = 5; | |
e65ed37a | 599 | } |
05813ada | 600 | else if ( bpp == 32 ) |
e65ed37a RR |
601 | { |
602 | rmask = 0x00FF0000; | |
603 | gmask = 0x0000FF00; | |
604 | bmask = 0x000000FF; | |
605 | rshift = 16; | |
606 | gshift = 8; | |
607 | bshift = 0; | |
9042a017 VZ |
608 | rbits = 8; |
609 | gbits = 8; | |
610 | bbits = 8; | |
e65ed37a RR |
611 | } |
612 | } | |
613 | ||
614 | /* | |
615 | * Reading the image data | |
616 | */ | |
05813ada VS |
617 | if ( IsBmp ) |
618 | stream.SeekI(bmpOffset); // else icon, just carry on | |
52b64b0a | 619 | |
e65ed37a RR |
620 | unsigned char *data = ptr; |
621 | ||
622 | /* set the whole image to the background color */ | |
05813ada | 623 | if ( bpp < 16 && (comp == BI_RLE4 || comp == BI_RLE8) ) |
e65ed37a RR |
624 | { |
625 | for (int i = 0; i < width * height; i++) | |
626 | { | |
627 | *ptr++ = cmap[0].r; | |
628 | *ptr++ = cmap[0].g; | |
629 | *ptr++ = cmap[0].b; | |
630 | } | |
631 | ptr = data; | |
632 | } | |
31528cd3 | 633 | |
e65ed37a RR |
634 | int linesize = ((width * bpp + 31) / 32) * 4; |
635 | ||
636 | /* BMPs are stored upside down */ | |
999836aa | 637 | for ( int line = (height - 1); line >= 0; line-- ) |
e65ed37a RR |
638 | { |
639 | int linepos = 0; | |
999836aa | 640 | for ( int column = 0; column < width ; ) |
e65ed37a | 641 | { |
05813ada | 642 | if ( bpp < 16 ) |
e65ed37a | 643 | { |
e65ed37a RR |
644 | linepos++; |
645 | aByte = stream.GetC(); | |
05813ada | 646 | if ( bpp == 1 ) |
e65ed37a | 647 | { |
999836aa | 648 | for (int bit = 0; bit < 8 && column < width; bit++) |
e65ed37a | 649 | { |
999836aa | 650 | int index = ((aByte & (0x80 >> bit)) ? 1 : 0); |
e65ed37a RR |
651 | ptr[poffset] = cmap[index].r; |
652 | ptr[poffset + 1] = cmap[index].g; | |
653 | ptr[poffset + 2] = cmap[index].b; | |
654 | column++; | |
655 | } | |
656 | } | |
05813ada | 657 | else if ( bpp == 4 ) |
e65ed37a | 658 | { |
05813ada | 659 | if ( comp == BI_RLE4 ) |
e65ed37a | 660 | { |
2b5f62a0 VZ |
661 | wxUint8 first; |
662 | first = aByte; | |
663 | aByte = stream.GetC(); | |
664 | if ( first == 0 ) | |
665 | { | |
666 | if ( aByte == 0 ) | |
667 | { | |
668 | if ( column > 0 ) | |
669 | column = width; | |
670 | } | |
671 | else if ( aByte == 1 ) | |
672 | { | |
673 | column = width; | |
674 | line = -1; | |
675 | } | |
676 | else if ( aByte == 2 ) | |
677 | { | |
678 | aByte = stream.GetC(); | |
679 | column += aByte; | |
680 | linepos = column * bpp / 4; | |
681 | aByte = stream.GetC(); | |
682 | line -= aByte; // upside down | |
683 | } | |
684 | else | |
685 | { | |
686 | int absolute = aByte; | |
687 | wxUint8 nibble[2] ; | |
688 | int readBytes = 0 ; | |
689 | for (int k = 0; k < absolute; k++) | |
690 | { | |
691 | if ( !(k % 2 ) ) | |
692 | { | |
693 | ++readBytes ; | |
694 | aByte = stream.GetC(); | |
9a431f4d WS |
695 | nibble[0] = (wxUint8)( (aByte & 0xF0) >> 4 ) ; |
696 | nibble[1] = (wxUint8)( aByte & 0x0F ) ; | |
2b5f62a0 VZ |
697 | } |
698 | ptr[poffset ] = cmap[nibble[k%2]].r; | |
699 | ptr[poffset + 1] = cmap[nibble[k%2]].g; | |
700 | ptr[poffset + 2] = cmap[nibble[k%2]].b; | |
701 | column++; | |
702 | if ( k % 2 ) | |
703 | linepos++; | |
704 | } | |
705 | if ( readBytes & 0x01 ) | |
706 | aByte = stream.GetC(); | |
707 | } | |
708 | } | |
709 | else | |
710 | { | |
711 | wxUint8 nibble[2] ; | |
9a431f4d WS |
712 | nibble[0] = (wxUint8)( (aByte & 0xF0) >> 4 ) ; |
713 | nibble[1] = (wxUint8)( aByte & 0x0F ) ; | |
2b5f62a0 VZ |
714 | |
715 | for ( int l = 0; l < first && column < width; l++ ) | |
716 | { | |
717 | ptr[poffset ] = cmap[nibble[l%2]].r; | |
718 | ptr[poffset + 1] = cmap[nibble[l%2]].g; | |
719 | ptr[poffset + 2] = cmap[nibble[l%2]].b; | |
720 | column++; | |
721 | if ( l % 2 ) | |
722 | linepos++; | |
723 | } | |
724 | } | |
e65ed37a RR |
725 | } |
726 | else | |
727 | { | |
999836aa | 728 | for (int nibble = 0; nibble < 2 && column < width; nibble++) |
e65ed37a | 729 | { |
999836aa | 730 | int index = ((aByte & (0xF0 >> nibble * 4)) >> (!nibble * 4)); |
05813ada | 731 | if ( index >= 16 ) |
e65ed37a RR |
732 | index = 15; |
733 | ptr[poffset] = cmap[index].r; | |
734 | ptr[poffset + 1] = cmap[index].g; | |
735 | ptr[poffset + 2] = cmap[index].b; | |
736 | column++; | |
737 | } | |
738 | } | |
739 | } | |
05813ada | 740 | else if ( bpp == 8 ) |
e65ed37a | 741 | { |
05813ada | 742 | if ( comp == BI_RLE8 ) |
e65ed37a RR |
743 | { |
744 | unsigned char first; | |
745 | first = aByte; | |
746 | aByte = stream.GetC(); | |
05813ada | 747 | if ( first == 0 ) |
e65ed37a | 748 | { |
05813ada | 749 | if ( aByte == 0 ) |
e65ed37a RR |
750 | { |
751 | /* column = width; */ | |
752 | } | |
05813ada | 753 | else if ( aByte == 1 ) |
e65ed37a RR |
754 | { |
755 | column = width; | |
756 | line = -1; | |
757 | } | |
05813ada | 758 | else if ( aByte == 2 ) |
e65ed37a RR |
759 | { |
760 | aByte = stream.GetC(); | |
761 | column += aByte; | |
762 | linepos = column * bpp / 8; | |
763 | aByte = stream.GetC(); | |
764 | line += aByte; | |
765 | } | |
766 | else | |
767 | { | |
768 | int absolute = aByte; | |
769 | for (int k = 0; k < absolute; k++) | |
770 | { | |
771 | linepos++; | |
772 | aByte = stream.GetC(); | |
773 | ptr[poffset ] = cmap[aByte].r; | |
774 | ptr[poffset + 1] = cmap[aByte].g; | |
775 | ptr[poffset + 2] = cmap[aByte].b; | |
776 | column++; | |
777 | } | |
05813ada | 778 | if ( absolute & 0x01 ) |
e65ed37a RR |
779 | aByte = stream.GetC(); |
780 | } | |
781 | } | |
782 | else | |
783 | { | |
05813ada | 784 | for ( int l = 0; l < first && column < width; l++ ) |
e65ed37a RR |
785 | { |
786 | ptr[poffset ] = cmap[aByte].r; | |
787 | ptr[poffset + 1] = cmap[aByte].g; | |
788 | ptr[poffset + 2] = cmap[aByte].b; | |
789 | column++; | |
790 | linepos++; | |
791 | } | |
792 | } | |
793 | } | |
794 | else | |
795 | { | |
796 | ptr[poffset ] = cmap[aByte].r; | |
797 | ptr[poffset + 1] = cmap[aByte].g; | |
798 | ptr[poffset + 2] = cmap[aByte].b; | |
799 | column++; | |
953704c1 | 800 | // linepos += size; seems to be wrong, RR |
e65ed37a RR |
801 | } |
802 | } | |
2b5f62a0 VZ |
803 | } |
804 | else if ( bpp == 24 ) | |
805 | { | |
806 | stream.Read(bbuf, 3); | |
807 | linepos += 3; | |
808 | ptr[poffset ] = (unsigned char)bbuf[2]; | |
809 | ptr[poffset + 1] = (unsigned char)bbuf[1]; | |
810 | ptr[poffset + 2] = (unsigned char)bbuf[0]; | |
811 | column++; | |
812 | } | |
813 | else if ( bpp == 16 ) | |
814 | { | |
815 | unsigned char temp; | |
816 | stream.Read(&aWord, 2); | |
817 | aWord = wxUINT16_SWAP_ON_BE(aWord); | |
818 | linepos += 2; | |
819 | /* use the masks and calculated amonut of shift | |
9042a017 VZ |
820 | to retrieve the color data out of the word. Then |
821 | shift it left by (8 - number of bits) such that | |
822 | the image has the proper dynamic range */ | |
9a431f4d | 823 | temp = (unsigned char)((aWord & rmask) >> rshift << (8-rbits)); |
2b5f62a0 | 824 | ptr[poffset] = temp; |
9a431f4d | 825 | temp = (unsigned char)((aWord & gmask) >> gshift << (8-gbits)); |
2b5f62a0 | 826 | ptr[poffset + 1] = temp; |
9a431f4d | 827 | temp = (unsigned char)((aWord & bmask) >> bshift << (8-bbits)); |
2b5f62a0 VZ |
828 | ptr[poffset + 2] = temp; |
829 | column++; | |
830 | } | |
831 | else | |
832 | { | |
833 | unsigned char temp; | |
834 | stream.Read(&aDword, 4); | |
835 | aDword = wxINT32_SWAP_ON_BE(aDword); | |
836 | linepos += 4; | |
9a431f4d | 837 | temp = (unsigned char)((aDword & rmask) >> rshift); |
2b5f62a0 | 838 | ptr[poffset] = temp; |
9a431f4d | 839 | temp = (unsigned char)((aDword & gmask) >> gshift); |
2b5f62a0 | 840 | ptr[poffset + 1] = temp; |
9a431f4d | 841 | temp = (unsigned char)((aDword & bmask) >> bshift); |
2b5f62a0 VZ |
842 | ptr[poffset + 2] = temp; |
843 | column++; | |
844 | } | |
845 | } | |
846 | while ( (linepos < linesize) && (comp != 1) && (comp != 2) ) | |
847 | { | |
848 | stream.Read(&aByte, 1); | |
849 | linepos += 1; | |
850 | if ( !stream ) | |
851 | break; | |
852 | } | |
853 | } | |
854 | ||
855 | delete[] cmap; | |
856 | ||
7beb59f3 | 857 | image->SetMask(false); |
2b5f62a0 VZ |
858 | |
859 | const wxStreamError err = stream.GetLastError(); | |
860 | return err == wxSTREAM_NO_ERROR || err == wxSTREAM_EOF; | |
52b64b0a RR |
861 | } |
862 | ||
574c939e | 863 | bool wxBMPHandler::LoadDib(wxImage *image, wxInputStream& stream, |
05813ada | 864 | bool verbose, bool IsBmp) |
52b64b0a | 865 | { |
52b64b0a RR |
866 | wxUint16 aWord; |
867 | wxInt32 dbuf[4]; | |
868 | wxInt8 bbuf[4]; | |
52b64b0a | 869 | |
30984dea | 870 | wxFileOffset offset = 0; // keep gcc quiet |
52b64b0a RR |
871 | if ( IsBmp ) |
872 | { | |
873 | // read the header off the .BMP format file | |
874 | ||
875 | offset = stream.TellI(); | |
67c20e13 VZ |
876 | if (offset == wxInvalidOffset) |
877 | offset = 0; | |
52b64b0a | 878 | |
05813ada VS |
879 | stream.Read(bbuf, 2); |
880 | stream.Read(dbuf, 16); | |
52b64b0a RR |
881 | } |
882 | else | |
883 | { | |
05813ada | 884 | stream.Read(dbuf, 4); |
52b64b0a RR |
885 | } |
886 | #if 0 // unused | |
05813ada | 887 | wxInt32 size = wxINT32_SWAP_ON_BE(dbuf[0]); |
52b64b0a | 888 | #endif |
05813ada | 889 | offset = offset + wxINT32_SWAP_ON_BE(dbuf[2]); |
52b64b0a RR |
890 | |
891 | stream.Read(dbuf, 4 * 2); | |
ecae80b2 WS |
892 | int width = wxINT32_SWAP_ON_BE((int)dbuf[0]); |
893 | int height = wxINT32_SWAP_ON_BE((int)dbuf[1]); | |
05813ada | 894 | if ( !IsBmp)height = height / 2; // for icons divide by 2 |
574c939e | 895 | |
05813ada | 896 | if ( width > 32767 ) |
52b64b0a RR |
897 | { |
898 | if (verbose) | |
899 | wxLogError( _("DIB Header: Image width > 32767 pixels for file.") ); | |
7beb59f3 | 900 | return false; |
52b64b0a | 901 | } |
05813ada | 902 | if ( height > 32767 ) |
52b64b0a RR |
903 | { |
904 | if (verbose) | |
905 | wxLogError( _("DIB Header: Image height > 32767 pixels for file.") ); | |
7beb59f3 | 906 | return false; |
52b64b0a RR |
907 | } |
908 | ||
05813ada | 909 | stream.Read(&aWord, 2); |
52b64b0a RR |
910 | /* |
911 | TODO | |
912 | int planes = (int)wxUINT16_SWAP_ON_BE( aWord ); | |
913 | */ | |
05813ada | 914 | stream.Read(&aWord, 2); |
ecae80b2 | 915 | int bpp = wxUINT16_SWAP_ON_BE((int)aWord); |
05813ada | 916 | if ( bpp != 1 && bpp != 4 && bpp != 8 && bpp != 16 && bpp != 24 && bpp != 32 ) |
52b64b0a RR |
917 | { |
918 | if (verbose) | |
919 | wxLogError( _("DIB Header: Unknown bitdepth in file.") ); | |
7beb59f3 | 920 | return false; |
52b64b0a RR |
921 | } |
922 | ||
05813ada | 923 | stream.Read(dbuf, 4 * 4); |
ecae80b2 | 924 | int comp = wxINT32_SWAP_ON_BE((int)dbuf[0]); |
574c939e | 925 | if ( comp != BI_RGB && comp != BI_RLE4 && comp != BI_RLE8 && |
05813ada | 926 | comp != BI_BITFIELDS ) |
52b64b0a RR |
927 | { |
928 | if (verbose) | |
929 | wxLogError( _("DIB Header: Unknown encoding in file.") ); | |
7beb59f3 | 930 | return false; |
52b64b0a RR |
931 | } |
932 | ||
05813ada | 933 | stream.Read(dbuf, 4 * 2); |
37ba70a5 | 934 | |
ecae80b2 | 935 | int ncolors = wxINT32_SWAP_ON_BE( (int)dbuf[0] ); |
52b64b0a RR |
936 | if (ncolors == 0) |
937 | ncolors = 1 << bpp; | |
938 | /* some more sanity checks */ | |
939 | if (((comp == BI_RLE4) && (bpp != 4)) || | |
940 | ((comp == BI_RLE8) && (bpp != 8)) || | |
941 | ((comp == BI_BITFIELDS) && (bpp != 16 && bpp != 32))) | |
942 | { | |
943 | if (verbose) | |
944 | wxLogError( _("DIB Header: Encoding doesn't match bitdepth.") ); | |
7beb59f3 | 945 | return false; |
52b64b0a RR |
946 | } |
947 | ||
948 | //read DIB; this is the BMP image or the XOR part of an icon image | |
05813ada | 949 | if ( !DoLoadDib(image, width, height, bpp, ncolors, comp, offset, stream, |
7beb59f3 | 950 | verbose, IsBmp, true) ) |
52b64b0a RR |
951 | { |
952 | if (verbose) | |
eab77b59 | 953 | wxLogError( _("Error in reading image DIB.") ); |
7beb59f3 | 954 | return false; |
52b64b0a RR |
955 | } |
956 | ||
957 | if ( !IsBmp ) | |
958 | { | |
959 | //read Icon mask which is monochrome | |
960 | //there is no palette, so we will create one | |
1f5b2017 | 961 | wxImage mask; |
05813ada | 962 | if ( !DoLoadDib(&mask, width, height, 1, 2, BI_RGB, offset, stream, |
7beb59f3 | 963 | verbose, IsBmp, false) ) |
52b64b0a RR |
964 | { |
965 | if (verbose) | |
966 | wxLogError( _("ICO: Error in reading mask DIB.") ); | |
7beb59f3 | 967 | return false; |
52b64b0a | 968 | } |
1f5b2017 | 969 | image->SetMaskFromImage(mask, 255, 255, 255); |
52b64b0a RR |
970 | |
971 | } | |
05813ada | 972 | |
37ba70a5 VZ |
973 | // the resolution in the bitmap header is in meters, convert to centimeters |
974 | image->SetOption(wxIMAGE_OPTION_RESOLUTIONUNIT, wxIMAGE_RESOLUTION_CM); | |
975 | image->SetOption(wxIMAGE_OPTION_RESOLUTIONX, dbuf[2]/100); | |
976 | image->SetOption(wxIMAGE_OPTION_RESOLUTIONY, dbuf[3]/100); | |
977 | ||
7beb59f3 | 978 | return true; |
e65ed37a RR |
979 | } |
980 | ||
574c939e | 981 | bool wxBMPHandler::LoadFile(wxImage *image, wxInputStream& stream, |
05813ada VS |
982 | bool verbose, int WXUNUSED(index)) |
983 | { | |
984 | // Read a single DIB fom the file: | |
7beb59f3 | 985 | return LoadDib(image, stream, verbose, true/*isBmp*/); |
05813ada | 986 | } |
52b64b0a | 987 | |
05813ada | 988 | bool wxBMPHandler::DoCanRead(wxInputStream& stream) |
52b64b0a | 989 | { |
05813ada VS |
990 | unsigned char hdr[2]; |
991 | ||
79fa2374 | 992 | if ( !stream.Read(hdr, WXSIZEOF(hdr)) ) |
7beb59f3 | 993 | return false; |
79fa2374 | 994 | |
79fa2374 VZ |
995 | // do we have the BMP file signature? |
996 | return hdr[0] == 'B' && hdr[1] == 'M'; | |
52b64b0a RR |
997 | } |
998 | ||
e30285ab VZ |
999 | #endif // wxUSE_STREAMS |
1000 | ||
52b64b0a | 1001 | |
658974ae | 1002 | #if wxUSE_ICO_CUR |
05813ada VS |
1003 | //----------------------------------------------------------------------------- |
1004 | // wxICOHandler | |
1005 | //----------------------------------------------------------------------------- | |
1006 | ||
1007 | IMPLEMENT_DYNAMIC_CLASS(wxICOHandler, wxBMPHandler) | |
1008 | ||
e30285ab VZ |
1009 | #if wxUSE_STREAMS |
1010 | ||
05813ada VS |
1011 | struct ICONDIRENTRY |
1012 | { | |
1013 | wxUint8 bWidth; // Width of the image | |
1014 | wxUint8 bHeight; // Height of the image (times 2) | |
1015 | wxUint8 bColorCount; // Number of colors in image (0 if >=8bpp) | |
1016 | wxUint8 bReserved; // Reserved | |
1017 | ||
1018 | // these two are different in icons and cursors: | |
1019 | // icon or cursor | |
1020 | wxUint16 wPlanes; // Color Planes or XHotSpot | |
1021 | wxUint16 wBitCount; // Bits per pixel or YHotSpot | |
1022 | ||
1023 | wxUint32 dwBytesInRes; // how many bytes in this resource? | |
1024 | wxUint32 dwImageOffset; // where in the file is this image | |
1025 | }; | |
1026 | ||
1027 | struct ICONDIR | |
1028 | { | |
1029 | wxUint16 idReserved; // Reserved | |
1030 | wxUint16 idType; // resource type (1 for icons, 2 for cursors) | |
1031 | wxUint16 idCount; // how many images? | |
1032 | }; | |
1033 | ||
1034 | ||
1035 | bool wxICOHandler::SaveFile(wxImage *image, | |
1036 | wxOutputStream& stream, | |
1037 | bool verbose) | |
1038 | ||
52b64b0a | 1039 | { |
05813ada VS |
1040 | //sanity check; icon must be less than 127 pixels high and 255 wide |
1041 | if ( image->GetHeight () > 127 ) | |
1042 | { | |
1043 | if ( verbose ) | |
1044 | wxLogError(_("ICO: Image too tall for an icon.")); | |
7beb59f3 | 1045 | return false; |
05813ada VS |
1046 | } |
1047 | if ( image->GetWidth () > 255 ) | |
1048 | { | |
1049 | if ( verbose ) | |
1050 | wxLogError(_("ICO: Image too wide for an icon.")); | |
7beb59f3 | 1051 | return false; |
05813ada VS |
1052 | } |
1053 | ||
1229a1e7 | 1054 | const int images = 1; // only generate one image |
05813ada | 1055 | |
574c939e | 1056 | // VS: This is a hack of sort - since ICO and CUR files are almost |
05813ada VS |
1057 | // identical, we have all the meat in wxICOHandler and check for |
1058 | // the actual (handler) type when the code has to distinguish between | |
1059 | // the two formats | |
1060 | int type = (this->GetType() == wxBITMAP_TYPE_CUR) ? 2 : 1; | |
1061 | ||
1062 | // write a header, (ICONDIR) | |
1063 | // Calculate the header size | |
1064 | wxUint32 offset = 3 * sizeof(wxUint16); | |
1065 | ||
1066 | ICONDIR IconDir; | |
1067 | IconDir.idReserved = 0; | |
ecae80b2 WS |
1068 | IconDir.idType = wxUINT16_SWAP_ON_BE((wxUint16)type); |
1069 | IconDir.idCount = wxUINT16_SWAP_ON_BE((wxUint16)images); | |
05813ada VS |
1070 | stream.Write(&IconDir.idReserved, sizeof(IconDir.idReserved)); |
1071 | stream.Write(&IconDir.idType, sizeof(IconDir.idType)); | |
1072 | stream.Write(&IconDir.idCount, sizeof(IconDir.idCount)); | |
1073 | if ( !stream.IsOk() ) | |
1074 | { | |
1075 | if ( verbose ) | |
1076 | wxLogError(_("ICO: Error writing the image file!")); | |
7beb59f3 | 1077 | return false; |
05813ada VS |
1078 | } |
1079 | ||
1080 | // for each iamage write a description ICONDIRENTRY: | |
1081 | ICONDIRENTRY icondirentry; | |
1229a1e7 | 1082 | for (int img = 0; img < images; img++) |
05813ada VS |
1083 | { |
1084 | wxImage mask; | |
1085 | ||
1086 | if ( image->HasMask() ) | |
574c939e | 1087 | { |
05813ada VS |
1088 | // make another image with black/white: |
1089 | mask = image->ConvertToMono (image->GetMaskRed(), image->GetMaskGreen(), image->GetMaskBlue() ); | |
1090 | ||
1091 | // now we need to change the masked regions to black: | |
1092 | unsigned char r = image->GetMaskRed(); | |
1093 | unsigned char g = image->GetMaskGreen(); | |
1094 | unsigned char b = image->GetMaskBlue(); | |
1095 | if ( (r != 0) || (g != 0) || (b != 0) ) | |
1096 | { | |
1097 | // Go round and apply black to the masked bits: | |
1098 | int i, j; | |
1099 | for (i = 0; i < mask.GetWidth(); i++) | |
1100 | { | |
1101 | for (j = 0; j < mask.GetHeight(); j++) | |
1102 | { | |
574c939e KB |
1103 | if ((r == mask.GetRed(i, j)) && |
1104 | (g == mask.GetGreen(i, j))&& | |
05813ada VS |
1105 | (b == mask.GetBlue(i, j)) ) |
1106 | image->SetRGB(i, j, 0, 0, 0 ); | |
1107 | } | |
1108 | } | |
1109 | } | |
1110 | } | |
1111 | else | |
1112 | { | |
1113 | // just make a black mask all over: | |
1114 | mask = image->Copy(); | |
1229a1e7 WS |
1115 | int i, j; |
1116 | for (i = 0; i < mask.GetWidth(); i++) | |
05813ada | 1117 | for (j = 0; j < mask.GetHeight(); j++) |
1229a1e7 | 1118 | mask.SetRGB(i, j, 0, 0, 0 ); |
05813ada VS |
1119 | } |
1120 | // Set the formats for image and mask | |
1121 | // (Windows never saves with more than 8 colors): | |
fd94e8aa | 1122 | image->SetOption(wxIMAGE_OPTION_BMP_FORMAT, wxBMP_8BPP); |
05813ada VS |
1123 | |
1124 | // monochome bitmap: | |
fd94e8aa | 1125 | mask.SetOption(wxIMAGE_OPTION_BMP_FORMAT, wxBMP_1BPP_BW); |
7beb59f3 WS |
1126 | bool IsBmp = false; |
1127 | bool IsMask = false; | |
05813ada VS |
1128 | |
1129 | //calculate size and offset of image and mask | |
1130 | wxCountingOutputStream cStream; | |
5cb598ae | 1131 | bool bResult = SaveDib(image, cStream, verbose, IsBmp, IsMask); |
05813ada VS |
1132 | if ( !bResult ) |
1133 | { | |
1134 | if ( verbose ) | |
1135 | wxLogError(_("ICO: Error writing the image file!")); | |
7beb59f3 | 1136 | return false; |
05813ada | 1137 | } |
7beb59f3 | 1138 | IsMask = true; |
05813ada VS |
1139 | |
1140 | bResult = SaveDib(&mask, cStream, verbose, IsBmp, IsMask); | |
1141 | if ( !bResult ) | |
1142 | { | |
1143 | if ( verbose ) | |
1144 | wxLogError(_("ICO: Error writing the image file!")); | |
7beb59f3 | 1145 | return false; |
05813ada VS |
1146 | } |
1147 | wxUint32 Size = cStream.GetSize(); | |
1148 | ||
b7cacb43 | 1149 | // wxCountingOutputStream::IsOk() always returns true for now and this |
05813ada VS |
1150 | // "if" provokes VC++ warnings in optimized build |
1151 | #if 0 | |
1152 | if ( !cStream.Ok() ) | |
1153 | { | |
1154 | if ( verbose ) | |
1155 | wxLogError(_("ICO: Error writing the image file!")); | |
7beb59f3 | 1156 | return false; |
05813ada VS |
1157 | } |
1158 | #endif // 0 | |
1159 | ||
1160 | offset = offset + sizeof(ICONDIRENTRY); | |
1161 | ||
f12a90c7 DE |
1162 | icondirentry.bWidth = (wxUint8)image->GetWidth(); |
1163 | icondirentry.bHeight = (wxUint8)(2 * image->GetHeight()); | |
05813ada VS |
1164 | icondirentry.bColorCount = 0; |
1165 | icondirentry.bReserved = 0; | |
1166 | icondirentry.wPlanes = wxUINT16_SWAP_ON_BE(1); | |
1167 | icondirentry.wBitCount = wxUINT16_SWAP_ON_BE(wxBMP_8BPP); | |
1168 | if ( type == 2 /*CUR*/) | |
1169 | { | |
fd94e8aa VS |
1170 | int hx = image->HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) ? |
1171 | image->GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X) : | |
05813ada | 1172 | image->GetWidth() / 2; |
fd94e8aa VS |
1173 | int hy = image->HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) ? |
1174 | image->GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y) : | |
05813ada VS |
1175 | image->GetHeight() / 2; |
1176 | ||
1177 | // actually write the values of the hot spot here: | |
1178 | icondirentry.wPlanes = wxUINT16_SWAP_ON_BE((wxUint16)hx); | |
1179 | icondirentry.wBitCount = wxUINT16_SWAP_ON_BE((wxUint16)hy); | |
1180 | } | |
1181 | icondirentry.dwBytesInRes = wxUINT32_SWAP_ON_BE(Size); | |
1182 | icondirentry.dwImageOffset = wxUINT32_SWAP_ON_BE(offset); | |
1183 | ||
1184 | // increase size to allow for the data written: | |
1185 | offset += Size; | |
1186 | ||
1187 | // write to stream: | |
1188 | stream.Write(&icondirentry.bWidth, sizeof(icondirentry.bWidth)); | |
1189 | stream.Write(&icondirentry.bHeight, sizeof(icondirentry.bHeight)); | |
1190 | stream.Write(&icondirentry.bColorCount, sizeof(icondirentry.bColorCount)); | |
1191 | stream.Write(&icondirentry.bReserved, sizeof(icondirentry.bReserved)); | |
1192 | stream.Write(&icondirentry.wPlanes, sizeof(icondirentry.wPlanes)); | |
1193 | stream.Write(&icondirentry.wBitCount, sizeof(icondirentry.wBitCount)); | |
1194 | stream.Write(&icondirentry.dwBytesInRes, sizeof(icondirentry.dwBytesInRes)); | |
1195 | stream.Write(&icondirentry.dwImageOffset, sizeof(icondirentry.dwImageOffset)); | |
1196 | if ( !stream.IsOk() ) | |
1197 | { | |
1198 | if ( verbose ) | |
1199 | wxLogError(_("ICO: Error writing the image file!")); | |
7beb59f3 | 1200 | return false; |
05813ada VS |
1201 | } |
1202 | ||
1203 | // actually save it: | |
7beb59f3 | 1204 | IsMask = false; |
05813ada VS |
1205 | bResult = SaveDib(image, stream, verbose, IsBmp, IsMask); |
1206 | if ( !bResult ) | |
1207 | { | |
1208 | if ( verbose ) | |
1209 | wxLogError(_("ICO: Error writing the image file!")); | |
7beb59f3 | 1210 | return false; |
05813ada | 1211 | } |
7beb59f3 | 1212 | IsMask = true; |
05813ada VS |
1213 | |
1214 | bResult = SaveDib(&mask, stream, verbose, IsBmp, IsMask); | |
1215 | if ( !bResult ) | |
1216 | { | |
1217 | if ( verbose ) | |
1218 | wxLogError(_("ICO: Error writing the image file!")); | |
7beb59f3 | 1219 | return false; |
05813ada VS |
1220 | } |
1221 | ||
1222 | } // end of for loop | |
1223 | ||
7beb59f3 | 1224 | return true; |
05813ada VS |
1225 | } |
1226 | ||
574c939e | 1227 | bool wxICOHandler::LoadFile(wxImage *image, wxInputStream& stream, |
05813ada | 1228 | bool verbose, int index) |
658974ae VS |
1229 | { |
1230 | stream.SeekI(0); | |
1231 | return DoLoadFile(image, stream, verbose, index); | |
1232 | } | |
1233 | ||
574c939e | 1234 | bool wxICOHandler::DoLoadFile(wxImage *image, wxInputStream& stream, |
5c235ea0 | 1235 | bool WXUNUSED(verbose), int index) |
05813ada | 1236 | { |
5cb598ae WS |
1237 | bool bResult wxDUMMY_INITIALIZE(false); |
1238 | bool IsBmp = false; | |
52b64b0a | 1239 | |
05813ada | 1240 | ICONDIR IconDir; |
658974ae | 1241 | |
1b941f2d | 1242 | wxFileOffset iPos = stream.TellI(); |
05813ada VS |
1243 | stream.Read(&IconDir, sizeof(IconDir)); |
1244 | wxUint16 nIcons = wxUINT16_SWAP_ON_BE(IconDir.idCount); | |
1245 | // nType is 1 for Icons, 2 for Cursors: | |
1246 | wxUint16 nType = wxUINT16_SWAP_ON_BE(IconDir.idType); | |
574c939e | 1247 | |
05813ada VS |
1248 | // loop round the icons and choose the best one: |
1249 | ICONDIRENTRY *pIconDirEntry = new ICONDIRENTRY[nIcons]; | |
1250 | ICONDIRENTRY *pCurrentEntry = pIconDirEntry; | |
1251 | int wMax = 0; | |
1252 | int colmax = 0; | |
1253 | int iSel = wxNOT_FOUND; | |
1254 | ||
1255 | for (int i = 0; i < nIcons; i++ ) | |
52b64b0a RR |
1256 | { |
1257 | stream.Read(pCurrentEntry, sizeof(ICONDIRENTRY)); | |
05813ada VS |
1258 | // bHeight and bColorCount are wxUint8 |
1259 | if ( pCurrentEntry->bWidth >= wMax ) | |
52b64b0a | 1260 | { |
05813ada VS |
1261 | // see if we have more colors, ==0 indicates > 8bpp: |
1262 | if ( pCurrentEntry->bColorCount == 0 ) | |
1263 | pCurrentEntry->bColorCount = 255; | |
1264 | if ( pCurrentEntry->bColorCount >= colmax ) | |
574c939e | 1265 | { |
05813ada VS |
1266 | iSel = i; |
1267 | wMax = pCurrentEntry->bWidth; | |
1268 | colmax = pCurrentEntry->bColorCount; | |
52b64b0a RR |
1269 | } |
1270 | } | |
05813ada VS |
1271 | pCurrentEntry++; |
1272 | } | |
574c939e | 1273 | |
05813ada VS |
1274 | if ( index != -1 ) |
1275 | { | |
1276 | // VS: Note that we *have* to run the loop above even if index != -1, because | |
1277 | // it reads ICONDIRENTRies. | |
1278 | iSel = index; | |
52b64b0a | 1279 | } |
574c939e | 1280 | |
05813ada | 1281 | if ( iSel == wxNOT_FOUND || iSel < 0 || iSel >= nIcons ) |
52b64b0a | 1282 | { |
05813ada | 1283 | wxLogError(_("ICO: Invalid icon index.")); |
5cb598ae | 1284 | bResult = false; |
52b64b0a RR |
1285 | } |
1286 | else | |
1287 | { | |
05813ada VS |
1288 | // seek to selected icon: |
1289 | pCurrentEntry = pIconDirEntry + iSel; | |
658974ae | 1290 | stream.SeekI(iPos + wxUINT32_SWAP_ON_BE(pCurrentEntry->dwImageOffset), wxFromStart); |
7beb59f3 | 1291 | bResult = LoadDib(image, stream, true, IsBmp); |
658974ae VS |
1292 | bool bIsCursorType = (this->GetType() == wxBITMAP_TYPE_CUR) || (this->GetType() == wxBITMAP_TYPE_ANI); |
1293 | if ( bResult && bIsCursorType && nType == 2 ) | |
05813ada VS |
1294 | { |
1295 | // it is a cursor, so let's set the hotspot: | |
fd94e8aa VS |
1296 | image->SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, wxUINT16_SWAP_ON_BE(pCurrentEntry->wPlanes)); |
1297 | image->SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, wxUINT16_SWAP_ON_BE(pCurrentEntry->wBitCount)); | |
05813ada | 1298 | } |
52b64b0a | 1299 | } |
05813ada VS |
1300 | delete[] pIconDirEntry; |
1301 | return bResult; | |
52b64b0a RR |
1302 | } |
1303 | ||
649d13e8 | 1304 | int wxICOHandler::GetImageCount(wxInputStream& stream) |
0828c087 | 1305 | { |
05813ada | 1306 | ICONDIR IconDir; |
1b941f2d | 1307 | wxFileOffset iPos = stream.TellI(); |
05813ada VS |
1308 | stream.SeekI(0); |
1309 | stream.Read(&IconDir, sizeof(IconDir)); | |
1310 | wxUint16 nIcons = wxUINT16_SWAP_ON_BE(IconDir.idCount); | |
658974ae | 1311 | stream.SeekI(iPos); |
05813ada | 1312 | return (int)nIcons; |
0828c087 VS |
1313 | } |
1314 | ||
05813ada | 1315 | bool wxICOHandler::DoCanRead(wxInputStream& stream) |
52b64b0a | 1316 | { |
2b5f62a0 | 1317 | stream.SeekI(0); |
52b64b0a | 1318 | unsigned char hdr[4]; |
39d16996 | 1319 | if ( !stream.Read(hdr, WXSIZEOF(hdr)) ) |
7beb59f3 | 1320 | return false; |
39d16996 VZ |
1321 | |
1322 | // hdr[2] is one for an icon and two for a cursor | |
1323 | return hdr[0] == '\0' && hdr[1] == '\0' && hdr[2] == '\1' && hdr[3] == '\0'; | |
52b64b0a RR |
1324 | } |
1325 | ||
e30285ab | 1326 | #endif // wxUSE_STREAMS |
e65ed37a | 1327 | |
05813ada VS |
1328 | |
1329 | //----------------------------------------------------------------------------- | |
1330 | // wxCURHandler | |
1331 | //----------------------------------------------------------------------------- | |
1332 | ||
1333 | IMPLEMENT_DYNAMIC_CLASS(wxCURHandler, wxICOHandler) | |
1334 | ||
e30285ab VZ |
1335 | #if wxUSE_STREAMS |
1336 | ||
05813ada VS |
1337 | bool wxCURHandler::DoCanRead(wxInputStream& stream) |
1338 | { | |
8dcfaa40 | 1339 | stream.SeekI(0); |
05813ada | 1340 | unsigned char hdr[4]; |
39d16996 | 1341 | if ( !stream.Read(hdr, WXSIZEOF(hdr)) ) |
7beb59f3 | 1342 | return false; |
39d16996 VZ |
1343 | |
1344 | // hdr[2] is one for an icon and two for a cursor | |
1345 | return hdr[0] == '\0' && hdr[1] == '\0' && hdr[2] == '\2' && hdr[3] == '\0'; | |
05813ada VS |
1346 | } |
1347 | ||
e30285ab VZ |
1348 | #endif // wxUSE_STREAMS |
1349 | ||
658974ae VS |
1350 | //----------------------------------------------------------------------------- |
1351 | // wxANIHandler | |
1352 | //----------------------------------------------------------------------------- | |
1353 | ||
1354 | IMPLEMENT_DYNAMIC_CLASS(wxANIHandler, wxCURHandler) | |
1355 | ||
e30285ab VZ |
1356 | #if wxUSE_STREAMS |
1357 | ||
574c939e | 1358 | bool wxANIHandler::LoadFile(wxImage *image, wxInputStream& stream, |
72045d57 | 1359 | bool WXUNUSED(verbose), int index) |
658974ae | 1360 | { |
72045d57 VZ |
1361 | wxANIDecoder decoder; |
1362 | if (!decoder.Load(stream)) | |
7beb59f3 | 1363 | return false; |
658974ae | 1364 | |
72045d57 | 1365 | return decoder.ConvertToImage(index != -1 ? (size_t)index : 0, image); |
658974ae VS |
1366 | } |
1367 | ||
1368 | bool wxANIHandler::DoCanRead(wxInputStream& stream) | |
1369 | { | |
72045d57 VZ |
1370 | wxANIDecoder decod; |
1371 | return decod.CanRead(stream); | |
658974ae VS |
1372 | } |
1373 | ||
1374 | int wxANIHandler::GetImageCount(wxInputStream& stream) | |
1375 | { | |
72045d57 VZ |
1376 | wxANIDecoder decoder; |
1377 | if (!decoder.Load(stream)) | |
658974ae VS |
1378 | return wxNOT_FOUND; |
1379 | ||
72045d57 | 1380 | return decoder.GetFrameCount(); |
658974ae VS |
1381 | } |
1382 | ||
e30285ab VZ |
1383 | #endif // wxUSE_STREAMS |
1384 | ||
658974ae VS |
1385 | #endif // wxUSE_ICO_CUR |
1386 | ||
e30285ab | 1387 | #endif // wxUSE_IMAGE |