- Added debugging.
[wine/wine-kai.git] / objects / bitmap.c
blob80dc0a2c16d8902a6a5788ecb0d2e1cf4ac96f49
1 /*
2 * GDI bitmap objects
4 * Copyright 1993 Alexandre Julliard
5 * 1998 Huw D M Davies
6 */
8 #include <stdlib.h>
9 #include <string.h>
11 #include "wine/winbase16.h"
12 #include "gdi.h"
13 #include "bitmap.h"
14 #include "debugtools.h"
15 #include "wine/winuser16.h"
17 DEFAULT_DEBUG_CHANNEL(bitmap);
19 BITMAP_DRIVER *BITMAP_Driver = NULL;
22 /***********************************************************************
23 * BITMAP_GetWidthBytes
25 * Return number of bytes taken by a scanline of 16-bit aligned Windows DDB
26 * data.
28 INT BITMAP_GetWidthBytes( INT bmWidth, INT bpp )
30 switch(bpp)
32 case 1:
33 return 2 * ((bmWidth+15) >> 4);
35 case 24:
36 bmWidth *= 3; /* fall through */
37 case 8:
38 return bmWidth + (bmWidth & 1);
40 case 32:
41 return bmWidth * 4;
43 case 16:
44 case 15:
45 return bmWidth * 2;
47 case 4:
48 return 2 * ((bmWidth+3) >> 2);
50 default:
51 WARN("Unknown depth %d, please report.\n", bpp );
53 return -1;
56 /***********************************************************************
57 * CreateUserBitmap (GDI.407)
59 HBITMAP16 WINAPI CreateUserBitmap16( INT16 width, INT16 height, UINT16 planes,
60 UINT16 bpp, LPCVOID bits )
62 return CreateBitmap16( width, height, planes, bpp, bits );
65 /***********************************************************************
66 * CreateUserDiscardableBitmap (GDI.409)
68 HBITMAP16 WINAPI CreateUserDiscardableBitmap16( WORD dummy,
69 INT16 width, INT16 height )
71 HDC hdc = CreateDCA( "DISPLAY", NULL, NULL, NULL );
72 HBITMAP16 ret = CreateCompatibleBitmap16( hdc, width, height );
73 DeleteDC( hdc );
74 return ret;
78 /***********************************************************************
79 * CreateBitmap (GDI.48)
81 HBITMAP16 WINAPI CreateBitmap16( INT16 width, INT16 height, UINT16 planes,
82 UINT16 bpp, LPCVOID bits )
84 return CreateBitmap( width, height, planes, bpp, bits );
88 /******************************************************************************
89 * CreateBitmap [GDI32.@] Creates a bitmap with the specified info
91 * PARAMS
92 * width [I] bitmap width
93 * height [I] bitmap height
94 * planes [I] Number of color planes
95 * bpp [I] Number of bits to identify a color
96 * bits [I] Pointer to array containing color data
98 * RETURNS
99 * Success: Handle to bitmap
100 * Failure: 0
102 HBITMAP WINAPI CreateBitmap( INT width, INT height, UINT planes,
103 UINT bpp, LPCVOID bits )
105 BITMAPOBJ *bmp;
106 HBITMAP hbitmap;
108 planes = (BYTE)planes;
109 bpp = (BYTE)bpp;
112 /* Check parameters */
113 if (!height || !width)
115 height = 1;
116 width = 1;
117 planes = 1;
118 bpp = 1;
120 if (planes != 1) {
121 FIXME("planes = %d\n", planes);
122 return 0;
124 if (height < 0) height = -height;
125 if (width < 0) width = -width;
127 /* Create the BITMAPOBJ */
128 if (!(bmp = GDI_AllocObject( sizeof(BITMAPOBJ), BITMAP_MAGIC, &hbitmap ))) return 0;
130 TRACE("%dx%d, %d colors returning %08x\n", width, height,
131 1 << (planes*bpp), hbitmap);
133 bmp->size.cx = 0;
134 bmp->size.cy = 0;
135 bmp->bitmap.bmType = 0;
136 bmp->bitmap.bmWidth = width;
137 bmp->bitmap.bmHeight = height;
138 bmp->bitmap.bmPlanes = planes;
139 bmp->bitmap.bmBitsPixel = bpp;
140 bmp->bitmap.bmWidthBytes = BITMAP_GetWidthBytes( width, bpp );
141 bmp->bitmap.bmBits = NULL;
143 bmp->funcs = NULL;
144 bmp->physBitmap = NULL;
145 bmp->dib = NULL;
146 bmp->segptr_bits = 0;
148 if (bits) /* Set bitmap bits */
149 SetBitmapBits( hbitmap, height * bmp->bitmap.bmWidthBytes,
150 bits );
151 GDI_ReleaseObj( hbitmap );
152 return hbitmap;
156 /***********************************************************************
157 * CreateCompatibleBitmap (GDI.51)
159 HBITMAP16 WINAPI CreateCompatibleBitmap16(HDC16 hdc, INT16 width, INT16 height)
161 return CreateCompatibleBitmap( hdc, width, height );
165 /******************************************************************************
166 * CreateCompatibleBitmap [GDI32.@] Creates a bitmap compatible with the DC
168 * PARAMS
169 * hdc [I] Handle to device context
170 * width [I] Width of bitmap
171 * height [I] Height of bitmap
173 * RETURNS
174 * Success: Handle to bitmap
175 * Failure: 0
177 HBITMAP WINAPI CreateCompatibleBitmap( HDC hdc, INT width, INT height)
179 HBITMAP hbmpRet = 0;
180 DC *dc;
182 TRACE("(%04x,%d,%d) = \n", hdc, width, height );
183 if (!(dc = DC_GetDCPtr( hdc ))) return 0;
184 if ((width >= 0x10000) || (height >= 0x10000)) {
185 FIXME("got bad width %d or height %d, please look for reason\n",
186 width, height );
187 } else {
188 /* MS doc says if width or height is 0, return 1-by-1 pixel, monochrome bitmap */
189 if (!width || !height)
190 hbmpRet = CreateBitmap( 1, 1, 1, 1, NULL );
191 else
192 hbmpRet = CreateBitmap( width, height, 1, dc->bitsPerPixel, NULL );
193 if(dc->funcs->pCreateBitmap)
194 dc->funcs->pCreateBitmap( hbmpRet );
196 TRACE("\t\t%04x\n", hbmpRet);
197 GDI_ReleaseObj(hdc);
198 return hbmpRet;
202 /***********************************************************************
203 * CreateBitmapIndirect (GDI.49)
205 HBITMAP16 WINAPI CreateBitmapIndirect16( const BITMAP16 * bmp )
207 return CreateBitmap16( bmp->bmWidth, bmp->bmHeight, bmp->bmPlanes,
208 bmp->bmBitsPixel, MapSL( bmp->bmBits ) );
212 /******************************************************************************
213 * CreateBitmapIndirect [GDI32.@] Creates a bitmap with the specifies info
215 * RETURNS
216 * Success: Handle to bitmap
217 * Failure: NULL
219 HBITMAP WINAPI CreateBitmapIndirect(
220 const BITMAP * bmp) /* [in] Pointer to the bitmap data */
222 return CreateBitmap( bmp->bmWidth, bmp->bmHeight, bmp->bmPlanes,
223 bmp->bmBitsPixel, bmp->bmBits );
227 /***********************************************************************
228 * GetBitmapBits (GDI.74)
230 LONG WINAPI GetBitmapBits16( HBITMAP16 hbitmap, LONG count, LPVOID buffer )
232 return GetBitmapBits( hbitmap, count, buffer );
236 /***********************************************************************
237 * GetBitmapBits [GDI32.@] Copies bitmap bits of bitmap to buffer
239 * RETURNS
240 * Success: Number of bytes copied
241 * Failure: 0
243 LONG WINAPI GetBitmapBits(
244 HBITMAP hbitmap, /* [in] Handle to bitmap */
245 LONG count, /* [in] Number of bytes to copy */
246 LPVOID bits) /* [out] Pointer to buffer to receive bits */
248 BITMAPOBJ *bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
249 LONG height, ret;
251 if (!bmp) return 0;
253 /* If the bits vector is null, the function should return the read size */
254 if(bits == NULL)
256 ret = bmp->bitmap.bmWidthBytes * bmp->bitmap.bmHeight;
257 goto done;
260 if (count < 0) {
261 WARN("(%ld): Negative number of bytes passed???\n", count );
262 count = -count;
265 /* Only get entire lines */
266 height = count / bmp->bitmap.bmWidthBytes;
267 if (height > bmp->bitmap.bmHeight) height = bmp->bitmap.bmHeight;
268 count = height * bmp->bitmap.bmWidthBytes;
269 if (count == 0)
271 WARN("Less than one entire line requested\n");
272 ret = 0;
273 goto done;
277 TRACE("(%08x, %ld, %p) %dx%d %d colors fetched height: %ld\n",
278 hbitmap, count, bits, bmp->bitmap.bmWidth, bmp->bitmap.bmHeight,
279 1 << bmp->bitmap.bmBitsPixel, height );
281 if(bmp->funcs) {
283 TRACE("Calling device specific BitmapBits\n");
284 if(bmp->funcs->pBitmapBits)
285 ret = bmp->funcs->pBitmapBits(hbitmap, bits, count, DDB_GET);
286 else {
287 ERR("BitmapBits == NULL??\n");
288 ret = 0;
291 } else {
293 if(!bmp->bitmap.bmBits) {
294 WARN("Bitmap is empty\n");
295 ret = 0;
296 } else {
297 memcpy(bits, bmp->bitmap.bmBits, count);
298 ret = count;
302 done:
303 GDI_ReleaseObj( hbitmap );
304 return ret;
308 /***********************************************************************
309 * SetBitmapBits (GDI.106)
311 LONG WINAPI SetBitmapBits16( HBITMAP16 hbitmap, LONG count, LPCVOID buffer )
313 return SetBitmapBits( hbitmap, count, buffer );
317 /******************************************************************************
318 * SetBitmapBits [GDI32.@] Sets bits of color data for a bitmap
320 * RETURNS
321 * Success: Number of bytes used in setting the bitmap bits
322 * Failure: 0
324 LONG WINAPI SetBitmapBits(
325 HBITMAP hbitmap, /* [in] Handle to bitmap */
326 LONG count, /* [in] Number of bytes in bitmap array */
327 LPCVOID bits) /* [in] Address of array with bitmap bits */
329 BITMAPOBJ *bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
330 LONG height, ret;
332 if ((!bmp) || (!bits))
333 return 0;
335 if (count < 0) {
336 WARN("(%ld): Negative number of bytes passed???\n", count );
337 count = -count;
340 /* Only get entire lines */
341 height = count / bmp->bitmap.bmWidthBytes;
342 if (height > bmp->bitmap.bmHeight) height = bmp->bitmap.bmHeight;
343 count = height * bmp->bitmap.bmWidthBytes;
345 TRACE("(%08x, %ld, %p) %dx%d %d colors fetched height: %ld\n",
346 hbitmap, count, bits, bmp->bitmap.bmWidth, bmp->bitmap.bmHeight,
347 1 << bmp->bitmap.bmBitsPixel, height );
349 if(bmp->funcs) {
351 TRACE("Calling device specific BitmapBits\n");
352 if(bmp->funcs->pBitmapBits)
353 ret = bmp->funcs->pBitmapBits(hbitmap, (void *) bits, count, DDB_SET);
354 else {
355 ERR("BitmapBits == NULL??\n");
356 ret = 0;
359 } else {
361 if(!bmp->bitmap.bmBits) /* Alloc enough for entire bitmap */
362 bmp->bitmap.bmBits = HeapAlloc( GetProcessHeap(), 0, count );
363 if(!bmp->bitmap.bmBits) {
364 WARN("Unable to allocate bit buffer\n");
365 ret = 0;
366 } else {
367 memcpy(bmp->bitmap.bmBits, bits, count);
368 ret = count;
372 GDI_ReleaseObj( hbitmap );
373 return ret;
376 /**********************************************************************
377 * BITMAP_CopyBitmap
380 HBITMAP BITMAP_CopyBitmap(HBITMAP hbitmap)
382 BITMAPOBJ *bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
383 HBITMAP res = 0;
384 BITMAP bm;
386 if(!bmp) return 0;
388 bm = bmp->bitmap;
389 bm.bmBits = NULL;
390 res = CreateBitmapIndirect(&bm);
392 if(res) {
393 char *buf = HeapAlloc( GetProcessHeap(), 0, bm.bmWidthBytes *
394 bm.bmHeight );
395 GetBitmapBits (hbitmap, bm.bmWidthBytes * bm.bmHeight, buf);
396 SetBitmapBits (res, bm.bmWidthBytes * bm.bmHeight, buf);
397 HeapFree( GetProcessHeap(), 0, buf );
400 GDI_ReleaseObj( hbitmap );
401 return res;
404 /***********************************************************************
405 * BITMAP_DeleteObject
407 BOOL BITMAP_DeleteObject( HBITMAP16 hbitmap, BITMAPOBJ * bmp )
409 if (bmp->funcs && bmp->funcs->pDeleteObject)
410 bmp->funcs->pDeleteObject( hbitmap );
412 if( bmp->bitmap.bmBits )
413 HeapFree( GetProcessHeap(), 0, bmp->bitmap.bmBits );
415 DIB_DeleteDIBSection( bmp );
417 return GDI_FreeObject( hbitmap, bmp );
421 /***********************************************************************
422 * BITMAP_GetObject16
424 INT16 BITMAP_GetObject16( BITMAPOBJ * bmp, INT16 count, LPVOID buffer )
426 if (bmp->dib)
428 if ( count <= sizeof(BITMAP16) )
430 BITMAP *bmp32 = &bmp->dib->dsBm;
431 BITMAP16 bmp16;
432 bmp16.bmType = bmp32->bmType;
433 bmp16.bmWidth = bmp32->bmWidth;
434 bmp16.bmHeight = bmp32->bmHeight;
435 bmp16.bmWidthBytes = bmp32->bmWidthBytes;
436 bmp16.bmPlanes = bmp32->bmPlanes;
437 bmp16.bmBitsPixel = bmp32->bmBitsPixel;
438 bmp16.bmBits = (SEGPTR)0;
439 memcpy( buffer, &bmp16, count );
440 return count;
442 else
444 FIXME("not implemented for DIBs: count %d\n", count);
445 return 0;
448 else
450 BITMAP16 bmp16;
451 bmp16.bmType = bmp->bitmap.bmType;
452 bmp16.bmWidth = bmp->bitmap.bmWidth;
453 bmp16.bmHeight = bmp->bitmap.bmHeight;
454 bmp16.bmWidthBytes = bmp->bitmap.bmWidthBytes;
455 bmp16.bmPlanes = bmp->bitmap.bmPlanes;
456 bmp16.bmBitsPixel = bmp->bitmap.bmBitsPixel;
457 bmp16.bmBits = (SEGPTR)0;
458 if (count > sizeof(bmp16)) count = sizeof(bmp16);
459 memcpy( buffer, &bmp16, count );
460 return count;
465 /***********************************************************************
466 * BITMAP_GetObject
468 INT BITMAP_GetObject( BITMAPOBJ * bmp, INT count, LPVOID buffer )
470 if (bmp->dib)
472 if (count < sizeof(DIBSECTION))
474 if (count > sizeof(BITMAP)) count = sizeof(BITMAP);
476 else
478 if (count > sizeof(DIBSECTION)) count = sizeof(DIBSECTION);
481 memcpy( buffer, bmp->dib, count );
482 return count;
484 else
486 if (count > sizeof(BITMAP)) count = sizeof(BITMAP);
487 memcpy( buffer, &bmp->bitmap, count );
488 return count;
493 /***********************************************************************
494 * CreateDiscardableBitmap (GDI.156)
496 HBITMAP16 WINAPI CreateDiscardableBitmap16( HDC16 hdc, INT16 width,
497 INT16 height )
499 return CreateCompatibleBitmap16( hdc, width, height );
503 /******************************************************************************
504 * CreateDiscardableBitmap [GDI32.@] Creates a discardable bitmap
506 * RETURNS
507 * Success: Handle to bitmap
508 * Failure: NULL
510 HBITMAP WINAPI CreateDiscardableBitmap(
511 HDC hdc, /* [in] Handle to device context */
512 INT width, /* [in] Bitmap width */
513 INT height) /* [in] Bitmap height */
515 return CreateCompatibleBitmap( hdc, width, height );
519 /***********************************************************************
520 * GetBitmapDimensionEx (GDI.468)
522 * NOTES
523 * Can this call GetBitmapDimensionEx?
525 BOOL16 WINAPI GetBitmapDimensionEx16( HBITMAP16 hbitmap, LPSIZE16 size )
527 BITMAPOBJ * bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
528 if (!bmp) return FALSE;
529 size->cx = bmp->size.cx;
530 size->cy = bmp->size.cy;
531 GDI_ReleaseObj( hbitmap );
532 return TRUE;
536 /******************************************************************************
537 * GetBitmapDimensionEx [GDI32.@] Retrieves dimensions of a bitmap
539 * RETURNS
540 * Success: TRUE
541 * Failure: FALSE
543 BOOL WINAPI GetBitmapDimensionEx(
544 HBITMAP hbitmap, /* [in] Handle to bitmap */
545 LPSIZE size) /* [out] Address of struct receiving dimensions */
547 BITMAPOBJ * bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
548 if (!bmp) return FALSE;
549 *size = bmp->size;
550 GDI_ReleaseObj( hbitmap );
551 return TRUE;
555 /***********************************************************************
556 * GetBitmapDimension (GDI.162)
558 DWORD WINAPI GetBitmapDimension16( HBITMAP16 hbitmap )
560 SIZE16 size;
561 if (!GetBitmapDimensionEx16( hbitmap, &size )) return 0;
562 return MAKELONG( size.cx, size.cy );
566 /***********************************************************************
567 * SetBitmapDimensionEx (GDI.478)
569 BOOL16 WINAPI SetBitmapDimensionEx16( HBITMAP16 hbitmap, INT16 x, INT16 y,
570 LPSIZE16 prevSize )
572 BITMAPOBJ * bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
573 if (!bmp) return FALSE;
574 if (prevSize)
576 prevSize->cx = bmp->size.cx;
577 prevSize->cy = bmp->size.cy;
579 bmp->size.cx = x;
580 bmp->size.cy = y;
581 GDI_ReleaseObj( hbitmap );
582 return TRUE;
586 /******************************************************************************
587 * SetBitmapDimensionEx [GDI32.@] Assignes dimensions to a bitmap
589 * RETURNS
590 * Success: TRUE
591 * Failure: FALSE
593 BOOL WINAPI SetBitmapDimensionEx(
594 HBITMAP hbitmap, /* [in] Handle to bitmap */
595 INT x, /* [in] Bitmap width */
596 INT y, /* [in] Bitmap height */
597 LPSIZE prevSize) /* [out] Address of structure for orig dims */
599 BITMAPOBJ * bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
600 if (!bmp) return FALSE;
601 if (prevSize) *prevSize = bmp->size;
602 bmp->size.cx = x;
603 bmp->size.cy = y;
604 GDI_ReleaseObj( hbitmap );
605 return TRUE;
609 /***********************************************************************
610 * SetBitmapDimension (GDI.163)
612 DWORD WINAPI SetBitmapDimension16( HBITMAP16 hbitmap, INT16 x, INT16 y )
614 SIZE16 size;
615 if (!SetBitmapDimensionEx16( hbitmap, x, y, &size )) return 0;
616 return MAKELONG( size.cx, size.cy );