4 * Copyright 1993 Alexandre Julliard
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "ntgdi_private.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(bitmap
);
35 static INT
BITMAP_GetObject( HGDIOBJ handle
, INT count
, LPVOID buffer
);
36 static BOOL
BITMAP_DeleteObject( HGDIOBJ handle
);
38 static const struct gdi_obj_funcs bitmap_funcs
=
40 BITMAP_GetObject
, /* pGetObjectW */
41 NULL
, /* pUnrealizeObject */
42 BITMAP_DeleteObject
/* pDeleteObject */
46 /******************************************************************************
47 * CreateCompatibleBitmap [GDI32.@]
49 * Creates a bitmap compatible with the DC.
52 * hdc [I] Handle to device context
53 * width [I] Width of bitmap
54 * height [I] Height of bitmap
57 * Success: Handle to bitmap
60 HBITMAP WINAPI
CreateCompatibleBitmap( HDC hdc
, INT width
, INT height
)
62 char buffer
[FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )];
63 BITMAPINFO
*bi
= (BITMAPINFO
*)buffer
;
66 TRACE("(%p,%d,%d)\n", hdc
, width
, height
);
68 if (GetObjectType( hdc
) != OBJ_MEMDC
)
69 return CreateBitmap( width
, height
,
70 GetDeviceCaps(hdc
, PLANES
), GetDeviceCaps(hdc
, BITSPIXEL
), NULL
);
72 switch (GetObjectW( GetCurrentObject( hdc
, OBJ_BITMAP
), sizeof(dib
), &dib
))
74 case sizeof(BITMAP
): /* A device-dependent bitmap is selected in the DC */
75 return CreateBitmap( width
, height
, dib
.dsBm
.bmPlanes
, dib
.dsBm
.bmBitsPixel
, NULL
);
77 case sizeof(DIBSECTION
): /* A DIB section is selected in the DC */
78 bi
->bmiHeader
= dib
.dsBmih
;
79 bi
->bmiHeader
.biWidth
= width
;
80 bi
->bmiHeader
.biHeight
= height
;
81 if (dib
.dsBmih
.biCompression
== BI_BITFIELDS
) /* copy the color masks */
82 memcpy(bi
->bmiColors
, dib
.dsBitfields
, sizeof(dib
.dsBitfields
));
83 else if (dib
.dsBmih
.biBitCount
<= 8) /* copy the color table */
84 GetDIBColorTable(hdc
, 0, 256, bi
->bmiColors
);
85 return CreateDIBSection( hdc
, bi
, DIB_RGB_COLORS
, NULL
, NULL
, 0 );
93 /******************************************************************************
94 * NtGdiCreateBitmap (win32u.@)
96 * Creates a bitmap with the specified info.
98 HBITMAP WINAPI
NtGdiCreateBitmap( INT width
, INT height
, UINT planes
,
99 UINT bpp
, const void *bits
)
106 if (width
> 0x7ffffff || height
> 0x7ffffff)
108 SetLastError( ERROR_INVALID_PARAMETER
);
112 if (!width
|| !height
)
122 FIXME("planes = %d\n", planes
);
123 SetLastError( ERROR_INVALID_PARAMETER
);
127 /* Windows only uses 1, 4, 8, 16, 24 and 32 bpp */
128 if(bpp
== 1) bpp
= 1;
129 else if(bpp
<= 4) bpp
= 4;
130 else if(bpp
<= 8) bpp
= 8;
131 else if(bpp
<= 16) bpp
= 16;
132 else if(bpp
<= 24) bpp
= 24;
133 else if(bpp
<= 32) bpp
= 32;
136 WARN("Invalid bmBitsPixel %d, returning ERROR_INVALID_PARAMETER\n", bpp
);
137 SetLastError(ERROR_INVALID_PARAMETER
);
141 dib_stride
= get_dib_stride( width
, bpp
);
142 size
= dib_stride
* height
;
143 /* Check for overflow (dib_stride itself must be ok because of the constraint on bm.bmWidth above). */
144 if (dib_stride
!= size
/ height
)
146 SetLastError( ERROR_INVALID_PARAMETER
);
150 /* Create the BITMAPOBJ */
151 if (!(bmpobj
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*bmpobj
) )))
153 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
157 bmpobj
->dib
.dsBm
.bmType
= 0;
158 bmpobj
->dib
.dsBm
.bmWidth
= width
;
159 bmpobj
->dib
.dsBm
.bmHeight
= height
;
160 bmpobj
->dib
.dsBm
.bmWidthBytes
= get_bitmap_stride( width
, bpp
);
161 bmpobj
->dib
.dsBm
.bmPlanes
= planes
;
162 bmpobj
->dib
.dsBm
.bmBitsPixel
= bpp
;
163 bmpobj
->dib
.dsBm
.bmBits
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, size
);
164 if (!bmpobj
->dib
.dsBm
.bmBits
)
166 HeapFree( GetProcessHeap(), 0, bmpobj
);
167 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
171 if (!(hbitmap
= alloc_gdi_handle( &bmpobj
->obj
, NTGDI_OBJ_BITMAP
, &bitmap_funcs
)))
173 HeapFree( GetProcessHeap(), 0, bmpobj
->dib
.dsBm
.bmBits
);
174 HeapFree( GetProcessHeap(), 0, bmpobj
);
179 NtGdiSetBitmapBits( hbitmap
, height
* bmpobj
->dib
.dsBm
.bmWidthBytes
, bits
);
181 TRACE("%dx%d, bpp %d planes %d: returning %p\n", width
, height
, bpp
, planes
, hbitmap
);
186 /***********************************************************************
187 * NtGdiGetBitmapBits (win32u.@)
189 * Copies bitmap bits of bitmap to buffer.
192 * Success: Number of bytes copied
195 LONG WINAPI
NtGdiGetBitmapBits(
196 HBITMAP hbitmap
, /* [in] Handle to bitmap */
197 LONG count
, /* [in] Number of bytes to copy */
198 LPVOID bits
) /* [out] Pointer to buffer to receive bits */
200 char buffer
[FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )];
201 BITMAPINFO
*info
= (BITMAPINFO
*)buffer
;
202 struct gdi_image_bits src_bits
;
203 struct bitblt_coords src
;
204 int dst_stride
, max
, ret
;
205 BITMAPOBJ
*bmp
= GDI_GetObjPtr( hbitmap
, NTGDI_OBJ_BITMAP
);
209 dst_stride
= get_bitmap_stride( bmp
->dib
.dsBm
.bmWidth
, bmp
->dib
.dsBm
.bmBitsPixel
);
210 ret
= max
= dst_stride
* bmp
->dib
.dsBm
.bmHeight
;
211 if (!bits
) goto done
;
212 if (count
< 0 || count
> max
) count
= max
;
215 src
.visrect
.left
= 0;
216 src
.visrect
.right
= bmp
->dib
.dsBm
.bmWidth
;
218 src
.visrect
.bottom
= (count
+ dst_stride
- 1) / dst_stride
;
220 src
.width
= src
.visrect
.right
- src
.visrect
.left
;
221 src
.height
= src
.visrect
.bottom
- src
.visrect
.top
;
223 if (!get_image_from_bitmap( bmp
, info
, &src_bits
, &src
))
225 const char *src_ptr
= src_bits
.ptr
;
226 int src_stride
= info
->bmiHeader
.biSizeImage
/ abs( info
->bmiHeader
.biHeight
);
228 /* GetBitmapBits returns 16-bit aligned data */
230 if (info
->bmiHeader
.biHeight
> 0)
232 src_ptr
+= (info
->bmiHeader
.biHeight
- 1) * src_stride
;
233 src_stride
= -src_stride
;
235 src_ptr
+= src
.visrect
.top
* src_stride
;
237 if (src_stride
== dst_stride
) memcpy( bits
, src_ptr
, count
);
238 else while (count
> 0)
240 memcpy( bits
, src_ptr
, min( count
, dst_stride
) );
241 src_ptr
+= src_stride
;
242 bits
= (char *)bits
+ dst_stride
;
245 if (src_bits
.free
) src_bits
.free( &src_bits
);
250 GDI_ReleaseObj( hbitmap
);
255 /******************************************************************************
256 * NtGdiSetBitmapBits (win32u.@)
258 * Sets bits of color data for a bitmap.
261 * Success: Number of bytes used in setting the bitmap bits
264 LONG WINAPI
NtGdiSetBitmapBits(
265 HBITMAP hbitmap
, /* [in] Handle to bitmap */
266 LONG count
, /* [in] Number of bytes in bitmap array */
267 LPCVOID bits
) /* [in] Address of array with bitmap bits */
269 char buffer
[FIELD_OFFSET( BITMAPINFO
, bmiColors
[256] )];
270 BITMAPINFO
*info
= (BITMAPINFO
*)buffer
;
273 int i
, src_stride
, dst_stride
;
274 struct bitblt_coords src
, dst
;
275 struct gdi_image_bits src_bits
;
280 bmp
= GDI_GetObjPtr( hbitmap
, NTGDI_OBJ_BITMAP
);
284 WARN("(%d): Negative number of bytes passed???\n", count
);
288 src_stride
= get_bitmap_stride( bmp
->dib
.dsBm
.bmWidth
, bmp
->dib
.dsBm
.bmBitsPixel
);
289 count
= min( count
, src_stride
* bmp
->dib
.dsBm
.bmHeight
);
291 dst_stride
= get_dib_stride( bmp
->dib
.dsBm
.bmWidth
, bmp
->dib
.dsBm
.bmBitsPixel
);
293 src
.visrect
.left
= src
.x
= 0;
294 src
.visrect
.top
= src
.y
= 0;
295 src
.visrect
.right
= src
.width
= bmp
->dib
.dsBm
.bmWidth
;
296 src
.visrect
.bottom
= src
.height
= (count
+ src_stride
- 1 ) / src_stride
;
299 if (count
% src_stride
)
302 int extra_pixels
= ((count
% src_stride
) << 3) / bmp
->dib
.dsBm
.bmBitsPixel
;
304 if ((count
% src_stride
<< 3) % bmp
->dib
.dsBm
.bmBitsPixel
)
305 FIXME( "Unhandled partial pixel\n" );
306 clip
= NtGdiCreateRectRgn( src
.visrect
.left
, src
.visrect
.top
,
307 src
.visrect
.right
, src
.visrect
.bottom
- 1 );
308 last_row
= NtGdiCreateRectRgn( src
.visrect
.left
, src
.visrect
.bottom
- 1,
309 src
.visrect
.left
+ extra_pixels
, src
.visrect
.bottom
);
310 NtGdiCombineRgn( clip
, clip
, last_row
, RGN_OR
);
311 DeleteObject( last_row
);
314 TRACE("(%p, %d, %p) %dx%d %d bpp fetched height: %d\n",
315 hbitmap
, count
, bits
, bmp
->dib
.dsBm
.bmWidth
, bmp
->dib
.dsBm
.bmHeight
,
316 bmp
->dib
.dsBm
.bmBitsPixel
, src
.height
);
318 if (src_stride
== dst_stride
)
320 src_bits
.ptr
= (void *)bits
;
321 src_bits
.is_copy
= FALSE
;
322 src_bits
.free
= NULL
;
326 if (!(src_bits
.ptr
= HeapAlloc( GetProcessHeap(), 0, dst
.height
* dst_stride
)))
328 GDI_ReleaseObj( hbitmap
);
331 src_bits
.is_copy
= TRUE
;
332 src_bits
.free
= free_heap_bits
;
333 for (i
= 0; i
< count
/ src_stride
; i
++)
334 memcpy( (char *)src_bits
.ptr
+ i
* dst_stride
, (char *)bits
+ i
* src_stride
, src_stride
);
335 if (count
% src_stride
)
336 memcpy( (char *)src_bits
.ptr
+ i
* dst_stride
, (char *)bits
+ i
* src_stride
, count
% src_stride
);
339 /* query the color info */
340 info
->bmiHeader
.biSize
= sizeof(info
->bmiHeader
);
341 info
->bmiHeader
.biPlanes
= 1;
342 info
->bmiHeader
.biBitCount
= bmp
->dib
.dsBm
.bmBitsPixel
;
343 info
->bmiHeader
.biCompression
= BI_RGB
;
344 info
->bmiHeader
.biXPelsPerMeter
= 0;
345 info
->bmiHeader
.biYPelsPerMeter
= 0;
346 info
->bmiHeader
.biClrUsed
= 0;
347 info
->bmiHeader
.biClrImportant
= 0;
348 info
->bmiHeader
.biWidth
= 0;
349 info
->bmiHeader
.biHeight
= 0;
350 info
->bmiHeader
.biSizeImage
= 0;
351 err
= put_image_into_bitmap( bmp
, 0, info
, NULL
, NULL
, NULL
);
353 if (!err
|| err
== ERROR_BAD_FORMAT
)
355 info
->bmiHeader
.biWidth
= bmp
->dib
.dsBm
.bmWidth
;
356 info
->bmiHeader
.biHeight
= -dst
.height
;
357 info
->bmiHeader
.biSizeImage
= dst
.height
* dst_stride
;
358 err
= put_image_into_bitmap( bmp
, clip
, info
, &src_bits
, &src
, &dst
);
362 if (clip
) DeleteObject( clip
);
363 if (src_bits
.free
) src_bits
.free( &src_bits
);
364 GDI_ReleaseObj( hbitmap
);
369 /***********************************************************************
370 * NtGdiSelectBitmap (win32u.@)
372 HGDIOBJ WINAPI
NtGdiSelectBitmap( HDC hdc
, HGDIOBJ handle
)
379 if (!(dc
= get_dc_ptr( hdc
))) return 0;
381 if (GetObjectType( hdc
) != OBJ_MEMDC
)
387 if (handle
== dc
->hBitmap
) goto done
; /* nothing to do */
389 if (!(bitmap
= GDI_GetObjPtr( handle
, NTGDI_OBJ_BITMAP
)))
395 if (handle
!= GetStockObject(DEFAULT_BITMAP
) && GDI_get_ref_count( handle
))
397 WARN( "Bitmap already selected in another DC\n" );
398 GDI_ReleaseObj( handle
);
403 if (!is_bitmapobj_dib( bitmap
) &&
404 bitmap
->dib
.dsBm
.bmBitsPixel
!= 1 &&
405 bitmap
->dib
.dsBm
.bmBitsPixel
!= GetDeviceCaps( hdc
, BITSPIXEL
))
407 WARN( "Wrong format bitmap %u bpp\n", bitmap
->dib
.dsBm
.bmBitsPixel
);
408 GDI_ReleaseObj( handle
);
413 physdev
= GET_DC_PHYSDEV( dc
, pSelectBitmap
);
414 if (!physdev
->funcs
->pSelectBitmap( physdev
, handle
))
416 GDI_ReleaseObj( handle
);
421 dc
->hBitmap
= handle
;
422 GDI_inc_ref_count( handle
);
424 dc
->vis_rect
.left
= 0;
425 dc
->vis_rect
.top
= 0;
426 dc
->vis_rect
.right
= bitmap
->dib
.dsBm
.bmWidth
;
427 dc
->vis_rect
.bottom
= bitmap
->dib
.dsBm
.bmHeight
;
428 dc
->device_rect
= dc
->vis_rect
;
429 GDI_ReleaseObj( handle
);
431 GDI_dec_ref_count( ret
);
435 release_dc_ptr( dc
);
440 /***********************************************************************
441 * BITMAP_DeleteObject
443 static BOOL
BITMAP_DeleteObject( HGDIOBJ handle
)
445 BITMAPOBJ
*bmp
= free_gdi_handle( handle
);
447 if (!bmp
) return FALSE
;
448 HeapFree( GetProcessHeap(), 0, bmp
->dib
.dsBm
.bmBits
);
449 HeapFree( GetProcessHeap(), 0, bmp
);
454 /***********************************************************************
457 static INT
BITMAP_GetObject( HGDIOBJ handle
, INT count
, LPVOID buffer
)
460 BITMAPOBJ
*bmp
= GDI_GetObjPtr( handle
, NTGDI_OBJ_BITMAP
);
464 if (!buffer
) ret
= sizeof(BITMAP
);
465 else if (count
>= sizeof(BITMAP
))
467 BITMAP
*bitmap
= buffer
;
468 *bitmap
= bmp
->dib
.dsBm
;
469 bitmap
->bmBits
= NULL
;
470 ret
= sizeof(BITMAP
);
472 GDI_ReleaseObj( handle
);
477 /******************************************************************************
478 * NtGdiGetBitmapDimension (win32u.@)
480 * Retrieves dimensions of a bitmap.
486 BOOL WINAPI
NtGdiGetBitmapDimension(
487 HBITMAP hbitmap
, /* [in] Handle to bitmap */
488 LPSIZE size
) /* [out] Address of struct receiving dimensions */
490 BITMAPOBJ
* bmp
= GDI_GetObjPtr( hbitmap
, NTGDI_OBJ_BITMAP
);
491 if (!bmp
) return FALSE
;
493 GDI_ReleaseObj( hbitmap
);
498 /******************************************************************************
499 * NtGdiSetBitmapDimension (win32u.@)
501 * Assigns dimensions to a bitmap.
502 * MSDN says that this function will fail if hbitmap is a handle created by
503 * CreateDIBSection, but that's not true on Windows 2000.
509 BOOL WINAPI
NtGdiSetBitmapDimension(
510 HBITMAP hbitmap
, /* [in] Handle to bitmap */
511 INT x
, /* [in] Bitmap width */
512 INT y
, /* [in] Bitmap height */
513 LPSIZE prevSize
) /* [out] Address of structure for orig dims */
515 BITMAPOBJ
* bmp
= GDI_GetObjPtr( hbitmap
, NTGDI_OBJ_BITMAP
);
516 if (!bmp
) return FALSE
;
517 if (prevSize
) *prevSize
= bmp
->size
;
520 GDI_ReleaseObj( hbitmap
);