亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? dibapi.cpp

?? 這是圖像平移的一個源代碼
?? CPP
?? 第 1 頁 / 共 2 頁
字號:
//  dibapi.cpp
//
//  Source file for Device-Independent Bitmap (DIB) API.  Provides
//  the following functions:
//
//  PaintDIB()          - Painting routine for a DIB
//  CreateDIBPalette()  - Creates a palette from a DIB
//  FindDIBBits()       - Returns a pointer to the DIB bits
//  DIBWidth()          - Gets the width of the DIB
//  DIBHeight()         - Gets the height of the DIB
//  PaletteSize()       - Gets the size required to store the DIB's palette
//  DIBNumColors()      - Calculates the number of colors
//                        in the DIB's color table
//  CopyHandle()        - Makes a copy of the given global memory block
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1997 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.

#include "stdafx.h"
#include "dibapi.h"
#include <io.h>
#include <errno.h>
#include <math.h>

#define DIB_HEADER_MARKER   ((WORD) ('M' << 8) | 'B')

#ifdef _MAC
#define SWAPWORD(x) MAKEWORD(HIBYTE(x), LOBYTE(x))
#define SWAPLONG(x) MAKELONG(SWAPWORD(HIWORD(x)), SWAPWORD(LOWORD(x)))
void ByteSwapHeader(BITMAPFILEHEADER* bmiHeader);
void ByteSwapInfo(LPSTR lpHeader, BOOL fWin30Header);
#endif

/*************************************************************************
 *
 * PaintDIB()
 *
 * Parameters:
 *
 * HDC hDC          - DC to do output to
 *
 * LPRECT lpDCRect  - rectangle on DC to do output to
 *
 * HDIB hDIB        - handle to global memory with a DIB spec
 *                    in it followed by the DIB bits
 *
 * LPRECT lpDIBRect - rectangle of DIB to output into lpDCRect
 *
 * CPalette* pPal   - pointer to CPalette containing DIB's palette
 *
 * Return Value:
 *
 * BOOL             - TRUE if DIB was drawn, FALSE otherwise
 *
 * Description:
 *   Painting routine for a DIB.  Calls StretchDIBits() or
 *   SetDIBitsToDevice() to paint the DIB.  The DIB is
 *   output to the specified DC, at the coordinates given
 *   in lpDCRect.  The area of the DIB to be output is
 *   given by lpDIBRect.
 *
 ************************************************************************/

BOOL WINAPI PaintDIB(HDC     hDC,
					LPRECT  lpDCRect,
					HDIB    hDIB,
					LPRECT  lpDIBRect,
					CPalette* pPal)
{
	LPSTR    lpDIBHdr;            // Pointer to BITMAPINFOHEADER
	LPSTR    lpDIBBits;           // Pointer to DIB bits
	BOOL     bSuccess=FALSE;      // Success/fail flag
	HPALETTE hPal=NULL;           // Our DIB's palette
	HPALETTE hOldPal=NULL;        // Previous palette

	/* Check for valid DIB handle */
	if (hDIB == NULL)
		return FALSE;

	/* Lock down the DIB, and get a pointer to the beginning of the bit
	 *  buffer
	 */
	lpDIBHdr  = (LPSTR) ::GlobalLock((HGLOBAL) hDIB);
	lpDIBBits = ::FindDIBBits(lpDIBHdr);

	// Get the DIB's palette, then select it into DC
	if (pPal != NULL)
	{
		hPal = (HPALETTE) pPal->m_hObject;

		// Select as background since we have
		// already realized in forground if needed
		hOldPal = ::SelectPalette(hDC, hPal, TRUE);
	}

	/* Make sure to use the stretching mode best for color pictures */
	::SetStretchBltMode(hDC, COLORONCOLOR);

	/* Determine whether to call StretchDIBits() or SetDIBitsToDevice() */
	if ((RECTWIDTH(lpDCRect)  == RECTWIDTH(lpDIBRect)) &&
	   (RECTHEIGHT(lpDCRect) == RECTHEIGHT(lpDIBRect)))
		bSuccess = ::SetDIBitsToDevice(hDC,                    // hDC
								   lpDCRect->left,             // DestX
								   lpDCRect->top,              // DestY
								   RECTWIDTH(lpDCRect),        // nDestWidth
								   RECTHEIGHT(lpDCRect),       // nDestHeight
								   lpDIBRect->left,            // SrcX
								   (int)DIBHeight(lpDIBHdr) -
									  lpDIBRect->top -
									  RECTHEIGHT(lpDIBRect),   // SrcY
								   0,                          // nStartScan
								   (WORD)DIBHeight(lpDIBHdr),  // nNumScans
								   lpDIBBits,                  // lpBits
								   (LPBITMAPINFO)lpDIBHdr,     // lpBitsInfo
								   DIB_RGB_COLORS);            // wUsage
   else
	  bSuccess = ::StretchDIBits(hDC,                          // hDC
							   lpDCRect->left,                 // DestX
							   lpDCRect->top,                  // DestY
							   RECTWIDTH(lpDCRect),            // nDestWidth
							   RECTHEIGHT(lpDCRect),           // nDestHeight
							   lpDIBRect->left,                // SrcX
							   lpDIBRect->top,                 // SrcY
							   RECTWIDTH(lpDIBRect),           // wSrcWidth
							   RECTHEIGHT(lpDIBRect),          // wSrcHeight
							   lpDIBBits,                      // lpBits
							   (LPBITMAPINFO)lpDIBHdr,         // lpBitsInfo
							   DIB_RGB_COLORS,                 // wUsage
							   SRCCOPY);                       // dwROP

   ::GlobalUnlock((HGLOBAL) hDIB);

	/* Reselect old palette */
	if (hOldPal != NULL)
	{
		::SelectPalette(hDC, hOldPal, TRUE);
	}

   return bSuccess;
}

