问题 I want to check if a pixel on the screen is red or not . I am using allegro 5 . Here is my code ALLEGRO_BITMAP *bitmap ; int x , y; x=*xIter-20; y=*yIter; ALLEGRO_COLOR red_color = al_map_rgb (255,0,0); ALLEGRO_COLOR new_color = al_get_pixel (bitmap , x , y); if(new_color==red_color) return 1; But it reports a sytnax error error C2678: binary '==' : no operator found which takes a left-hand operand of type 'ALLEGRO_COLOR' (or there is no acceptable conversion) 回答1: unsigned char r,g,b; al