Advertisement

SDL sdl_image download link (dev c++)

Started by July 19, 2004 06:19 AM
11 comments, last by rakoon2 20 years, 3 months ago
Hello guys! :) Please give me a download link for a (working) sdl_image dev-c++ package. (.a and the .h if I need them) Thank you very much! :)
I posted a download link here, your probably going to have to build the lib yourself as only MSVC binaries are provided for Win32
Advertisement
Yes, I know! The porblem is i can'T get my own to work! :-/
okay guys! Could you give me a SDL_opengl download link(dev c++)? Please! Goggle didn'T help me :-/
Google Devpakages and it shoudl pop up. I think the link is <a href="http://www.devpaks.org>www.devpaks.org.

It has a buncha different libraries in DevPaks.
http://www.bloodshed.net/dev/packages/sdl.html

has only the sdl package?! :-/
Advertisement
http://devpaks.org/list.php?category=SDL
Thank you! But I still get:





[Linker error] undefined reference to `IMG_Load_RW'
if I use:


SDL_Surface *g_ImgSurf; //surface to store the image
SDL_RWops *g_RWop = SDL_RWFromMem(g_FileBuff, g_FileSize);
g_ImgSurf = IMG_Load_RW(g_RWop, 0);

:-/
You must add the SDL_image library to your linker's options by putting :

-lSDL_image
I find it funny(even i did this) how people get undefined reference then see they have to link -lSDL but dopnt make the connection with other libs like -lSDL_image(again i did that once)

This topic is closed to new replies.

Advertisement