3

Does anyone know whether or not XCode has a framework (library) for reading and writing jpeg files, and what is the library/framework name? I want to load this jpg image for a texture mapping in OpenGL. If you have done texture mapping using jpg image, do you mind to share the code as well?
I found a good example here, however it is using a .raw file instead of .jpg file. Of course the open gl codes would be the same. Only the image loader function would be different.
http://www.nullterminator.net/gltexture.html

genpfault
  • 51,148
  • 11
  • 85
  • 139
all_by_grace
  • 2,315
  • 6
  • 37
  • 52

1 Answers1

3

You can use SOIL. Its a header file that can load JPG (and most other image formats).

Its used by lots of real games.

Will
  • 73,905
  • 40
  • 169
  • 246