|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| gdi32.lib
| Header File
| wingdi.h
| Unicode
| No
| Platform Notes
| Windows 95: int == 16 bits
|
|
|
SetBitmapDimensionEx
The SetBitmapDimensionEx function assigns preferred dimensions to a bitmap. These dimensions can be
used by applications; however, they are not used by Windows.
BOOL SetBitmapDimensionEx(
HBITMAP hBitmap,
| // handle of bitmap
| int nWidth,
| // bitmap width in .01-mm units
| int nHeight,
| // bitmap height in .01-mm units
| LPSIZE lpSize
| // address of structure for original dimensions
| );
|
|
Parameters
hBitmap
Identifies the bitmap. The bitmap cannot be a DIB section bitmap.
nWidth
Specifies the width, in 0.1-millimeter units, of the bitmap.
nHeight
Specifies the height, in 0.1-millimeter units, of the bitmap.
lpSize
Points to a SIZE structure to receive the previous dimensions of the bitmap. This pointer can
be NULL.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error
information, call GetLastError.
Remarks
An application can retrieve the dimensions assigned to a bitmap with the SetBitmapDimensionEx function by calling the GetBitmapDimensionEx function.
The bitmap identified by hBitmap cannot be a dib section, which is a bitmap created by the CreateDIBSection function. If the bitmap is a dib section, the SetBitmapDimensionEx function fails.
See Also
CreateDIBSection, GetBitmapDimensionEx, SIZE
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|