Tao.Sdl SDK Documentation

SdlImage.IMG_isBMP Method 

Test for valid, supported BMP file.

[Visual Basic]
Public Shared Function IMG_isBMP( _
   ByVal src As IntPtr _
) As IntPtr
[C#]
public static IntPtr IMG_isBMP(
   IntPtr src
);

Parameters

src

Return Value

1 if the image is a BMP and the BMP format support is compiled into SDL_image. 0 is returned otherwise.

Remarks

If the BMP format is supported, then the image data is tested to see if it is readable as a BMP, otherwise it returns false (Zero).

Binds to C-function in SDL_image.h

            int IMG_isBMP(SDL_RWops *src)
            

Example

            // Test sample.bmp to see if it is a BMP
                    SDL_RWops *rwop;
                    rwop=SDL_RWFromFile("sample.bmp", "rb");
                    if(IMG_isBMP(rwop))
                    printf("sample.bmp is a BMP file.\n");
                    else
                    printf("sample.bmp is not a BMP file, or BMP support is not available.\n");
            

See Also

SdlImage Class | Tao.Sdl Namespace | IMG_LoadTyped_RW