|
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
|
|
|
StretchDIBits
The StretchDIBits function copies the color data for a rectangle of pixels in a
device-independent bitmap (DIB) to the specified destination rectangle. If the destination
rectangle is larger than the source rectangle, this function stretches the rows
and columns of color data to fit the destination rectangle. If the destination
rectangle is smaller than the source rectangle, this function compresses the rows
and columns by using the specified raster operation.
int StretchDIBits(
HDC hdc,
| // handle of device context
| int XDest,
| // x-coordinate of upper-left corner of dest. rect.
| int YDest,
| // y-coordinate of upper-left corner of dest. rect.
| int nDestWidth,
| // width of destination rectangle
| int nDestHeight,
| // height of destination rectangle
| int XSrc,
| // x-coordinate of upper-left corner of source rect.
| int YSrc,
| // y-coordinate of upper-left corner of source rect.
| int nSrcWidth,
| // width of source rectangle
| int nSrcHeight,
| // height of source rectangle
| CONST VOID *lpBits,
| // address of bitmap bits
| CONST BITMAPINFO *lpBitsInfo,
| // address of bitmap data
| UINT iUsage,
| // usage
| DWORD dwRop
| // raster operation code
| );
|
|
Parameters
hdc
Identifies the destination device context.
XDest
Specifies the x-coordinate, in logical units, of the upper-left corner of the
destination rectangle.
YDest
Specifies the y-coordinate, in logical units, of the upper-left corner of the
destination rectangle.
nDestWidth
Specifies the width, in logical units, of the destination rectangle.
nDestHeight
Specifies the height, in logical units, of the destination rectangle.
XSrc
Specifies the x-coordinate, in pixels, of the source rectangle in the DIB.
YSrc
Specifies the y-coordinate, in pixels, of the source rectangle in the DIB.
nSrcWidth
Specifies the width, in pixels, of the source rectangle in the DIB.
nSrcHeight
Specifies the height, in pixels, of the source rectangle in the DIB.
lpBits
Points to the DIB bits, which are stored as an array of bytes.
lpBitsInfo
Points to a BITMAPINFO structure that contains information about the DIB.
iUsage
Specifies whether the bmiColors member of the BITMAPINFO structure was provided and, if so, whether bmiColors contains explicit red, green, blue (RGB) values or indices. The iUsage parameter must be one of the following values:
Value
| Description
| DIB_PAL_COLORS
| The array contains 16-bit indices into the logical palette of the source
device context.
| DIB_RGB_COLORS
| The color table contains literal RGB values.
|
dwRop
Specifies how the source pixels, the destination device context's current
brush, and the destination pixels are to be combined to form the new image.
Return Values
If the function succeeds, the return value is the number of scan lines copied.
If the function fails, the return value is GDI_ERROR. To get extended error
information, call GetLastError.
Remarks
The origin of a bottom-up DIB is the bottom-left corner; the origin of a
top-down DIB is the upper-left corner.
StretchDIBits creates a mirror image of a bitmap if the signs of the nSrcWidth and nDestWidth parameters, or of the nSrcHeight and nDestHeight parameters differ. If nSrcWidth and nDestWidth have different signs, the function creates a mirror image of the bitmap along
the x-axis. If nSrcHeight and nDestHeight have different signs, the function creates a mirror image of the bitmap along
the y-axis.
See Also
SetMapMode, SetStretchBltMode, BITMAPINFO
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|