如何从SDL_Surface获取特定像素的颜色?

时间:2018-10-28 17:00:06

标签: c++ sdl

我正在尝试从SDL_Surface获取像素的RGB / RGBA颜色。我在互联网上找到了此代码,但返回的数字很奇怪(对于0红色,0绿色,255蓝色的像素,它为67372036)

Uint32 get_pixel32(SDL_Surface *surface, int x, int y)
{
    Uint32 *pixels = (Uint32 *)surface->pixels;
    return pixels[(y * surface->w) + x];
}

这就是我一直在使用的代码:

Uint32 data = get_pixel32(gSurface, 0, 0);
printf("%i", data);

我不确定我的像素是否为32位格式,但是其他图片也无法正常工作。

2 个答案:

答案 0 :(得分:2)

这取决于表面或SDL_PixelFormat的颜色格式。您可以按照该页面上显示的内容进行操作,也可以只使用SDL_GetRGB

答案 1 :(得分:1)

找到了此代码,并且工作正常。

Uint32 getpixel(SDL_Surface *surface, int x, int y)
{
    int bpp = surface->format->BytesPerPixel;
    /* Here p is the address to the pixel we want to retrieve */
    Uint8 *p = (Uint8 *)surface->pixels + y * surface->pitch + x * bpp;

switch (bpp)
{
    case 1:
        return *p;
        break;

    case 2:
        return *(Uint16 *)p;
        break;

    case 3:
        if (SDL_BYTEORDER == SDL_BIG_ENDIAN)
            return p[0] << 16 | p[1] << 8 | p[2];
        else
            return p[0] | p[1] << 8 | p[2] << 16;
            break;

        case 4:
            return *(Uint32 *)p;
            break;

        default:
            return 0;       /* shouldn't happen, but avoids warnings */
      }
}



SDL_Color rgb;
Uint32 data = getpixel(gSurface, 200, 200);
SDL_GetRGB(data, gSurface->format, &rgb.r, &rgb.g, &rgb.b);