mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0029184: Visualization - DrawWindow::Save() fails when using WinCodec with PNG codec
DrawWindow::Save() now uses Image_Format_BGR instead of Image_Format_BGR32 for better compatibility with image encoders when dumping WinAPI bitmap.
This commit is contained in:
parent
fae1ae1182
commit
7c4ce93bab
@ -1795,8 +1795,8 @@ static Standard_Boolean SaveBitmap (HBITMAP theHBitmap,
|
||||
}
|
||||
|
||||
Image_AlienPixMap anImage;
|
||||
const Standard_Size aSizeRowBytes = Standard_Size(aBitmap.bmWidth) * 4;
|
||||
if (!anImage.InitTrash (Image_Format_BGR32, Standard_Size(aBitmap.bmWidth), Standard_Size(aBitmap.bmHeight), aSizeRowBytes))
|
||||
const Standard_Size aSizeRowBytes = ((Standard_Size(aBitmap.bmWidth) * 24 + 31) / 32) * 4; // 4 bytes alignment for GetDIBits()
|
||||
if (!anImage.InitTrash (Image_Format_BGR, Standard_Size(aBitmap.bmWidth), Standard_Size(aBitmap.bmHeight), aSizeRowBytes))
|
||||
{
|
||||
return Standard_False;
|
||||
}
|
||||
@ -1809,7 +1809,7 @@ static Standard_Boolean SaveBitmap (HBITMAP theHBitmap,
|
||||
aBitmapInfo.biWidth = aBitmap.bmWidth;
|
||||
aBitmapInfo.biHeight = aBitmap.bmHeight; // positive means bottom-up!
|
||||
aBitmapInfo.biPlanes = 1;
|
||||
aBitmapInfo.biBitCount = 32; // use 32bit for automatic word-alignment per row
|
||||
aBitmapInfo.biBitCount = 24;
|
||||
aBitmapInfo.biCompression = BI_RGB;
|
||||
|
||||
// Copy the pixels
|
||||
|
Loading…
x
Reference in New Issue
Block a user