I am working on VC6 platform and have written a code for capturing CDC in to png. While running this code snippet from desktop and on the network drive this code is working fine and generating the desired output. But when i run this code on Citrix then i am not getting the desired png. While running via citrix the results are different using the same loginid some terminals are generating output while some are not..Here is my code snippet
'HBITMAP hBmp = (HBITMAP)GetCurrentObject( p_hDC, OBJ_BITMAP );
BITMAPINFO stBmpInfo;
stBmpInfo.bmiHeader.biSize = sizeof( stBmpInfo.bmiHeader );
stBmpInfo.bmiHeader.biBitCount = 0;
int iErrCode = GetDIBits( p_hDC, hBmp, 0, 0, NULL, &stBmpInfo, DIB_RGB_COLORS );
ULONG iBmpInfoSize;
switch( stBmpInfo.bmiHeader.biBitCount )
{
case 24:
iBmpInfoSize = sizeof(BITMAPINFOHEADER);
break;
case 16:
case 32:
iBmpInfoSize = sizeof(BITMAPINFOHEADER) + sizeof(DWORD) * 3;
break;
default:
iBmpInfoSize = sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * ( 1 << stBmpInfo.bmiHeader.biBitCount );
break;
}
PBITMAPINFO pstBmpInfo;
if(iBmpInfoSize != sizeof(BITMAPINFOHEADER) )
{
//pstBmpInfo = (PBITMAPINFO)GlobalAlloc( GMEM_FIXED | GMEM_ZEROINIT, iBmpInfoSize );
HANDLE hHeap;
pstBmpInfo = (PBITMAPINFO)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY | HEAP_NO_SERIALIZE, iBmpInfoSize);
PBYTE pbtBmpInfoDest = (PBYTE)pstBmpInfo;
PBYTE pbtBmpInfoSrc = (PBYTE)&stBmpInfo;
ULONG iSizeTmp = sizeof( BITMAPINFOHEADER );
while( iSizeTmp-- )
{
*((pbtBmpInfoDest)++ )= *((pbtBmpInfoSrc)++);
}
}
HANDLE hFile = CreateFile(p_pchFileName
, GENERIC_READ | GENERIC_WRITE
, FILE_SHARE_WRITE
, NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_NORMAL | FILE_ATTRIBUTE_ARCHIVE | SECURITY_IMPERSONATION
, NULL);
BITMAPFILEHEADER stBmpFileHder;
stBmpFileHder.bfType = 0x4D42; // 'BM'
stBmpFileHder.bfSize = sizeof(BITMAPFILEHEADER)
+ sizeof(BITMAPINFOHEADER)
+ iBmpInfoSize
+ pstBmpInfo->bmiHeader.biSizeImage;
stBmpFileHder.bfReserved1 = 0;
stBmpFileHder.bfReserved2 = 0;
stBmpFileHder.bfOffBits = sizeof(BITMAPFILEHEADER) + iBmpInfoSize;
DWORD dRet;
WriteFile( hFile, (LPCVOID)&stBmpFileHder, sizeof(BITMAPFILEHEADER), &dRet, NULL );
//PBYTE pBits = (PBYTE)GlobalAlloc(GMEM_FIXED | GMEM_ZEROINIT, stBmpInfo.bmiHeader.biSizeImage );
HANDLE hHeapByt;
PBYTE pBits = (PBYTE)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY | HEAP_NO_SERIALIZE, stBmpInfo.bmiHeader.biSizeImage );
HBITMAP hBmpOld;
HBITMAP hTmpBmp = CreateCompatibleBitmap(p_hDC
, pstBmpInfo->bmiHeader.biWidth
, pstBmpInfo->bmiHeader.biHeight );
hBmpOld = (HBITMAP)SelectObject( p_hDC, hTmpBmp );
iErrCode = GetDIBits(p_hDC
, hBmp
, 0
, pstBmpInfo->bmiHeader.biHeight
, (LPSTR)pBits
, pstBmpInfo
, DIB_RGB_COLORS );
bool bFlag = WriteFile(hFile, (LPCVOID)pstBmpInfo, iBmpInfoSize, &dRet, NULL );
bFlag = WriteFile(hFile, (LPCVOID)pBits, pstBmpInfo->bmiHeader.biSizeImage, &dRet, NULL );
SelectObject( p_hDC, hBmpOld );
DeleteObject( hTmpBmp );
CloseHandle( hFile );
HeapFree(GetProcessHeap(), HEAP_NO_SERIALIZE, pstBmpInfo);
HeapFree(GetProcessHeap(), HEAP_NO_SERIALIZE, pBits);
//GlobalFree( pstBmpInfo );
//GlobalFree( pBits );
'
Have anybody faced this situation and please do tell me where i am wrong and what i can do to solve this puzzle.
Looking forward for solutions and suggestions.
p_hDC? – l33t Nov 5 '12 at 16:34