期待中...

解决方案 »

  1.   

    我觉得不会很难吧,取的播放器的窗口句柄和DC,再用
    COLORREF GetPixel(
      HDC hdc,    // handle to DC
      int nXPos,  // x-coordinate of pixel
      int nYPos   // y-coordinate of pixel
    );
      

  2.   

    VOID Example_GetPixel(HDC hdc)
    {
       Graphics graphics(hdc);   // Create a Bitmap object from a JPEG file.
       Bitmap myBitmap(L"Climber.jpg");   // Get the value of a pixel from myBitmap.
       Color pixelColor;
       myBitmap.GetPixel(25, 25, &pixelColor);   // Fill a rectangle with the pixel color.
       SolidBrush brush(pixelColor);
       graphics.FillRectangle(&brush, Rect(0, 0, 100, 100));
    }
      

  3.   

    楼主会用Directshow吗?
    重写Transform Filter,在里面抓取每一帧,用相应的API就可以处理了,DX里有代码的
      

  4.   

    GetPixel 是搞不到的想办到应该学学directshow
    查查这方面的资料