[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
SDL_Surface *IMG_LoadTyped_RW(SDL_RWops *src, int freesrc, char *type)
"TGA" "BMP" "PNM" "XPM" "XCF" "PCX" "GIF" "JPG" "TIF" "LBM" "PNG" |
Load src for use as a surface. This can load all supported image formats. This method does not guarantee that the format specified by type is the format of the loaded image, except in the case when TGA format is specified (or any other non-magicable format).
Using SDL_RWops
is not covered here, but they enable you to load from almost any source.
Returns: a pointer to the image as a new SDL_Surface
. NULL is returned on errors.
|
See Also:
3.1.1 IMG_Load,
3.1.2 IMG_Load_RW