/*************************************************************************
 *
 * CreateDIBPalette()
 *
 * Parameter:
 *
 * HDIB hDIB        - specifies the DIB
 *
 * Return Value:
 *
 * HPALETTE         - specifies the palette
 *
 * Description:
 *
 * This function creates a palette from a DIB by allocating memory for the
 * logical palette, reading and storing the colors from the DIB's color table
 * into the logical palette, creating a palette from this logical palette,
 * and then returning the palette's handle. This allows the DIB to be
 * displayed using the best possible colors (important for DIBs with 256 or
 * more colors).
 *
 ************************************************************************/


BOOL WINAPI CreateDIBPalette(HDIB hDIB, CPalette* pPal)
{
	LPLOGPALETTE lpPal;      // pointer to a logical palette
	HANDLE hLogPal;          // handle to a logical palette
	HPALETTE hPal = NULL;    // handle to a palette
	int i;                   // loop index
	WORD wNumColors;         // number of colors in color table
	LPSTR lpbi;              // pointer to packed-DIB
	LPBITMAPINFO lpbmi;      // pointer to BITMAPINFO structure (Win3.0)
	LPBITMAPCOREINFO lpbmc;  // pointer to BITMAPCOREINFO structure (old)
	BOOL bWinStyleDIB;       // flag which signifies whether this is a Win3.0 DIB
	BOOL bResult = FALSE;

	/* if handle to DIB is invalid, return FALSE */

	if (hDIB == NULL)
	  return FALSE;

   lpbi = (LPSTR) ::GlobalLock((HGLOBAL) hDIB);

   /* get pointer to BITMAPINFO (Win 3.0) */
   lpbmi = (LPBITMAPINFO)lpbi;

   /* get pointer to BITMAPCOREINFO (old 1.x) */
   lpbmc = (LPBITMAPCOREINFO)lpbi;

   /* get the number of colors in the DIB */
   wNumColors = ::DIBNumColors(lpbi);

   if (wNumColors != 0)
   {
		/* allocate memory block for logical palette */
		hLogPal = ::GlobalAlloc(GHND, sizeof(LOGPALETTE)
									+ sizeof(PALETTEENTRY)
									* wNumColors);

		/* if not enough memory, clean up and return NULL */
		if (hLogPal == 0)
		{
			::GlobalUnlock((HGLOBAL) hDIB);
			return FALSE;
		}

		lpPal = (LPLOGPALETTE) ::GlobalLock((HGLOBAL) hLogPal);

		/* set version and number of palette entries */
		lpPal->palVersion = PALVERSION;
		lpPal->palNumEntries = (WORD)wNumColors;

		/* is this a Win 3.0 DIB? */
		bWinStyleDIB = IS_WIN30_DIB(lpbi);
		for (i = 0; i < (int)wNumColors; i++)
		{
			if (bWinStyleDIB)
			{
				lpPal->palPalEntry[i].peRed = lpbmi->bmiColors[i].rgbRed;
				lpPal->palPalEntry[i].peGreen = lpbmi->bmiColors[i].rgbGreen;
				lpPal->palPalEntry[i].peBlue = lpbmi->bmiColors[i].rgbBlue;
				lpPal->palPalEntry[i].peFlags = 0;
			}
			else
			{
				lpPal->palPalEntry[i].peRed = lpbmc->bmciColors[i].rgbtRed;
				lpPal->palPalEntry[i].peGreen = lpbmc->bmciColors[i].rgbtGreen;
				lpPal->palPalEntry[i].peBlue = lpbmc->bmciColors[i].rgbtBlue;
				lpPal->palPalEntry[i].peFlags = 0;
			}
		}

		/* create the palette and get handle to it */
		bResult = pPal->CreatePalette(lpPal);
		::GlobalUnlock((HGLOBAL) hLogPal);
		::GlobalFree((HGLOBAL) hLogPal);
	}

	::GlobalUnlock((HGLOBAL) hDIB);

	return bResult;
}

