SDL Image: Difference between revisions

From LD Smith Games Workshop
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== Development Environment Setup ===
Steps for setting up SDL_Image
Steps for setting up SDL_Image


Line 22: Line 24:
   c maps.h menu.c save_file.c event.c
   c maps.h menu.c save_file.c event.c
         gcc -o lotux.exe *.c `sdl-config --cflags --libs` -lSDL_mixer -lSDL_ttf
         gcc -o lotux.exe *.c `sdl-config --cflags --libs` -lSDL_mixer -lSDL_ttf
-lSDL_image -lm
  -lSDL_image -lm
 
*Add #include "SDL_image.h" to your source code
 
 
*Download SDL_image-1.2.10-win32.zip from http://www.libsdl.org/projects/SDL_image/
*Add the following libraries to the working directory of the program, and distribute them with the package
**jpeg.dll
**libpng12-0.dll
**libtiff-3.dll
**SDL_image.dll
**zlib1.dll
 
 
=== More Information ===
 
Official documentation: http://jcatki.no-ip.org:8080/SDL_image/SDL_image.html

Latest revision as of 06:26, 23 January 2010

Development Environment Setup

Steps for setting up SDL_Image

 $ mv SDL_image-1.2.10.tar.tar SDL_image-1.2.10.tar.gz
 $ gzip -d SDL_image-1.2.10.tar.gz
 $ tar -xvf SDL_image-1.2.10.tar
  • cd to the new directory
  • build the library
 $ cd SDL_image-1.2.10
 $ ./configure
 $ make
 $ make install
  • Besure to add -lSDL_image to your Makefile
 lotux.exe: lotux.c audio.c boomerang.c file_read.c font.c globals.h levelselect.
 c maps.h menu.c save_file.c event.c
       gcc -o lotux.exe *.c `sdl-config --cflags --libs` -lSDL_mixer -lSDL_ttf
 -lSDL_image -lm
  • Add #include "SDL_image.h" to your source code


  • Download SDL_image-1.2.10-win32.zip from http://www.libsdl.org/projects/SDL_image/
  • Add the following libraries to the working directory of the program, and distribute them with the package
    • jpeg.dll
    • libpng12-0.dll
    • libtiff-3.dll
    • SDL_image.dll
    • zlib1.dll


More Information

Official documentation: http://jcatki.no-ip.org:8080/SDL_image/SDL_image.html