123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- // BitmapHelper.cpp: implementation of the CBitmapHelper class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "cp_main.h"
- #include "BitmapHelper.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CBitmapHelper::CBitmapHelper()
- {
- }
- CBitmapHelper::~CBitmapHelper()
- {
- }
- int CBitmapHelper::GetCBitmapWidth(const CBitmap & cbm)
- {
- BITMAP bm;
- cbm.GetObject(sizeof(BITMAP),&bm);
- return bm.bmWidth;
- }
- int CBitmapHelper::GetCBitmapHeight(const CBitmap & cbm)
- {
- BITMAP bm;
- cbm.GetObject(sizeof(BITMAP),&bm);
- return bm.bmHeight;
- }
- BOOL CBitmapHelper::GetCBitmap(void *pClip2, CDC *pDC, CBitmap *pBitMap, int nMaxHeight)
- {
- BOOL bRet = FALSE;
- CClipFormat *pClip = (CClipFormat *)pClip2;
- if(pClip->m_cfType == CF_DIB ||
- pClip->m_cfType == theApp.m_PNG_Format)
- {
- if(pBitMap)
- {
- if (nMaxHeight < INT_MAX)
- {
- Gdiplus::Bitmap *gdipBitmap = pClip->CreateGdiplusBitmap();
- if (gdipBitmap != NULL &&
- gdipBitmap->GetHeight() > 0 &&
- gdipBitmap->GetWidth() > 0)
- {
- int nHeight = min(nMaxHeight, gdipBitmap->GetHeight());
- int nWidth = (nHeight * gdipBitmap->GetWidth()) / gdipBitmap->GetHeight();
- //do the resize
- pBitMap->CreateCompatibleBitmap(pDC, nWidth, nHeight);
- ASSERT(pBitMap->m_hObject != NULL);
- CDC MemDc2;
- MemDc2.CreateCompatibleDC(pDC);
- CBitmap* oldBitmap2 = MemDc2.SelectObject(pBitMap);
- Gdiplus::ImageAttributes attrs;
- Gdiplus::Rect dest(0, 0, nWidth, nHeight);
- Gdiplus::Graphics graphics(MemDc2);
- graphics.SetInterpolationMode(Gdiplus::InterpolationModeHighQualityBicubic);
- graphics.SetPixelOffsetMode(Gdiplus::PixelOffsetModeHalf);
- graphics.DrawImage(gdipBitmap, dest, 0, 0, gdipBitmap->GetWidth(), gdipBitmap->GetHeight(), Gdiplus::UnitPixel, &attrs);
- MemDc2.SelectObject(oldBitmap2);
- }
- delete gdipBitmap;
- }
- /*else
- {
- pBitMap->CreateCompatibleBitmap(pDC, nWidth, nHeight);
- ASSERT(pBitMap->m_hObject != NULL);
- CDC MemDc;
- MemDc.CreateCompatibleDC(pDC);
- CBitmap* oldBitmap = MemDc.SelectObject(pBitMap);
- ::StretchDIBits(MemDc.m_hDC,
- 0, 0,
- lpBI->bmiHeader.biWidth, lpBI->bmiHeader.biHeight,
- 0, 0, lpBI->bmiHeader.biWidth,
- lpBI->bmiHeader.biHeight,
- pDIBBits, lpBI, DIB_PAL_COLORS, SRCCOPY);
- MemDc.SelectObject(oldBitmap);
- }*/
- bRet = TRUE;
- }
- }
-
- return bRet;
- }
- WORD CBitmapHelper::PaletteSize(LPSTR lpDIB)
- {
- // calculate the size required by the palette
- if (IS_WIN30_DIB (lpDIB))
- return (DIBNumColors(lpDIB) * sizeof(RGBQUAD));
- else
- return (DIBNumColors(lpDIB) * sizeof(RGBTRIPLE));
- }
- WORD CBitmapHelper::DIBNumColors(LPSTR lpDIB)
- {
- WORD wBitCount; // DIB bit count
- // If this is a Windows-style DIB, the number of colors in the
- // color table can be less than the number of bits per pixel
- // allows for (i.e. lpbi->biClrUsed can be set to some value).
- // If this is the case, return the appropriate value.
-
- if (IS_WIN30_DIB(lpDIB))
- {
- DWORD dwClrUsed;
- dwClrUsed = ((LPBITMAPINFOHEADER)lpDIB)->biClrUsed;
- if (dwClrUsed)
- return (WORD)dwClrUsed;
- }
- // Calculate the number of colors in the color table based on
- // the number of bits per pixel for the DIB.
-
- if (IS_WIN30_DIB(lpDIB))
- wBitCount = ((LPBITMAPINFOHEADER)lpDIB)->biBitCount;
- else
- wBitCount = ((LPBITMAPCOREHEADER)lpDIB)->bcBitCount;
- // return number of colors based on bits per pixel
- switch (wBitCount)
- {
- case 1:
- return 2;
- case 4:
- return 16;
- case 8:
- return 256;
- default:
- return 0;
- }
- }
- HANDLE CBitmapHelper::hBitmapToDIB(HBITMAP hBitmap, DWORD dwCompression, HPALETTE hPal)
- {
- BITMAP bm;
- BITMAPINFOHEADER bi;
- LPBITMAPINFOHEADER lpbi;
- DWORD dwLen;
- HANDLE hDIB;
- HANDLE handle;
- HDC hDC;
- // The function has no arg for bitfields
- if( dwCompression == BI_BITFIELDS )
- return NULL;
- // If a palette has not been supplied use defaul palette
- if (hPal==NULL)
- hPal = (HPALETTE) GetStockObject(DEFAULT_PALETTE);
- // Get bitmap information
- (void)GetObject( hBitmap, sizeof(bm), (LPSTR)&bm );
- // Initialize the bitmapinfoheader
- bi.biSize = sizeof(BITMAPINFOHEADER);
- bi.biWidth = bm.bmWidth;
- bi.biHeight = bm.bmHeight;
- bi.biPlanes = 1;
- bi.biBitCount = static_cast<USHORT>( bm.bmPlanes * bm.bmBitsPixel );
- bi.biCompression = dwCompression;
- bi.biSizeImage = 0;
- bi.biXPelsPerMeter = 0;
- bi.biYPelsPerMeter = 0;
- bi.biClrUsed = 0;
- bi.biClrImportant = 0;
- dwLen = bi.biSize + PaletteSize((LPSTR)&bi);
- // We need a device context to get the DIB from
- hDC = GetDC(NULL);
- hPal = SelectPalette(hDC,hPal,FALSE);
- (void)RealizePalette(hDC);
- // Allocate enough memory to hold bitmapinfoheader and color table
- hDIB = GlobalAlloc(GMEM_FIXED,dwLen);
- if (!hDIB)
- {
- (void)SelectPalette(hDC,hPal,FALSE);
- ReleaseDC(NULL,hDC);
- return NULL;
- }
- lpbi = (LPBITMAPINFOHEADER)hDIB;
- *lpbi = bi;
- // Call GetDIBits with a NULL lpBits param, so the device driver
- // will calculate the biSizeImage field
- (void)GetDIBits(hDC, hBitmap, 0L, (DWORD)bi.biHeight,
- (LPBYTE)NULL, (LPBITMAPINFO)lpbi, (DWORD)DIB_RGB_COLORS);
- bi = *lpbi;
- // If the driver did not fill in the biSizeImage field, then compute it
- // Each scan line of the image is aligned on a DWORD (32bit) boundary
- if (bi.biSizeImage == 0)
- {
- bi.biSizeImage = ((((bi.biWidth * bi.biBitCount) + 31) & ~31) / 8)
- * bi.biHeight;
- // If a compression scheme is used the result may infact be larger
- // Increase the size to account for this.
- if (dwCompression != BI_RGB)
- bi.biSizeImage = (bi.biSizeImage * 3) / 2;
- }
- // Realloc the buffer so that it can hold all the bits
- dwLen += bi.biSizeImage;
- handle = GlobalReAlloc(hDIB, dwLen, GMEM_MOVEABLE);
- if(handle)
- {
- hDIB = handle;
- }
- else
- {
- GlobalFree(hDIB);
- // Reselect the original palette
- (void)SelectPalette(hDC,hPal,FALSE);
- ReleaseDC(NULL,hDC);
- return NULL;
- }
- // Get the bitmap bits
- lpbi = (LPBITMAPINFOHEADER)hDIB;
- // FINALLY get the DIB
- BOOL bGotBits = GetDIBits( hDC, hBitmap,
- 0L, // Start scan line
- (DWORD)bi.biHeight, // # of scan lines
- (LPBYTE)lpbi // address for bitmap bits
- + (bi.biSize + PaletteSize((LPSTR)&bi)),
- (LPBITMAPINFO)lpbi, // address of bitmapinfo
- (DWORD)DIB_RGB_COLORS); // Use RGB for color table
- if( !bGotBits )
- {
- GlobalFree(hDIB);
-
- (void)SelectPalette(hDC,hPal,FALSE);
- ReleaseDC(NULL,hDC);
- return NULL;
- }
- (void)SelectPalette(hDC,hPal,FALSE);
- ReleaseDC(NULL,hDC);
- return hDIB;
- }
- bool CBitmapHelper::DrawDIB(CDC *pDC, HANDLE hData, int nLeft, int nRight, int &nWidth)
- {
- LPBITMAPINFO lpBI ;
- void* pDIBBits;
- bool bRet = false;
-
- lpBI = (LPBITMAPINFO)GlobalLock(hData);
- if(lpBI)
- {
- int nColors = lpBI->bmiHeader.biClrUsed ? lpBI->bmiHeader.biClrUsed : 1 << lpBI->bmiHeader.biBitCount;
- if( lpBI->bmiHeader.biBitCount > 8 )
- {
- pDIBBits = (LPVOID)((LPDWORD)(lpBI->bmiColors + lpBI->bmiHeader.biClrUsed) +
- ((lpBI->bmiHeader.biCompression == BI_BITFIELDS) ? 3 : 0));
- }
- else
- {
- pDIBBits = (LPVOID)(lpBI->bmiColors + nColors);
- }
- ::StretchDIBits(pDC->m_hDC,
- nLeft, nRight,
- lpBI->bmiHeader.biWidth, lpBI->bmiHeader.biHeight,
- 0, 0, lpBI->bmiHeader.biWidth,
- lpBI->bmiHeader.biHeight,
- pDIBBits, lpBI, DIB_PAL_COLORS, SRCCOPY);
- nWidth = lpBI->bmiHeader.biWidth;
- GlobalUnlock(hData) ;
- bRet = true;
- }
- return bRet;
- }
|