资源简介

VC6.0做的仿按键精灵找图找色功能 。生成的findpicture.dll可以被调用来找图片。

资源截图

代码片段和文件信息

// FindPicture.cpp : Defines the initialization routines for the DLL.
//

#include “stdafx.h“
#include “FindPicture.h“
#include  

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

//
// Note!
//
// If this DLL is dynamically linked against the MFC
// DLLs any functions exported from this DLL which
// call into MFC must have the AFX_MANAGE_STATE macro
// added at the very beginning of the function.
//
// For example:
//
// extern “C“ BOOL PASCAL EXPORT ExportedFunction()
// {
// AFX_MANAGE_STATE(AfxGetStaticModuleState());
// // normal function body here
// }
//
// It is very important that this macro appear in each
// function prior to any calls into MFC.  This means that
// it must appear as the first statement within the 
// function even before any object variable declarations
// as their constructors may generate calls into the MFC
// DLL.
//
// Please see MFC Technical Notes 33 and 58 for additional
// details.
//

/////////////////////////////////////////////////////////////////////////////
// CFindPictureApp

BEGIN_MESSAGE_MAP(CFindPictureApp CWinApp)
//{{AFX_MSG_MAP(CFindPictureApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CFindPictureApp construction

CFindPictureApp::CFindPictureApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CFindPictureApp object

CFindPictureApp theApp;
CPoint FindPicture(int x0int y0int x1int y1int EndurationValueCString Bmpfilename)
{   //************************************************************************

CDC   SourceCDC;   
HBITMAP  SourcehBtmp;
BITMAP   Sourcebm;   
CBitmap  SourceCbtmp;
SourcehBtmp = (HBITMAP)::LoadImage(NULLBmpfilenameIMAGE_BITMAP00LR_LOADFROMFILE);
SourceCbtmp.Deleteobject();
SourceCbtmp.Attach( SourcehBtmp);//HBITMAP->Cbitmap
SourceCbtmp.GetBitmap(&Sourcebm);//c bitmap->BITMAP


CDC *pDCDilog ;
HDC  pDCDiloghdc;
pDCDiloghdc=GetDC(NULL);//对话框DC///////////////
    pDCDilog=::CDC::FromHandle(pDCDiloghdc); 
SourceCDC.CreateCompatibleDC(pDCDilog); //这建立的就是与桌面窗口兼容的DC。
SourceCDC.Selectobject(&SourceCbtmp);//medc赋值   
    //************************************************************************Get LocalMap Info

HDC hDCscreen = ::GetDC(HWND_DESKTOP); //屏幕DC
HDC hTmpDC = CreateCompatibleDC(hDCscreen);  

int ScreenWidth=0;
int ScreenHeight=0;
ScreenWidth=::GetSystemMetrics(SM_CXSCREEN);
ScreenHeight=::GetSystemMetrics(SM_CYSCREEN);
CString HAndW;
HAndW.Format(“屏幕分辨率是 %d%d“ScreenWidthScreenHeight);
//::MessageBox(NULLHAnd

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-09-08 12:18  FindPicture\
     文件        4270  2012-03-10 01:51  FindPicture\1.bmp
     文件       17976  2014-09-08 12:07  FindPicture\FindPicture.aps
     文件         352  2012-04-11 11:19  FindPicture\FindPicture.clw
     文件        8984  2012-05-12 10:20  FindPicture\FindPicture.cpp
     文件         213  2012-04-11 13:39  FindPicture\FindPicture.def
     文件        4231  2012-04-11 11:19  FindPicture\FindPicture.dsp
     文件         547  2012-04-11 11:19  FindPicture\FindPicture.dsw
     文件        1308  2012-04-11 11:19  FindPicture\FindPicture.h
     文件       58368  2014-09-08 12:18  FindPicture\FindPicture.ncb
     文件      186880  2014-09-08 12:18  FindPicture\FindPicture.opt
     文件         258  2014-09-08 12:14  FindPicture\FindPicture.plg
     文件        3095  2012-04-11 11:19  FindPicture\FindPicture.rc
     文件        2629  2012-04-11 11:19  FindPicture\ReadMe.txt
     目录           0  2014-09-06 10:31  FindPicture\res\
     文件         383  2012-04-11 11:19  FindPicture\Resource.h
     文件         403  2012-04-11 11:19  FindPicture\res\FindPicture.rc2
     文件         213  2012-04-11 11:19  FindPicture\StdAfx.cpp
     文件        1447  2012-04-11 11:19  FindPicture\StdAfx.h

评论

共有 条评论