1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
#include "stdafx.h"
#include <stdio.h>
#include <string.h>
#include <windows.h>
#include <conio.h>
#include <iostream>
using namespace std;
HWND CopyBitmap(char*,HWND=0,int=0,int=0,int=0,int=0,int=0,int=0,int=0,int=0);
HWND ConsoleWindow(void);
int _tmain(int argc, _TCHAR* argv[])
{
if (HWND myWin = ConsoleWindow())
{
CopyBitmap("C:\\sample.bmp",myWin,123,1,1,0,0);
_getch();
}
return 0;
}
HWND CopyBitmap(char* Text,HWND hWnd,int id,int X,int Y,int W,int H,int Res,int Style,int Exstyle)
{
HWND A;
HBITMAP hBitmap;
if (!Style) Style = WS_CLIPSIBLINGS|WS_CHILD|WS_VISIBLE|SS_BITMAP|WS_TABSTOP;
A = CreateWindowEx(Exstyle,"static",NULL,Style,X,Y,0,0,hWnd,(HMENU)id,GetModuleHandle(0),NULL);
hBitmap=(HBITMAP)LoadImage(0,Text,IMAGE_BITMAP,0,0,LR_LOADFROMFILE|LR_CREATEDIBSECTION);
if (W || H) hBitmap = (HBITMAP)CopyImage(hBitmap,IMAGE_BITMAP,W,H,LR_COPYRETURNORG);
SendMessage(A,(UINT)STM_SETIMAGE,(WPARAM)IMAGE_BITMAP,(LPARAM)hBitmap);
if (W || H) SetWindowPos(A,HWND_TOP,X,Y,W,H,SWP_DRAWFRAME);
return A;
}
HWND ConsoleWindow(void)
{
HWND myWin;
OSVERSIONINFO os;
char szTempTitle[64], szClassName[128], szOriginalTitle[1024];
os.dwOSVersionInfoSize = sizeof( OSVERSIONINFO );
GetVersionEx( &os );
if ( os.dwPlatformId == VER_PLATFORM_WIN32s ) return 0;
GetConsoleTitle( szOriginalTitle, sizeof ( szOriginalTitle ) );
sprintf( szTempTitle,"%u - %u", GetTickCount(), GetCurrentProcessId() );
SetConsoleTitle( szTempTitle );
Sleep( 40 );
myWin = FindWindow( NULL, szTempTitle );
SetConsoleTitle( szOriginalTitle );
if ( os.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS )
{
myWin = GetWindow( myWin, GW_CHILD );
if ( myWin == NULL ) return 0;
GetClassName( myWin, szClassName, sizeof ( szClassName ) );
while ( strcmp( szClassName, "ttyGrab" ) != 0 )
{
myWin = GetNextWindow( myWin, GW_HWNDNEXT );
if ( myWin == NULL ) return 0;
GetClassName( myWin, szClassName, sizeof( szClassName ) );
}
}
return myWin;
}
|