/*************************************************************************
 *
 * FindDIBBits()
 *
 * Parameter:
 *
 * LPSTR lpbi       - pointer to packed-DIB memory block
 *
 * Return Value:
 *
 * LPSTR            - pointer to the DIB bits
 *
 * Description:
 *
 * This function calculates the address of the DIB's bits and returns a
 * pointer to the DIB bits.
 *
 ************************************************************************/


LPSTR WINAPI FindDIBBits(LPSTR lpbi)
{
	return (lpbi + *(LPDWORD)lpbi + ::PaletteSize(lpbi));
}


/*************************************************************************
 *
 * DIBWidth()
 *
 * Parameter:
 *
 * LPSTR lpbi       - pointer to packed-DIB memory block
 *
 * Return Value:
 *
 * DWORD            - width of the DIB
 *
 * Description:
 *
 * This function gets the width of the DIB from the BITMAPINFOHEADER
 * width field if it is a Windows 3.0-style DIB or from the BITMAPCOREHEADER
 * width field if it is an other-style DIB.
 *
 ************************************************************************/


DWORD WINAPI DIBWidth(LPSTR lpDIB)
{
	LPBITMAPINFOHEADER lpbmi;  // pointer to a Win 3.0-style DIB
	LPBITMAPCOREHEADER lpbmc;  // pointer to an other-style DIB

	/* point to the header (whether Win 3.0 and old) */

	lpbmi = (LPBITMAPINFOHEADER)lpDIB;
	lpbmc = (LPBITMAPCOREHEADER)lpDIB;

	/* return the DIB width if it is a Win 3.0 DIB */
	if (IS_WIN30_DIB(lpDIB))
		return lpbmi->biWidth;
	else  /* it is an other-style DIB, so return its width */
		return (DWORD)lpbmc->bcWidth;
}


/*************************************************************************
 *
 * DIBHeight()
 *
 * Parameter:
 *
 * LPSTR lpbi       - pointer to packed-DIB memory block
 *
 * Return Value:
 *
 * DWORD            - height of the DIB
 *
 * Description:
 *
 * This function gets the height of the DIB from the BITMAPINFOHEADER
 * height field if it is a Windows 3.0-style DIB or from the BITMAPCOREHEADER
 * height field if it is an other-style DIB.
 *
 ************************************************************************/


DWORD WINAPI DIBHeight(LPSTR lpDIB)
{
	LPBITMAPINFOHEADER lpbmi;  // pointer to a Win 3.0-style DIB
	LPBITMAPCOREHEADER lpbmc;  // pointer to an other-style DIB

	/* point to the header (whether old or Win 3.0 */

	lpbmi = (LPBITMAPINFOHEADER)lpDIB;
	lpbmc = (LPBITMAPCOREHEADER)lpDIB;

	/* return the DIB height if it is a Win 3.0 DIB */
	if (IS_WIN30_DIB(lpDIB))
		return lpbmi->biHeight;
	else  /* it is an other-style DIB, so return its height */
		return (DWORD)lpbmc->bcHeight;
}


