SDL_image is an image file loading library. It loads images as SDL surfaces, and supports the following formats: BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, WEBP, XCF, XPM, XV.

learn more… | top users | synonyms

1
vote
1answer
28 views

Xcode SDL resources folder

I am making a SDL project in Xcode and I have a folder called resources where my images are stored. For my SDL application to access these images with SDL_LoadBMP the resources folder needs to be in ...
2
votes
1answer
48 views

SDL : blitting on background instead of screen?

Hi i'm working on an SDL/C game , i've made a camera scrolling with a big background (6000*1024) and (1024*768) screen, game.screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, ...
0
votes
1answer
42 views

Drawing text with SDL_ttf while using other graphics

I am making this game using SDL and I need to be able to text displayed for variables and information etc. The problem is I can't render any text while SDL_OPENGL is a parameter in SDL_SetVideoMode(). ...
0
votes
1answer
124 views

C++ - SDL/OpenGL loaded image's colors are inverted

I'm trying to load an image into my game. It's being written in C++, with SDL and OpenGL, and the SDL_Image framework. I've gotten the image in, and have rotated/inverted it to my needs, but there are ...
0
votes
1answer
77 views

Texture Fading in SDL (2.0) - Using SDL_image

I have been making good progress so far with learning SDL2 but what I have currently come stuck on is how to achieve the following: I can load an image in (png) no problem using SDL_image and also ...
0
votes
1answer
56 views

SDL don't load/show the right image

I'm writing a simple game. I'm stock by a bug that i can't figure out what are the causes. In the code i write this: DxFrame[0] = ImageLoader("Rome/Ball_Dx/RomeDx1.png"); DxFrame[1] = ...
0
votes
2answers
56 views

SDL and Xcode (SDL_image being ignored)

ld: warning: ignoring file /Library/Frameworks/SDL_image.framework/SDL_image, file was built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 ...
3
votes
1answer
160 views

SDL_image won't install [closed]

I'm trying to install the SDL-image library for Haskell, a set of bindings for the original C library of the same name. I've already built and installed the SDL library and its corresponding Haskell ...
1
vote
1answer
273 views

SDL OpenGL png texture loading: bluish

I'm loading a PNG texture with: void Sprite::setTexture(string f) { SDL_Surface *image = IMG_Load(f.c_str()); if (image == NULL) { this->texture = -1; return; } ...
2
votes
1answer
208 views

SDL, OpenGL: Segmentation fault

When I try generate texture with openGL I get a segmentation fault in this method: void RendererGL::create_gl(SDL_Surface * surf, GLuint * tex ) { GLenum format; GLint colors_amount = ...
0
votes
1answer
157 views

C - SDL_image -> Loading image from custom resource file

I'm trying to get an SDL_Surface* from a custom resource file. This custom resource file, is get with this code; http://content.gpwiki.org/index.php/C:Custom_Resource_Files I packed a folder, wich ...
0
votes
1answer
125 views

SDL_image Out of Scope

I'm trying to get off the ground with SDL. SDL by itself works fine, I got the basic Hello World setup to work. However, trying to use SDL_image has caused me a ton of headaches. My current code ...
0
votes
1answer
226 views

Load PNG with SDLImage in Vala

RWops enemy_rwops = new RWops.from_file("img/enemy.png", "rb"); enemy = SDLImage.load_png(enemy_rwops); I have that code to load a .png (enemy is a SDL_Surface). However, I get this error: ...
0
votes
1answer
128 views

SDL Jpeg dll not finding jpeg_calc_output_dimensions?

I'm trying to use a 64-bit application that uses SDL (and SDL Image in particular) (on Windows). The application runs, but I didn't have a 64-bit jpeg loader. SDL-Image expects a jpeg.dll, but the ...
0
votes
0answers
149 views

How to load image with IMG_Load() without the byte padding for each line?

If i load image such as 98x*** which is 3 bytes per pixel, it will create 2 bytes padding there to make it fit in 4 bytes sequences. Is it possible to use IMG_Load() without generating the padded ...
3
votes
1answer
1k views

C++: weird error “expected initializer before extern” in library SDL_image.h

I'm currently trying to make a simple game with SDL and Box2D. Unfortunately, the code I added to make the character shoot proyectiles is so buggy I can't even begin to count the errors. To deal with ...
0
votes
1answer
745 views

Linking SDL_image errors

I am running into problems when linking SDL_image in gcc 3 on cygwin under Windows 7. I receive the following error: /usr/lib/gcc/i686-pc-cygwin/4.3.4/../../../../i686-pc-cygwin/bin/ld: cannot find ...
0
votes
2answers
521 views

Loading a OpenGL Image with SDL-image

As it says above: How can I employ the image loading facilities of the SDL-image binding to Haskell to load a OpenGL texture, as you so often do in C. SDL-image supports a nice variety of image ...
3
votes
1answer
835 views

SDL Surface Pixel Format Conversion

I want to convert an SDL_Surface, which was loaded by IMG_Load() to an other pixel format (rgba8) for an OpenGL Texture. How can I do that? I've read about SDL_ConvertSurface() in the documentation, ...
1
vote
2answers
4k views

SDL_image's IMG_Load do not work

I am using IMG_Load() to load png file, but it simply not working. loadedImage = IMG_Load(filename.c_str()); after this sentence, loadedImage is still NULL,not error happened. PS:I am using VS ...
1
vote
1answer
452 views

Problem linking SDL_Image against libpng

I'm trying to compile SDL_Image 1.2.10 with MinGW + MSys (gcc 4.5.0) on Windows, I have compiled all the requires libs (zlib 1.2.5, libpng 1.4.2, libjpeg 8a, libtiff 3.9.2). SDL_Image compiles fine, ...
1
vote
3answers
293 views

C++: Cannot instantiate a pointer directly

This is an SDL problem, however I have the strong feeling that the problem I came across is not related to SDL, but more to C++ / pointers in general. To make a long story short, this code doesn't ...
1
vote
3answers
2k views

SDL_image/C++ OpenGL Program: IMG_Load() produces fuzzy images

I'm trying to load an image file and use it as a texture for a cube. I'm using SDL_image to do that. I used this image because I've found it in various file formats (tga, tif, jpg, png, bmp) The ...
1
vote
3answers
200 views

Is there a better way to load in a big animation?

Maybe not really big, but a hundred frames or something. Is the only way to load it in by making an array and loading each image individually? load_image() is a function I made which loads the images ...
6
votes
2answers
13k views

Using .reset() to free a boost::shared_ptr with sole ownership

I'm storing an object (TTF_Font) in a shared_ptr that is provided to me from a third-party API. I cannot use new or delete on the object, so the shared_ptr is also provided a "freeing" functor. // ...
10
votes
4answers
7k views

How to statically compile an SDL game on Windows

I have been trying to produce a statically linked "single binary" version of my game for windows. I want to link with sdl, sdl_image and sdl_mixer which in turn pull in a few support libraries. ...