Installing SDL_image
So far we have only been loading BMP image files. This is all that SDL supports without any extensions. We can use SDL_image
to enable us to load many different image file types such as BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, WEBP, XCF, XPM, and XV. First we will need to clone the latest build of SDL_image
to ensure it will work with SDL 2.0:
Open up the
TortoiseHg
workbench and use Ctrl + Shift + N to clone a new repository.The repository for SDL_image is listed on http://www.libsdl.org/projects/SDL_image/ and http://hg.libsdl.org/SDL_image/. So let's go ahead and type that into the Source box.
Our destination will be a new directory,
C:\SDL2_image
. After typing this into the Destination box, hit clone and wait for it to complete.Once you have created this folder, navigate to our
C:\SDL2_image
cloned repository. Open up theVisualC
folder and then open theSDL_image_VS2010
VC++ project with Visual Studio 2010 express.Right-click on the
SDL2_image
project and then...