/*************************************************************************
 *
 * PaletteSize()
 *
 * Parameter:
 *
 * LPSTR lpbi       - pointer to packed-DIB memory block
 *
 * Return Value:
 *
 * WORD             - size of the color palette of the DIB
 *
 * Description:
 *
 * This function gets the size required to store the DIB's palette by
 * multiplying the number of colors by the size of an RGBQUAD (for a
 * Windows 3.0-style DIB) or by the size of an RGBTRIPLE (for an other-
 * style DIB).
 *
 ************************************************************************/


WORD WINAPI PaletteSize(LPSTR lpbi)
{
   /* calculate the size required by the palette */
   if (IS_WIN30_DIB (lpbi))
	  return (WORD)(::DIBNumColors(lpbi) * sizeof(RGBQUAD));
   else
	  return (WORD)(::DIBNumColors(lpbi) * sizeof(RGBTRIPLE));
}


/*************************************************************************
 *
 * DIBNumColors()
 *
 * Parameter:
 *
 * LPSTR lpbi       - pointer to packed-DIB memory block
 *
 * Return Value:
 *
 * WORD             - number of colors in the color table
 *
 * Description:
 *
 * This function calculates the number of colors in the DIB's color table
 * by finding the bits per pixel for the DIB (whether Win3.0 or other-style
 * DIB). If bits per pixel is 1: colors=2, if 4: colors=16, if 8: colors=256,
 * if 24, no colors in color table.
 *
 ************************************************************************/


