Test for valid, supported LBM file.
1 if the image is a LBM and the LBM format support is compiled into SDL_image. 0 is returned otherwise.
Binds to C-function in SDL_image.h
int IMG_isLBM(SDL_RWops *src)
// Test sample.lbm to see if it is a LBM SDL_RWops *rwop; rwop=SDL_RWFromFile("sample.lbm", "rb"); if(IMG_isLBM(rwop)) printf("sample.lbm is a LBM file.\n"); else printf("sample.lbm is not a LBM file, or LBM support is not available.\n");
SdlImage Class | Tao.Sdl Namespace | IMG_LoadTyped_RW