- wxBitmap& bmp = source->GetSelectedBitmap();
- int width = bmp.GetWidth(),
- height = bmp.GetHeight();
-
- BITMAPINFO *info = (BITMAPINFO *) malloc( sizeof( BITMAPINFOHEADER ) + 256 * sizeof(RGBQUAD ) );
- int iBitsSize = ((width + 3 ) & ~3 ) * height;
-
- void* bits = malloc( iBitsSize );
-
- memset( info , 0 , sizeof( BITMAPINFOHEADER ) );
-
- info->bmiHeader.biSize = sizeof( BITMAPINFOHEADER );
- info->bmiHeader.biWidth = width;
- info->bmiHeader.biHeight = height;
- info->bmiHeader.biPlanes = 1;
- info->bmiHeader.biBitCount = 8;
- info->bmiHeader.biCompression = BI_RGB;
-
- ScreenHDC display;
- if ( !::GetDIBits(display, GetHbitmapOf(bmp), 0,
- height, bits, info, DIB_RGB_COLORS) )
- {
- wxLogLastError(wxT("GetDIBits"));
-
- success = FALSE;
- }
-
- if ( success )
- {
- success = ::StretchDIBits(GetHdc(), xdest, ydest,
- width, height,
- xsrc, ysrc,
- width, height,
- bits, info ,
- DIB_RGB_COLORS,
- SRCCOPY) != GDI_ERROR;
- if ( !success )
- {
- wxLogLastError(wxT("StretchDIBits"));
- }
- }