123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /*
- SDL_image: An example image loading library for use with SDL
- Copyright (C) 1999, 2000, 2001 Sam Lantinga
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
- You should have received a copy of the GNU Library General Public
- License along with this library; if not, write to the Free
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Sam Lantinga
- slouken@libsdl.org
- */
- /* $Id: IMG.c,v 1.3 2006/07/10 16:34:18 paigoddess Exp $ */
- /* A simple library to load images of various formats as SDL surfaces */
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- #include "SDL_image.h"
- #define ARRAYSIZE(a) (sizeof(a) / sizeof((a)[0]))
- /* Table of image detection and loading functions */
- static struct {
- char *type;
- int (*is)(SDL_RWops *src);
- SDL_Surface *(*load)(SDL_RWops *src);
- } supported[] = {
- /* keep magicless formats first */
- { "TGA", 0, IMG_LoadTGA_RW },
- { "BMP", IMG_isBMP, IMG_LoadBMP_RW },
- // { "PNM", IMG_isPNM, IMG_LoadPNM_RW }, /* P[BGP]M share code */ /* disabled less common filetypes */
- // { "XPM", IMG_isXPM, IMG_LoadXPM_RW }, /* disabled less common filetypes */
- // { "XCF", IMG_isXCF, IMG_LoadXCF_RW }, /* disabled less common filetypes */
- { "PCX", IMG_isPCX, IMG_LoadPCX_RW },
- { "GIF", IMG_isGIF, IMG_LoadGIF_RW },
- // { "JPG", IMG_isJPG, IMG_LoadJPG_RW }, /* external support required */
- // { "TIF", IMG_isTIF, IMG_LoadTIF_RW }, /* external support required */
- // { "LBM", IMG_isLBM, IMG_LoadLBM_RW }, /* disabled less common filetypes */
- { "PNG", IMG_isPNG, IMG_LoadPNG_RW }
- };
- /* Load an image from a file */
- SDL_Surface *IMG_Load(const char *file)
- {
- SDL_RWops *src = SDL_RWFromFile(file, "rb");
- char *ext = strrchr(file, '.');
- if(ext)
- ext++;
- return IMG_LoadTyped_RW(src, 1, ext);
- }
- /* Load an image from an SDL datasource (for compatibility) */
- SDL_Surface *IMG_Load_RW(SDL_RWops *src, int freesrc)
- {
- return IMG_LoadTyped_RW(src, freesrc, NULL);
- }
- /* Portable case-insensitive string compare function */
- static int IMG_string_equals(const char *str1, const char *str2)
- {
- while ( *str1 && *str2 ) {
- if ( toupper((unsigned char)*str1) !=
- toupper((unsigned char)*str2) )
- break;
- ++str1;
- ++str2;
- }
- return (!*str1 && !*str2);
- }
- /* Load an image from an SDL datasource, optionally specifying the type */
- SDL_Surface *IMG_LoadTyped_RW(SDL_RWops *src, int freesrc, char *type)
- {
- unsigned int i;
- int start;
- SDL_Surface *image;
- /* Make sure there is something to do.. */
- if ( src == NULL ) {
- return(NULL);
- }
- /* See whether or not this data source can handle seeking */
- if ( SDL_RWseek(src, 0, SEEK_CUR) < 0 ) {
- IMG_SetError("Can't seek in this data source");
- if(freesrc)
- SDL_RWclose(src);
- return(NULL);
- }
- /* Detect the type of image being loaded */
- start = SDL_RWtell(src);
- image = NULL;
- for ( i=0; i < ARRAYSIZE(supported); ++i ) {
- if(supported[i].is) {
- SDL_RWseek(src, start, SEEK_SET);
- if(!supported[i].is(src))
- continue;
- } else {
- /* magicless format */
- if(!type
- || !IMG_string_equals(type, supported[i].type))
- continue;
- }
- #ifdef DEBUG_IMGLIB
- fprintf(stderr, "IMGLIB: Loading image as %s\n",
- supported[i].type);
- #endif
- SDL_RWseek(src, start, SEEK_SET);
- image = supported[i].load(src);
- if(freesrc)
- SDL_RWclose(src);
- return image;
- }
- if ( freesrc ) {
- SDL_RWclose(src);
- }
- IMG_SetError("Unsupported image format");
- return NULL;
- }
- /* Invert the alpha of a surface for use with OpenGL
- This function is a no-op and only kept for backwards compatibility.
- */
- int IMG_InvertAlpha(int on)
- {
- return 1;
- }
|