This code loads an image:
Code: Select all
SDL_Surface *loadedImage = NULL;
// Get the image location
imageLoc = fileLoc;
// Determine the type of image being loaded
if (fileLoc.find("bmp") != std::string::npos){
format = BMP;
} else {
format = PNG;
}
// Load an image file
loadedImage = IMG_Load(fileLoc.c_str());
// If the image wasn't loaded properly
if (loadedImage == NULL){
printf ("SDL Error loading image file '%s': %s", fileLoc, SDL_GetError());
return false;
}
// Optimize the image
sur = SDL_DisplayFormatAlpha(loadedImage);
if (!sur){
printf ("SDL Error optimizing image file '%s': %s", fileLoc, SDL_GetError());
return false;
}
SDL_FreeSurface(loadedImage);
return true;
This code "copies" an image:
Code: Select all
// Copy the given surface
if (sur){
SDL_FreeSurface(sur);
}
sur = SDL_CreateRGBSurface(SDL_SWSURFACE, image->w, image->h, 32,
0xFF000000, 0x00FF0000, 0x0000FF00, 0x000000FF);
SDL_BlitSurface(image, NULL, sur, NULL);

So basically, two things. What's wrong with my image? Why is it's blue value being altered and turned to red (by the way, it's a PNG if that matters)? Also. Why can I not properly copy an image? I have another image, which is the copy of that ship, but it is not being rendered. Ultimately, I believe the problem is that I'm using OpenGL and the texturing is messing with SDL and what not; I'm not totally sure. Any help is appreciated
