vote up 0 vote down star

Edit: After using a bmp at toastie's suggestion, I'm still having problems loading the image:

I'm using SDL and OpenGL with Xcode and I'm trying to load an image to use as a texture on a cube. The image is a 256x256 RBG jpeg. The image is in the same directory as all of my source code, and it's under the Resources folder in the Xcode project. The file is named texture.bmp

if (textureSurface = SDL_LoadBMP("texture.bmp")) 
{
  // ...
}
else printf("%s", SDL_GetError());

I keep running it and getting the console error: Couldn't open texture.bmp

What is the path, or proper syntax for loading a file under these conditions?

flag

3 Answers

vote up 0 vote down

I don't have Xcode in front of me, but I think if you right/option click on the file in your resources listing to get at the preferences for the file you can set it to be relative to the project, containing directory, etc.

link|flag
vote up 0 vote down check

Found the answer here. Essentially the image path is relative to the application being run, so I had to move the image or make the path relative to the debug build.

link|flag
vote up 2 vote down

SDL_LoadBMP only loads BMP files as its name would suggest :)

You will need another library to load other image formats.

Try SDL_image: http://www.libsdl.org/projects/SDL_image/

or DevIL: http://openil.sourceforge.net/

Or roll your own loader: http://www.libpng.org/pub/png/libpng.html

link|flag
1  
While libpng is great and all, I don't think it will help with loading jpegs. libjpeg would be much more helpful at that =). – Adam Rosenfield Jun 2 at 2:43
See I figured SDL_LoadBMP would load a jpeg since it's technically a bitmap. Thanks. – Hooray Im Helping Jun 2 at 2:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.