]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | /******************************************************************************* |
2 | * * | |
3 | * MODULE : DIB.CC * | |
4 | * * | |
5 | * DESCRIPTION : Routines for dealing with Device Independent Bitmaps. * | |
6 | * * | |
7 | * FUNCTIONS : * | |
8 | * * | |
ef3ab009 | 9 | * wxReadDIB() - Reads a DIB * |
2bda0e17 KB |
10 | * * |
11 | * WriteDIB() - Writes a global handle in CF_DIB format* | |
12 | * to a file. * | |
13 | * * | |
448af9a4 | 14 | * wxPaletteSize() - Calculates the palette size in bytes * |
2bda0e17 KB |
15 | * of given DIB * |
16 | * * | |
17 | * DibNumColors() - Determines the number of colors in DIB * | |
18 | * * | |
19 | * DibFromBitmap() - Creates a DIB repr. the DDB passed in. * | |
20 | * * | |
21 | * * | |
22 | * lread() - Private routine to read more than 64k * | |
23 | * * | |
24 | * lwrite() - Private routine to write more than 64k * | |
25 | * * | |
26 | *******************************************************************************/ | |
27 | ||
28 | // For compilers that support precompilation, includes "wx.h". | |
2bda0e17 KB |
29 | #include "wx/wxprec.h" |
30 | ||
31 | #if defined(__BORLANDC__) | |
32 | #pragma hdrstop | |
33 | #endif | |
34 | ||
35 | #ifndef WX_PRECOMP | |
36 | #include "wx/setup.h" | |
37 | #include "wx/defs.h" | |
2432b92d | 38 | #include "wx/bitmap.h" |
2bda0e17 KB |
39 | #endif |
40 | ||
41 | #include <windows.h> | |
42 | #include <stdio.h> | |
43 | #include <stdlib.h> | |
ce3ed50d JS |
44 | |
45 | #if !defined(__MWERKS__) && !defined(__SALFORDC__) | |
2bda0e17 | 46 | #include <memory.h> |
17dff81c | 47 | #endif |
2bda0e17 KB |
48 | |
49 | #include "wx/msw/dib.h" | |
50 | ||
57c208c5 | 51 | #ifndef __TWIN32__ |
65fd5cb0 | 52 | #ifndef wxUSE_NORLANDER_HEADERS |
2bda0e17 KB |
53 | #ifdef __GNUWIN32__ |
54 | #include "wx/msw/gnuwin32/extra.h" | |
55 | #endif | |
57c208c5 | 56 | #endif |
65fd5cb0 | 57 | #endif |
2bda0e17 KB |
58 | |
59 | #ifndef SEEK_CUR | |
60 | /* flags for _lseek */ | |
61 | #define SEEK_CUR 1 | |
62 | #define SEEK_END 2 | |
63 | #define SEEK_SET 0 | |
64 | #endif | |
65 | ||
66 | #define MAXREAD 32768 /* Number of bytes to be read during */ | |
67 | /* each read operation. */ | |
68 | ||
69 | /* Header signatutes for various resources */ | |
70 | #define BFT_ICON 0x4349 /* 'IC' */ | |
71 | #define BFT_BITMAP 0x4d42 /* 'BM' */ | |
e90c1d2a | 72 | #define BFT_CURSOR 0x5450 /* 'PT(' */ |
2bda0e17 KB |
73 | |
74 | /* macro to determine if resource is a DIB */ | |
75 | #define ISDIB(bft) ((bft) == BFT_BITMAP) | |
76 | ||
77 | /* Macro to align given value to the closest DWORD (unsigned long ) */ | |
78 | #define ALIGNULONG(i) ((i+3)/4*4) | |
79 | ||
80 | /* Macro to determine to round off the given value to the closest byte */ | |
81 | #define WIDTHBYTES(i) ((i+31)/32*4) | |
82 | ||
83 | #define PALVERSION 0x300 | |
84 | #define MAXPALETTE 256 /* max. # supported palette entries */ | |
85 | ||
73974df1 VZ |
86 | static DWORD PASCAL lread(int fh, VOID FAR *pv, DWORD ul); |
87 | static DWORD PASCAL lwrite(int fh, VOID FAR *pv, DWORD ul); | |
88 | ||
89 | static BOOL WriteDIB (LPTSTR szFile,HANDLE hdib); | |
448af9a4 | 90 | WORD wxPaletteSize (VOID FAR * pv); // This is non-static as some apps use it externally |
73974df1 VZ |
91 | static WORD DibNumColors (VOID FAR * pv); |
92 | // HANDLE DibFromBitmap (HBITMAP hbm, DWORD biStyle, WORD biBits, HPALETTE hpal); | |
93 | static BOOL PASCAL MakeBitmapAndPalette(HDC,HANDLE,HPALETTE *,HBITMAP *); | |
2bda0e17 KB |
94 | |
95 | /**************************************************************************** | |
96 | * * | |
97 | * FUNCTION : WriteDIB(LPSTR szFile,HANDLE hdib) * | |
98 | * * | |
99 | * PURPOSE : Write a global handle in CF_DIB format to a file. * | |
100 | * * | |
101 | * RETURNS : TRUE - if successful. * | |
102 | * FALSE - otherwise * | |
103 | * * | |
104 | ****************************************************************************/ | |
105 | ||
ef3ab009 | 106 | static BOOL WriteDIB(LPTSTR szFile, HANDLE hdib) |
2bda0e17 KB |
107 | { |
108 | BITMAPFILEHEADER hdr; | |
109 | LPBITMAPINFOHEADER lpbi; | |
110 | int fh; | |
111 | OFSTRUCT of; | |
112 | ||
113 | if (!hdib) | |
114 | return FALSE; | |
115 | ||
1fd8a450 | 116 | fh = OpenFile(wxFNCONV(szFile), &of, OF_CREATE | OF_READWRITE); |
2bda0e17 KB |
117 | if (fh == -1) |
118 | return FALSE; | |
119 | ||
120 | #ifdef __WINDOWS_386__ | |
121 | lpbi = (LPBITMAPINFOHEADER) MK_FP32(GlobalLock(hdib)); | |
122 | #else | |
123 | lpbi = (LPBITMAPINFOHEADER) GlobalLock(hdib); | |
124 | #endif | |
125 | /* Fill in the fields of the file header */ | |
126 | hdr.bfType = BFT_BITMAP; | |
127 | hdr.bfSize = GlobalSize(hdib) + sizeof(BITMAPFILEHEADER); | |
128 | hdr.bfReserved1 = 0; | |
129 | hdr.bfReserved2 = 0; | |
40c7a5fc | 130 | hdr.bfOffBits = (DWORD) sizeof(BITMAPFILEHEADER) + lpbi->biSize + |
448af9a4 | 131 | wxPaletteSize(lpbi); |
2bda0e17 KB |
132 | |
133 | /* Write the file header */ | |
134 | _lwrite(fh, (LPSTR) &hdr, sizeof(BITMAPFILEHEADER)); | |
135 | ||
136 | /* Write the DIB header and the bits */ | |
137 | lwrite(fh, (LPSTR) lpbi, GlobalSize(hdib)); | |
138 | ||
139 | GlobalUnlock(hdib); | |
140 | _lclose(fh); | |
141 | return TRUE; | |
142 | } | |
143 | ||
144 | /**************************************************************************** | |
145 | * * | |
448af9a4 | 146 | * FUNCTION : wxPaletteSize(VOID FAR * pv) * |
2bda0e17 KB |
147 | * * |
148 | * PURPOSE : Calculates the palette size in bytes. If the info. block * | |
149 | * is of the BITMAPCOREHEADER type, the number of colors is * | |
150 | * multiplied by 3 to give the palette size, otherwise the * | |
151 | * number of colors is multiplied by 4. * | |
152 | * * | |
153 | * RETURNS : Palette size in number of bytes. * | |
154 | * * | |
155 | ****************************************************************************/ | |
156 | ||
448af9a4 | 157 | WORD wxPaletteSize(VOID FAR * pv) |
2bda0e17 KB |
158 | { |
159 | LPBITMAPINFOHEADER lpbi; | |
160 | WORD NumColors; | |
161 | ||
162 | lpbi = (LPBITMAPINFOHEADER) pv; | |
163 | NumColors = DibNumColors(lpbi); | |
164 | ||
165 | if (lpbi->biSize == sizeof(BITMAPCOREHEADER)) | |
166 | return NumColors * sizeof(RGBTRIPLE); | |
40c7a5fc | 167 | else |
2bda0e17 KB |
168 | return NumColors * sizeof(RGBQUAD); |
169 | } | |
170 | ||
171 | /**************************************************************************** | |
172 | * * | |
173 | * FUNCTION : DibNumColors(VOID FAR * pv) * | |
174 | * * | |
175 | * PURPOSE : Determines the number of colors in the DIB by looking at * | |
176 | * the BitCount filed in the info block. * | |
177 | * * | |
178 | * RETURNS : The number of colors in the DIB. * | |
179 | * * | |
180 | ****************************************************************************/ | |
181 | ||
ef3ab009 | 182 | static WORD DibNumColors(VOID FAR *pv) |
2bda0e17 KB |
183 | { |
184 | int bits; | |
185 | BITMAPINFOHEADER *lpbi; | |
186 | BITMAPCOREHEADER *lpbc; | |
187 | ||
188 | lpbi = ((BITMAPINFOHEADER*) pv); | |
189 | lpbc = ((BITMAPCOREHEADER*) pv); | |
190 | ||
191 | /* With the BITMAPINFO format headers, the size of the palette | |
192 | * is in biClrUsed, whereas in the BITMAPCORE - style headers, it | |
193 | * is dependent on the bits per pixel ( = 2 raised to the power of | |
194 | * bits/pixel). | |
195 | */ | |
196 | if (lpbi->biSize != sizeof(BITMAPCOREHEADER)) { | |
197 | if (lpbi->biClrUsed != 0) | |
198 | return (WORD) lpbi->biClrUsed; | |
199 | bits = lpbi->biBitCount; | |
200 | } | |
40c7a5fc | 201 | else |
2bda0e17 KB |
202 | bits = lpbc->bcBitCount; |
203 | ||
204 | switch (bits) { | |
205 | case 1: | |
206 | return 2; | |
207 | case 4: | |
208 | return 16; | |
209 | case 8: | |
210 | return 256; | |
211 | default: | |
212 | /* A 24 bitcount DIB has no color table */ | |
213 | return 0; | |
214 | } | |
215 | } | |
216 | ||
217 | /**************************************************************************** | |
218 | * * | |
219 | * FUNCTION : DibFromBitmap() * | |
220 | * * | |
221 | * PURPOSE : Will create a global memory block in DIB format that * | |
222 | * represents the Device-dependent bitmap (DDB) passed in. * | |
223 | * * | |
224 | * RETURNS : A handle to the DIB * | |
225 | * * | |
226 | ****************************************************************************/ | |
227 | ||
228 | #if NOTHING | |
ef3ab009 | 229 | static HANDLE DibFromBitmap(HBITMAP hbm, DWORD biStyle, WORD biBits, HPALETTE hpal) |
2bda0e17 KB |
230 | { |
231 | BITMAP bm; | |
232 | BITMAPINFOHEADER bi; | |
233 | BITMAPINFOHEADER FAR *lpbi; | |
234 | DWORD dwLen; | |
235 | HANDLE hdib; | |
236 | HANDLE h; | |
237 | HDC hdc; | |
238 | ||
239 | if (!hbm) | |
240 | return NULL; | |
241 | ||
242 | if (hpal == NULL) | |
243 | hpal = GetStockObject(DEFAULT_PALETTE); | |
244 | ||
245 | GetObject(hbm, sizeof (bm), (LPSTR) &bm); | |
246 | ||
247 | if (biBits == 0) | |
248 | biBits = bm.bmPlanes * bm.bmBitsPixel; | |
249 | ||
250 | bi.biSize = sizeof(BITMAPINFOHEADER); | |
251 | bi.biWidth = bm.bmWidth; | |
252 | bi.biHeight = bm.bmHeight; | |
253 | bi.biPlanes = 1; | |
254 | bi.biBitCount = biBits; | |
255 | bi.biCompression = biStyle; | |
256 | bi.biSizeImage = 0; | |
257 | bi.biXPelsPerMeter = 0; | |
258 | bi.biYPelsPerMeter = 0; | |
259 | bi.biClrUsed = 0; | |
260 | bi.biClrImportant = 0; | |
261 | ||
448af9a4 | 262 | dwLen = bi.biSize + wxPaletteSize(&bi); |
2bda0e17 | 263 | |
57c208c5 | 264 | hdc = GetDC((HWND) NULL); |
2bda0e17 KB |
265 | hpal = SelectPalette(hdc, hpal, FALSE); |
266 | RealizePalette(hdc); | |
267 | ||
268 | hdib = GlobalAlloc(GHND, dwLen); | |
269 | ||
270 | if (!hdib) { | |
271 | SelectPalette(hdc, hpal, FALSE); | |
272 | ReleaseDC(NULL, hdc); | |
273 | return NULL; | |
274 | } | |
275 | ||
276 | #ifdef __WINDOWS_386__ | |
277 | lpbi = (BITMAPINFOHEADER FAR *) MK_FP32(GlobalLock(hdib)); | |
278 | #else | |
279 | lpbi = (BITMAPINFOHEADER FAR *) GlobalLock(hdib); | |
280 | #endif | |
281 | ||
282 | *lpbi = bi; | |
283 | ||
284 | /* call GetDIBits with a NULL lpBits param, so it will calculate the | |
285 | * biSizeImage field for us | |
286 | */ | |
287 | GetDIBits(hdc, hbm, 0, (WORD) bi.biHeight, | |
288 | NULL, (LPBITMAPINFO) lpbi, DIB_RGB_COLORS); | |
289 | ||
290 | bi = *lpbi; | |
291 | GlobalUnlock(hdib); | |
292 | ||
293 | /* If the driver did not fill in the biSizeImage field, make one up */ | |
294 | if (bi.biSizeImage == 0) { | |
295 | bi.biSizeImage = WIDTHBYTES((DWORD)bm.bmWidth * biBits) * bm.bmHeight; | |
296 | ||
297 | if (biStyle != BI_RGB) | |
298 | bi.biSizeImage = (bi.biSizeImage * 3) / 2; | |
299 | } | |
300 | ||
301 | /* realloc the buffer big enough to hold all the bits */ | |
448af9a4 | 302 | dwLen = bi.biSize + wxPaletteSize(&bi) + bi.biSizeImage; |
2bda0e17 KB |
303 | if (h = GlobalReAlloc(hdib, dwLen, 0)) |
304 | hdib = h; | |
305 | else { | |
306 | GlobalFree(hdib); | |
307 | hdib = NULL; | |
308 | ||
309 | SelectPalette(hdc, hpal, FALSE); | |
310 | ReleaseDC(NULL, hdc); | |
311 | return hdib; | |
312 | } | |
313 | ||
314 | /* call GetDIBits with a NON-NULL lpBits param, and actualy get the | |
315 | * bits this time | |
316 | */ | |
317 | #ifdef __WINDOWS_386__ | |
318 | lpbi = (BITMAPINFOHEADER FAR *) MK_FP32(GlobalLock(hdib)); | |
319 | #else | |
320 | lpbi = (BITMAPINFOHEADER FAR *) GlobalLock(hdib); | |
321 | #endif | |
322 | ||
323 | if (GetDIBits(hdc, | |
324 | hbm, | |
325 | 0, | |
326 | (WORD) bi.biHeight, | |
448af9a4 | 327 | (LPSTR) lpbi + (WORD) lpbi->biSize + wxPaletteSize(lpbi), |
2bda0e17 KB |
328 | (LPBITMAPINFO) lpbi, DIB_RGB_COLORS) == 0) { |
329 | GlobalUnlock(hdib); | |
330 | hdib = NULL; | |
331 | SelectPalette(hdc, hpal, FALSE); | |
57c208c5 | 332 | ReleaseDC((HWND) NULL, hdc); |
2bda0e17 KB |
333 | return NULL; |
334 | } | |
335 | ||
336 | bi = *lpbi; | |
337 | GlobalUnlock(hdib); | |
338 | ||
339 | SelectPalette(hdc, hpal, FALSE); | |
340 | ReleaseDC(NULL, hdc); | |
341 | return hdib; | |
342 | } | |
343 | #endif | |
344 | ||
345 | /************* PRIVATE ROUTINES TO READ/WRITE MORE THAN 64K ***************/ | |
346 | /**************************************************************************** | |
347 | * * | |
348 | * FUNCTION : lread(int fh, VOID FAR *pv, DWORD ul) * | |
349 | * * | |
350 | * PURPOSE : Reads data in steps of 32k till all the data has been read.* | |
351 | * * | |
352 | * RETURNS : 0 - If read did not proceed correctly. * | |
353 | * number of bytes read otherwise. * | |
354 | * * | |
355 | ****************************************************************************/ | |
356 | ||
ef3ab009 | 357 | static DWORD PASCAL lread(int fh, void far *pv, DWORD ul) |
2bda0e17 KB |
358 | { |
359 | DWORD ulT = ul; | |
c455ab93 | 360 | #if defined(WINNT) || defined(__WIN32__) || defined(__WIN32__) || defined(__WXWINE__) |
2bda0e17 KB |
361 | BYTE *hp = (BYTE *) pv; |
362 | #else | |
363 | BYTE huge *hp = (BYTE huge *) pv; | |
364 | #endif | |
365 | while (ul > (DWORD) MAXREAD) { | |
366 | if (_lread(fh, (LPSTR) hp, (WORD) MAXREAD) != MAXREAD) | |
367 | return 0; | |
368 | ul -= MAXREAD; | |
369 | hp += MAXREAD; | |
370 | } | |
371 | if (_lread(fh, (LPSTR) hp, (WORD) ul) != (WORD) ul) | |
372 | return 0; | |
373 | return ulT; | |
374 | } | |
375 | ||
376 | /**************************************************************************** | |
377 | * * | |
378 | * FUNCTION : lwrite(int fh, VOID FAR *pv, DWORD ul) * | |
379 | * * | |
380 | * PURPOSE : Writes data in steps of 32k till all the data is written. * | |
381 | * * | |
382 | * RETURNS : 0 - If write did not proceed correctly. * | |
383 | * number of bytes written otherwise. * | |
384 | * * | |
385 | ****************************************************************************/ | |
386 | ||
ef3ab009 | 387 | static DWORD PASCAL lwrite(int fh, VOID FAR *pv, DWORD ul) |
2bda0e17 KB |
388 | { |
389 | DWORD ulT = ul; | |
c455ab93 | 390 | #if defined(WINNT) || defined(__WIN32__) || defined(__WIN32__) || defined(__WXWINE__) |
2bda0e17 KB |
391 | BYTE *hp = (BYTE *) pv; |
392 | #else | |
393 | BYTE huge *hp = (BYTE huge *) pv; | |
394 | #endif | |
395 | while (ul > MAXREAD) { | |
396 | if (_lwrite(fh, (LPSTR) hp, (WORD) MAXREAD) != MAXREAD) | |
397 | return 0; | |
398 | ul -= MAXREAD; | |
399 | hp += MAXREAD; | |
400 | } | |
401 | if (_lwrite(fh, (LPSTR) hp, (WORD) ul) != (WORD) ul) | |
402 | return 0; | |
403 | return ulT; | |
404 | } | |
405 | ||
406 | /**************************************************************************** | |
407 | * | |
408 | * FUNCTION : ReadDIB(hWnd) | |
409 | * | |
410 | * PURPOSE : Reads a DIB from a file, obtains a handle to its | |
411 | * BITMAPINFO struct. and loads the DIB. Once the DIB | |
412 | * is loaded, the function also creates a bitmap and | |
413 | * palette out of the DIB for a device-dependent form. | |
414 | * | |
40c7a5fc | 415 | * RETURNS : TRUE - DIB loaded and bitmap/palette created |
2bda0e17 KB |
416 | * The DIBINIT structure pointed to by pInfo is |
417 | * filled with the appropriate handles. | |
418 | * FALSE - otherwise | |
419 | * | |
420 | ****************************************************************************/ | |
ef3ab009 | 421 | BOOL wxReadDIB(LPTSTR lpFileName, HBITMAP *bitmap, HPALETTE *palette) |
2bda0e17 KB |
422 | { |
423 | int fh; | |
424 | LPBITMAPINFOHEADER lpbi; | |
425 | OFSTRUCT of; | |
426 | BITMAPFILEHEADER bf; | |
427 | WORD nNumColors; | |
428 | BOOL result = FALSE; | |
837e5743 | 429 | wxChar str[128]; |
2bda0e17 KB |
430 | WORD offBits; |
431 | HDC hDC; | |
432 | BOOL bCoreHead = FALSE; | |
433 | HANDLE hDIB = 0; | |
434 | ||
435 | /* Open the file and get a handle to it's BITMAPINFO */ | |
436 | ||
1fd8a450 | 437 | fh = OpenFile (wxFNCONV(lpFileName), &of, OF_READ); |
2bda0e17 | 438 | if (fh == -1) { |
223d09f6 KB |
439 | wsprintf(str,wxT("Can't open file '%s'"), lpFileName); |
440 | MessageBox(NULL, str, wxT("Error"), MB_ICONSTOP | MB_OK); | |
2bda0e17 KB |
441 | return (0); |
442 | } | |
40c7a5fc RD |
443 | |
444 | hDIB = GlobalAlloc(GHND, (DWORD)(sizeof(BITMAPINFOHEADER) + | |
2bda0e17 KB |
445 | 256 * sizeof(RGBQUAD))); |
446 | if (!hDIB) | |
447 | return(0); | |
448 | ||
449 | #ifdef __WINDOWS_386__ | |
450 | lpbi = (LPBITMAPINFOHEADER)MK_FP32(GlobalLock(hDIB)); | |
451 | #else | |
452 | lpbi = (LPBITMAPINFOHEADER)GlobalLock(hDIB); | |
453 | #endif | |
454 | ||
455 | /* read the BITMAPFILEHEADER */ | |
456 | if (sizeof (bf) != _lread (fh, (LPSTR)&bf, sizeof (bf))) | |
457 | goto ErrExit; | |
458 | ||
459 | if (bf.bfType != 0x4d42) /* 'BM' */ | |
460 | goto ErrExit; | |
461 | ||
462 | if (sizeof(BITMAPCOREHEADER) != _lread (fh, (LPSTR)lpbi, sizeof(BITMAPCOREHEADER))) | |
463 | goto ErrExit; | |
464 | ||
465 | if (lpbi->biSize == sizeof(BITMAPCOREHEADER)) | |
466 | { | |
467 | lpbi->biSize = sizeof(BITMAPINFOHEADER); | |
468 | lpbi->biBitCount = ((LPBITMAPCOREHEADER)lpbi)->bcBitCount; | |
469 | lpbi->biPlanes = ((LPBITMAPCOREHEADER)lpbi)->bcPlanes; | |
470 | lpbi->biHeight = ((LPBITMAPCOREHEADER)lpbi)->bcHeight; | |
471 | lpbi->biWidth = ((LPBITMAPCOREHEADER)lpbi)->bcWidth; | |
472 | bCoreHead = TRUE; | |
473 | } | |
474 | else | |
475 | { | |
476 | // get to the start of the header and read INFOHEADER | |
477 | _llseek(fh,sizeof(BITMAPFILEHEADER),SEEK_SET); | |
478 | if (sizeof(BITMAPINFOHEADER) != _lread (fh, (LPSTR)lpbi, sizeof(BITMAPINFOHEADER))) | |
479 | goto ErrExit; | |
480 | } | |
481 | ||
fd3f686c VZ |
482 | nNumColors = (WORD)lpbi->biClrUsed; |
483 | if ( nNumColors == 0 ) | |
2bda0e17 KB |
484 | { |
485 | /* no color table for 24-bit, default size otherwise */ | |
486 | if (lpbi->biBitCount != 24) | |
487 | nNumColors = 1 << lpbi->biBitCount; /* standard size table */ | |
488 | } | |
489 | ||
490 | /* fill in some default values if they are zero */ | |
491 | if (lpbi->biClrUsed == 0) | |
492 | lpbi->biClrUsed = nNumColors; | |
493 | ||
494 | if (lpbi->biSizeImage == 0) | |
495 | { | |
496 | lpbi->biSizeImage = ((((lpbi->biWidth * (DWORD)lpbi->biBitCount) + 31) & ~31) >> 3) | |
497 | * lpbi->biHeight; | |
498 | } | |
499 | ||
40c7a5fc | 500 | /* get a proper-sized buffer for header, color table and bits */ |
2bda0e17 KB |
501 | GlobalUnlock(hDIB); |
502 | hDIB = GlobalReAlloc(hDIB, lpbi->biSize + | |
503 | nNumColors * sizeof(RGBQUAD) + | |
504 | lpbi->biSizeImage, 0); | |
505 | if (!hDIB) /* can't resize buffer for loading */ | |
506 | goto ErrExit2; | |
507 | ||
508 | #ifdef __WINDOWS_386__ | |
509 | lpbi = (LPBITMAPINFOHEADER)MK_FP32(GlobalLock(hDIB)); | |
510 | #else | |
511 | lpbi = (LPBITMAPINFOHEADER)GlobalLock(hDIB); | |
512 | #endif | |
513 | ||
514 | /* read the color table */ | |
515 | if (!bCoreHead) | |
516 | _lread(fh, (LPSTR)(lpbi) + lpbi->biSize, nNumColors * sizeof(RGBQUAD)); | |
517 | else | |
518 | { | |
519 | signed int i; | |
520 | RGBQUAD FAR *pQuad; | |
521 | RGBTRIPLE FAR *pTriple; | |
522 | ||
523 | _lread(fh, (LPSTR)(lpbi) + lpbi->biSize, nNumColors * sizeof(RGBTRIPLE)); | |
524 | ||
525 | pQuad = (RGBQUAD FAR *)((LPSTR)lpbi + lpbi->biSize); | |
526 | pTriple = (RGBTRIPLE FAR *) pQuad; | |
527 | for (i = nNumColors - 1; i >= 0; i--) | |
528 | { | |
529 | pQuad[i].rgbRed = pTriple[i].rgbtRed; | |
530 | pQuad[i].rgbBlue = pTriple[i].rgbtBlue; | |
531 | pQuad[i].rgbGreen = pTriple[i].rgbtGreen; | |
532 | pQuad[i].rgbReserved = 0; | |
533 | } | |
534 | } | |
535 | ||
536 | /* offset to the bits from start of DIB header */ | |
537 | offBits = (WORD)lpbi->biSize + nNumColors * sizeof(RGBQUAD); | |
538 | ||
539 | if (bf.bfOffBits != 0L) | |
540 | { | |
541 | _llseek(fh,bf.bfOffBits,SEEK_SET); | |
542 | } | |
543 | ||
544 | if (lpbi->biSizeImage == lread(fh, (LPSTR)lpbi + offBits, lpbi->biSizeImage)) | |
545 | { | |
546 | GlobalUnlock(hDIB); | |
547 | ||
548 | hDC = GetDC(NULL); | |
549 | if (!MakeBitmapAndPalette(hDC, hDIB, palette, | |
550 | bitmap)) | |
551 | { | |
552 | ReleaseDC(NULL,hDC); | |
553 | goto ErrExit2; | |
554 | } | |
555 | else | |
556 | { | |
557 | ReleaseDC(NULL,hDC); | |
558 | GlobalFree(hDIB); | |
559 | result = TRUE; | |
560 | } | |
561 | } | |
562 | else | |
563 | { | |
564 | ErrExit: | |
565 | GlobalUnlock(hDIB); | |
566 | ErrExit2: | |
567 | GlobalFree(hDIB); | |
568 | } | |
569 | ||
570 | _lclose(fh); | |
571 | return(result); | |
572 | } | |
573 | ||
574 | /**************************************************************************** | |
575 | * | |
576 | * FUNCTION : MakeBitmapAndPalette | |
577 | * | |
578 | * PURPOSE : Given a DIB, creates a bitmap and corresponding palette | |
579 | * to be used for a device-dependent representation of | |
580 | * of the image. | |
581 | * | |
40c7a5fc | 582 | * RETURNS : TRUE --> success. phPal and phBitmap are filled with |
2bda0e17 KB |
583 | * appropriate handles. Caller is responsible |
584 | * for freeing objects. | |
585 | * FALSE --> unable to create objects. both pointer are | |
586 | * not valid | |
587 | * | |
588 | ****************************************************************************/ | |
ef3ab009 | 589 | static BOOL PASCAL MakeBitmapAndPalette(HDC hDC, HANDLE hDIB, |
2bda0e17 KB |
590 | HPALETTE * phPal, HBITMAP * phBitmap) |
591 | { | |
592 | LPBITMAPINFOHEADER lpInfo; | |
593 | BOOL result = FALSE; | |
594 | HBITMAP hBitmap; | |
595 | HPALETTE hPalette, hOldPal; | |
596 | LPSTR lpBits; | |
597 | ||
598 | #ifdef __WINDOWS_386__ | |
599 | lpInfo = (LPBITMAPINFOHEADER) MK_FP32(GlobalLock(hDIB)); | |
600 | #else | |
601 | lpInfo = (LPBITMAPINFOHEADER) GlobalLock(hDIB); | |
602 | #endif | |
603 | ||
ef3ab009 | 604 | hPalette = wxMakeDIBPalette(lpInfo); |
fd3f686c | 605 | if ( hPalette ) |
2bda0e17 KB |
606 | { |
607 | // Need to realize palette for converting DIB to bitmap. | |
608 | hOldPal = SelectPalette(hDC, hPalette, TRUE); | |
609 | RealizePalette(hDC); | |
610 | ||
40c7a5fc | 611 | lpBits = (LPSTR)lpInfo + (WORD)lpInfo->biSize + |
2bda0e17 | 612 | (WORD)lpInfo->biClrUsed * sizeof(RGBQUAD); |
40c7a5fc | 613 | hBitmap = CreateDIBitmap(hDC, lpInfo, CBM_INIT, lpBits, |
2bda0e17 KB |
614 | (LPBITMAPINFO)lpInfo, DIB_RGB_COLORS); |
615 | ||
616 | SelectPalette(hDC, hOldPal, TRUE); | |
617 | RealizePalette(hDC); | |
618 | ||
619 | if (!hBitmap) | |
620 | DeleteObject(hPalette); | |
621 | else | |
622 | { | |
623 | *phBitmap = hBitmap; | |
624 | *phPal = hPalette; | |
625 | result = TRUE; | |
626 | } | |
627 | } | |
628 | return(result); | |
629 | } | |
630 | ||
631 | /**************************************************************************** | |
632 | * * | |
ef3ab009 | 633 | * FUNCTION : wxMakeDIBPalette(lpInfo) * |
2bda0e17 | 634 | * * |
40c7a5fc | 635 | * PURPOSE : Given a BITMAPINFOHEADER, create a palette based on |
2bda0e17 | 636 | * the color table. |
40c7a5fc | 637 | * |
2bda0e17 | 638 | * * |
40c7a5fc | 639 | * RETURNS : non-zero - handle of a corresponding palette |
2bda0e17 KB |
640 | * zero - unable to create palette |
641 | * * | |
642 | ****************************************************************************/ | |
ef3ab009 | 643 | HPALETTE wxMakeDIBPalette(LPBITMAPINFOHEADER lpInfo) |
2bda0e17 | 644 | { |
c455ab93 RR |
645 | #ifdef __WXWINE__ |
646 | return (FALSE); | |
647 | #else | |
48c12cb1 | 648 | LPLOGPALETTE npPal; |
2bda0e17 | 649 | RGBQUAD far *lpRGB; |
40c7a5fc | 650 | HPALETTE hLogPal; |
2bda0e17 KB |
651 | WORD i; |
652 | ||
653 | /* since biClrUsed field was filled during the loading of the DIB, | |
654 | ** we know it contains the number of colors in the color table. | |
655 | */ | |
656 | if (lpInfo->biClrUsed) | |
657 | { | |
658 | /* | |
40c7a5fc | 659 | npPal = (NPLOGPALETTE)LocalAlloc(LMEM_FIXED, sizeof(LOGPALETTE) + |
2bda0e17 KB |
660 | (WORD)lpInfo->biClrUsed * sizeof(PALETTEENTRY)); |
661 | */ | |
48c12cb1 | 662 | npPal = (LPLOGPALETTE)malloc(sizeof(LOGPALETTE) + |
2bda0e17 | 663 | (WORD)lpInfo->biClrUsed * sizeof(PALETTEENTRY)); |
2bda0e17 KB |
664 | if (!npPal) |
665 | return(FALSE); | |
666 | ||
667 | npPal->palVersion = 0x300; | |
668 | npPal->palNumEntries = (WORD)lpInfo->biClrUsed; | |
669 | ||
670 | /* get pointer to the color table */ | |
671 | lpRGB = (RGBQUAD FAR *)((LPSTR)lpInfo + lpInfo->biSize); | |
672 | ||
673 | /* copy colors from the color table to the LogPalette structure */ | |
674 | for (i = 0; i < lpInfo->biClrUsed; i++, lpRGB++) | |
675 | { | |
676 | npPal->palPalEntry[i].peRed = lpRGB->rgbRed; | |
677 | npPal->palPalEntry[i].peGreen = lpRGB->rgbGreen; | |
678 | npPal->palPalEntry[i].peBlue = lpRGB->rgbBlue; | |
679 | npPal->palPalEntry[i].peFlags = 0; | |
680 | } | |
681 | ||
682 | hLogPal = CreatePalette((LPLOGPALETTE)npPal); | |
683 | // LocalFree((HANDLE)npPal); | |
684 | free(npPal); | |
40c7a5fc | 685 | |
2bda0e17 KB |
686 | return(hLogPal); |
687 | } | |
688 | ||
689 | /* 24-bit DIB with no color table. return default palette. Another | |
690 | ** option would be to create a 256 color "rainbow" palette to provide | |
691 | ** some good color choices. | |
692 | */ | |
693 | else | |
c4e7c2aa | 694 | return((HPALETTE) GetStockObject(DEFAULT_PALETTE)); |
c455ab93 RR |
695 | #endif |
696 | ||
2bda0e17 KB |
697 | } |
698 | ||
1fd8a450 | 699 | bool wxLoadIntoBitmap(wxChar *filename, wxBitmap *bitmap, wxPalette **pal) |
2bda0e17 KB |
700 | { |
701 | HBITMAP hBitmap; | |
702 | HPALETTE hPalette; | |
703 | ||
ef3ab009 | 704 | bool success = (wxReadDIB(filename, &hBitmap, &hPalette) != 0); |
2bda0e17 KB |
705 | |
706 | if (!success) | |
707 | { | |
708 | DeleteObject(hPalette); | |
709 | return FALSE; | |
710 | } | |
711 | ||
712 | if (hPalette) | |
713 | { | |
714 | if (pal) | |
715 | { | |
2432b92d | 716 | *pal = new wxPalette; |
2bda0e17 KB |
717 | (*pal)->SetHPALETTE((WXHPALETTE) hPalette); |
718 | } | |
719 | else | |
720 | DeleteObject(hPalette); | |
721 | } | |
722 | else if (pal) | |
723 | *pal = NULL; | |
724 | ||
725 | if (hBitmap) | |
726 | { | |
727 | BITMAP bm; | |
728 | GetObject(hBitmap, sizeof(bm), (LPSTR)&bm); | |
729 | ||
730 | bitmap->SetHBITMAP((WXHBITMAP) hBitmap); | |
731 | bitmap->SetWidth(bm.bmWidth); | |
732 | bitmap->SetHeight(bm.bmHeight); | |
733 | bitmap->SetDepth(bm.bmPlanes * bm.bmBitsPixel); | |
0d0512bd | 734 | #if WXWIN_COMPATIBILITY_2 |
2bda0e17 | 735 | bitmap->SetOk(TRUE); |
0d0512bd | 736 | #endif // WXWIN_COMPATIBILITY_2 |
2bda0e17 KB |
737 | return TRUE; |
738 | } | |
739 | else return FALSE; | |
740 | } | |
741 | ||
1fd8a450 | 742 | wxBitmap *wxLoadBitmap(wxChar *filename, wxPalette **pal) |
2bda0e17 KB |
743 | { |
744 | wxBitmap *bitmap = new wxBitmap; | |
745 | if (wxLoadIntoBitmap(filename, bitmap, pal)) | |
746 | return bitmap; | |
747 | else | |
748 | { | |
749 | delete bitmap; | |
750 | return NULL; | |
751 | } | |
752 | } | |
753 | ||
754 | //--------------------------------------------------------------------- | |
755 | // | |
756 | // Function: InitBitmapInfoHeader | |
757 | // | |
758 | // Purpose: Does a "standard" initialization of a BITMAPINFOHEADER, | |
759 | // given the Width, Height, and Bits per Pixel for the | |
760 | // DIB. | |
761 | // | |
762 | // By standard, I mean that all the relevant fields are set | |
763 | // to the specified values. biSizeImage is computed, the | |
764 | // biCompression field is set to "no compression," and all | |
765 | // other fields are 0. | |
766 | // | |
767 | // Note that DIBs only allow BitsPixel values of 1, 4, 8, or | |
768 | // 24. This routine makes sure that one of these values is | |
769 | // used (whichever is most appropriate for the specified | |
770 | // nBPP). | |
771 | // | |
772 | // Parms: lpBmInfoHdr == Far pointer to a BITMAPINFOHEADER structure | |
773 | // to be filled in. | |
774 | // dwWidth == Width of DIB (not in Win 3.0 & 3.1, high | |
775 | // word MUST be 0). | |
776 | // dwHeight == Height of DIB (not in Win 3.0 & 3.1, high | |
777 | // word MUST be 0). | |
778 | // nBPP == Bits per Pixel for the DIB. | |
779 | // | |
780 | // History: Date Reason | |
781 | // 11/07/91 Created | |
40c7a5fc | 782 | // |
2bda0e17 KB |
783 | //--------------------------------------------------------------------- |
784 | ||
ef3ab009 | 785 | static void InitBitmapInfoHeader (LPBITMAPINFOHEADER lpBmInfoHdr, |
2bda0e17 KB |
786 | DWORD dwWidth, |
787 | DWORD dwHeight, | |
788 | int nBPP) | |
789 | { | |
790 | // _fmemset (lpBmInfoHdr, 0, sizeof (BITMAPINFOHEADER)); | |
791 | memset (lpBmInfoHdr, 0, sizeof (BITMAPINFOHEADER)); | |
792 | ||
793 | lpBmInfoHdr->biSize = sizeof (BITMAPINFOHEADER); | |
794 | lpBmInfoHdr->biWidth = dwWidth; | |
795 | lpBmInfoHdr->biHeight = dwHeight; | |
796 | lpBmInfoHdr->biPlanes = 1; | |
797 | ||
798 | if (nBPP <= 1) | |
799 | nBPP = 1; | |
800 | else if (nBPP <= 4) | |
801 | nBPP = 4; | |
802 | else if (nBPP <= 8) | |
803 | nBPP = 8; | |
804 | /* Doesn't work | |
805 | else if (nBPP <= 16) | |
806 | nBPP = 16; | |
807 | */ | |
808 | else | |
809 | nBPP = 24; | |
810 | ||
811 | lpBmInfoHdr->biBitCount = nBPP; | |
812 | lpBmInfoHdr->biSizeImage = WIDTHBYTES (dwWidth * nBPP) * dwHeight; | |
813 | } | |
814 | ||
815 | ||
816 | ||
817 | ||
ef3ab009 | 818 | LPSTR wxFindDIBBits (LPSTR lpbi) |
2bda0e17 | 819 | { |
448af9a4 | 820 | return (lpbi + *(LPDWORD)lpbi + wxPaletteSize (lpbi)); |
2bda0e17 KB |
821 | } |
822 | ||
823 | //--------------------------------------------------------------------- | |
824 | // | |
825 | // Function: BitmapToDIB | |
826 | // | |
827 | // Purpose: Given a device dependent bitmap and a palette, returns | |
828 | // a handle to global memory with a DIB spec in it. The | |
829 | // DIB is rendered using the colors of the palette passed in. | |
830 | // | |
831 | // Stolen almost verbatim from ShowDIB. | |
832 | // | |
833 | // Parms: hBitmap == Handle to device dependent bitmap compatible | |
834 | // with default screen display device. | |
835 | // hPal == Palette to render the DDB with. If it's NULL, | |
836 | // use the default palette. | |
837 | // | |
838 | // History: Date Reason | |
839 | // 6/01/91 Created | |
40c7a5fc | 840 | // |
2bda0e17 KB |
841 | //--------------------------------------------------------------------- |
842 | ||
ef3ab009 | 843 | HANDLE wxBitmapToDIB (HBITMAP hBitmap, HPALETTE hPal) |
2bda0e17 KB |
844 | { |
845 | BITMAP Bitmap; | |
846 | BITMAPINFOHEADER bmInfoHdr; | |
847 | LPBITMAPINFOHEADER lpbmInfoHdr; | |
848 | LPSTR lpBits; | |
849 | HDC hMemDC; | |
850 | HANDLE hDIB; | |
851 | HPALETTE hOldPal = NULL; | |
852 | ||
853 | // Do some setup -- make sure the Bitmap passed in is valid, | |
854 | // get info on the bitmap (like its height, width, etc.), | |
855 | // then setup a BITMAPINFOHEADER. | |
856 | ||
857 | if (!hBitmap) | |
858 | return NULL; | |
859 | ||
860 | if (!GetObject (hBitmap, sizeof (Bitmap), (LPSTR) &Bitmap)) | |
861 | return NULL; | |
862 | ||
40c7a5fc RD |
863 | InitBitmapInfoHeader (&bmInfoHdr, |
864 | Bitmap.bmWidth, | |
865 | Bitmap.bmHeight, | |
2bda0e17 KB |
866 | Bitmap.bmPlanes * Bitmap.bmBitsPixel); |
867 | ||
868 | ||
869 | // Now allocate memory for the DIB. Then, set the BITMAPINFOHEADER | |
870 | // into this memory, and find out where the bitmap bits go. | |
871 | ||
40c7a5fc | 872 | hDIB = GlobalAlloc (GHND, sizeof (BITMAPINFOHEADER) + |
448af9a4 | 873 | wxPaletteSize ((LPSTR) &bmInfoHdr) + bmInfoHdr.biSizeImage); |
2bda0e17 KB |
874 | |
875 | if (!hDIB) | |
876 | return NULL; | |
877 | ||
878 | #ifdef __WINDOWS_386__ | |
879 | lpbmInfoHdr = (LPBITMAPINFOHEADER) MK_FP32(GlobalLock (hDIB)); | |
880 | #else | |
881 | lpbmInfoHdr = (LPBITMAPINFOHEADER) GlobalLock (hDIB); | |
882 | #endif | |
883 | ||
884 | *lpbmInfoHdr = bmInfoHdr; | |
ef3ab009 | 885 | lpBits = wxFindDIBBits ((LPSTR) lpbmInfoHdr); |
2bda0e17 KB |
886 | |
887 | ||
888 | // Now, we need a DC to hold our bitmap. If the app passed us | |
889 | // a palette, it should be selected into the DC. | |
890 | ||
891 | hMemDC = GetDC (NULL); | |
892 | ||
893 | if (hPal) | |
894 | { | |
895 | hOldPal = SelectPalette (hMemDC, hPal, FALSE); | |
896 | RealizePalette (hMemDC); | |
897 | } | |
898 | ||
899 | ||
900 | ||
901 | // We're finally ready to get the DIB. Call the driver and let | |
902 | // it party on our bitmap. It will fill in the color table, | |
903 | // and bitmap bits of our global memory block. | |
904 | ||
40c7a5fc RD |
905 | if (!GetDIBits (hMemDC, |
906 | hBitmap, | |
907 | 0, | |
908 | Bitmap.bmHeight, | |
909 | lpBits, | |
910 | (LPBITMAPINFO) lpbmInfoHdr, | |
2bda0e17 KB |
911 | DIB_RGB_COLORS)) |
912 | { | |
913 | GlobalUnlock (hDIB); | |
914 | GlobalFree (hDIB); | |
915 | hDIB = NULL; | |
916 | } | |
917 | else | |
918 | GlobalUnlock (hDIB); | |
919 | ||
920 | ||
921 | // Finally, clean up and return. | |
922 | ||
923 | if (hOldPal) | |
924 | SelectPalette (hMemDC, hOldPal, FALSE); | |
925 | ||
926 | ReleaseDC (NULL, hMemDC); | |
927 | ||
928 | return hDIB; | |
929 | } | |
930 | ||
1fd8a450 | 931 | bool wxSaveBitmap(wxChar *filename, wxBitmap *bitmap, wxPalette *colourmap) |
2bda0e17 KB |
932 | { |
933 | HPALETTE hPalette = 0; | |
934 | if (colourmap) | |
935 | hPalette = (HPALETTE) colourmap->GetHPALETTE(); | |
936 | ||
ef3ab009 | 937 | HANDLE dibHandle = wxBitmapToDIB((HBITMAP) bitmap->GetHBITMAP(), hPalette); |
2bda0e17 KB |
938 | if (dibHandle) |
939 | { | |
940 | bool success = (WriteDIB(filename, dibHandle) != 0); | |
941 | GlobalFree(dibHandle); | |
942 | return success; | |
943 | } | |
944 | else return FALSE; | |
945 | } | |
946 | ||
947 |