我使用VS2010 MFC。
我想做以下步骤。
但我不知道步骤......
请告诉我:))
答案 0 :(得分:0)
这应该有效:
#include "atlimage.h" // This is neccesary to use CImage objects from GDI+
void dummy ()
{
std::string bitmapFile = "file.bmp"; // Full path of your bitmap file
int x = 0; // Your x coordinate
int y = 0; // Your y coordinate
CImage image;
if ( SUCCEEDED ( image.Load ( bitmapFile.c_str() ) ) )
{
COLORREF color = image.GetPixel ( x, y );
}
}