[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.11 IMG_LoadTIF_RW

SDL_Surface *IMG_LoadTIF_RW(SDL_RWops *src)

src
The source SDL_RWops as a pointer. The TIF image is loaded from this.

Load src as a TIF image for use as a surface, if TIF support is compiled into the SDL_image library.

Returns: a pointer to the image as a new SDL_Surface. NULL is returned on errors, like if TIF is not supported, or a read error.

 
// load sample.tif into image
SDL_Surface *image;
SDL_RWops *rwop;
rwop=SDL_RWFromFile("sample.tif", "rb");
image=IMG_LoadTIF_RW(rwop);
if(!image) {
    printf("IMG_LoadTIF_RW: %s\n", IMG_GetError());
    // handle error
}

See Also:
3.1.3 IMG_LoadTyped_RW, 3.2.8 IMG_isTIF



This document was generated on June, 12 2003 using texi2html