WORD WINAPI DIBNumColors(LPSTR lpbi)
{
	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(lpbi))
	{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩久久久精品| 色999日韩国产欧美一区二区| 91国产成人在线| 亚洲免费观看在线观看| 色综合久久天天综合网| 亚洲精品高清在线观看| 欧美日韩高清一区二区| 美女网站在线免费欧美精品| 欧美一区二区三区免费视频| 精品一区二区免费视频| 国产日韩欧美一区二区三区综合| 成人免费看的视频| 亚洲欧美日韩系列| 欧美肥妇bbw| 国产高清久久久| 国产精品理论片| 欧美探花视频资源| 久久av中文字幕片| 中文字幕中文字幕一区二区| 在线精品视频免费播放| 蜜桃视频免费观看一区| 国产亚洲人成网站| 色狠狠一区二区| 青青国产91久久久久久| 中文字幕第一区二区| 欧美无砖专区一中文字| 国产乱国产乱300精品| 亚洲欧美偷拍卡通变态| 日韩午夜在线影院| 不卡免费追剧大全电视剧网站| 亚洲一区二区在线视频| 久久免费的精品国产v∧| 日本伦理一区二区| 狠狠色综合播放一区二区| 亚洲欧美一区二区三区久本道91 | 成人性生交大片免费看在线播放| 一区二区中文字幕在线| 日韩午夜av一区| 91在线云播放| 久久99热国产| 亚洲一区二区欧美日韩| 久久精品一区二区| 欧美老肥妇做.爰bbww| 福利电影一区二区三区| 亚洲五码中文字幕| 国产女同性恋一区二区| 91精品在线免费观看| 91亚洲精华国产精华精华液| 久久91精品久久久久久秒播| 亚洲成人动漫在线观看| 国产精品麻豆网站| 久久久久久久免费视频了| 欧美日韩高清一区二区| 一道本成人在线| 成人精品鲁一区一区二区| 美女视频第一区二区三区免费观看网站| 中文字幕制服丝袜成人av| 精品国内二区三区| 69堂国产成人免费视频| 欧美在线一二三四区| 99精品视频在线免费观看| 国产精华液一区二区三区| 老司机一区二区| 天堂蜜桃一区二区三区| 午夜一区二区三区在线观看| 亚洲天堂精品视频| 国产欧美精品区一区二区三区| 日韩欧美自拍偷拍| 91精品久久久久久久91蜜桃| 欧美自拍偷拍一区| 欧美丝袜丝nylons| 欧美色爱综合网| 在线这里只有精品| 欧美性受极品xxxx喷水| 91国偷自产一区二区三区成为亚洲经典| 国产91露脸合集magnet| 国产精品一区一区三区| 国产精品资源站在线| 国产在线看一区| 国产伦精品一区二区三区视频青涩| 美女看a上一区| 激情综合五月婷婷| 国产一区二区精品久久| 国产河南妇女毛片精品久久久| 另类人妖一区二区av| 激情久久五月天| 国产精品一区二区三区网站| 国产精品一区二区男女羞羞无遮挡| 国产精品影音先锋| 成人一级视频在线观看| www.性欧美| 91电影在线观看| 欧美日韩在线播| 欧美日韩电影在线播放| 欧美精品v国产精品v日韩精品| 欧美三电影在线| 欧美一级爆毛片| 久久无码av三级| 亚洲欧洲国产日韩| 亚洲国产va精品久久久不卡综合 | 丝袜a∨在线一区二区三区不卡| 天天综合网 天天综合色| 蜜桃久久精品一区二区| 日韩成人精品视频| 麻豆国产欧美一区二区三区| 亚洲综合色视频| 亚洲在线一区二区三区| 欧美久久一二区| 91在线免费看| 欧美一区二区免费| 亚洲视频 欧洲视频| 丝袜a∨在线一区二区三区不卡| 无吗不卡中文字幕| 成人avav影音| 91精品国产色综合久久ai换脸| 精品成人一区二区三区四区| 亚洲免费观看高清在线观看| 精品一二三四区| 99久久精品国产导航| 激情亚洲综合在线| 一本色道a无线码一区v| 中文在线一区二区| 日本va欧美va欧美va精品| 一本到一区二区三区| 久久久久综合网| 国产精品99久久久久久久女警| 欧美日产国产精品| 亚洲成人激情自拍| 欧美无乱码久久久免费午夜一区| 中文字幕一区二区三区四区不卡 | 国产高清亚洲一区| 日韩手机在线导航| 美女性感视频久久| 久久久www成人免费毛片麻豆 | 欧美日韩国产高清一区二区三区| 中文字幕一区在线观看视频| 岛国精品在线播放| 亚洲国产精品精华液ab| 国产白丝网站精品污在线入口| 久久久影视传媒| 丁香网亚洲国际| 国产精品免费观看视频| 暴力调教一区二区三区| 亚洲免费观看高清完整版在线观看熊| 国产a久久麻豆| 亚洲欧美日本在线| 日韩一区二区免费电影| 国产在线播放一区三区四| 国产精品毛片高清在线完整版| 日本黄色一区二区| 男女男精品视频| 中文字幕一区二区三区在线不卡| 91成人国产精品| 国产乱人伦偷精品视频不卡| 亚洲丝袜制服诱惑| 精品捆绑美女sm三区| 一本久道久久综合中文字幕| 奇米精品一区二区三区在线观看一| 久久久99精品久久| 欧美精品粉嫩高潮一区二区| 国产成人99久久亚洲综合精品| 亚洲一区二区不卡免费| 国产欧美日韩在线观看| 欧美一个色资源| 在线观看免费视频综合| jlzzjlzz亚洲女人18| 黄色成人免费在线| 麻豆精品视频在线观看视频| 亚洲精品v日韩精品| 亚洲三级电影网站| 亚洲国产精品v| 中文字幕欧美日本乱码一线二线 | 亚洲免费视频中文字幕| 国产精品美女一区二区三区 | 国产不卡高清在线观看视频| 男女男精品网站| 韩国精品主播一区二区在线观看 | 日韩亚洲欧美成人一区| 91精品国产91久久久久久一区二区| 欧美在线综合视频| 制服丝袜成人动漫| 欧美日免费三级在线| 欧美日本不卡视频| 91精品一区二区三区久久久久久 | 福利一区福利二区| 国产精一品亚洲二区在线视频| 精品亚洲欧美一区| 99精品视频一区| 91视频免费观看| 制服丝袜中文字幕一区| 精品国产免费视频| 国产精品美女久久福利网站| 一区二区三区四区精品在线视频 | 日韩女优毛片在线| 国产欧美日韩在线视频| 亚洲综合精品自拍| 国产美女视频91| 91成人免费在线视频| 久久久久久亚洲综合影院红桃| 亚洲狠狠丁香婷婷综合久久久|