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