A very VERY noobish question

How to I draw images that are not simple pixel rectangles, like JPG, GIF, PNG, etc. ?

with alpha blending. http://www.codesampler.com

I’m not talking about alpha…for example, PNG is a compressed image. Does it need to be uncompressed or something? In other words, what is the difference between this and drawing a BMP file?

The only difference is that the file format is more complex.
You always have to feed opengl with raw uncompressed texel data (unless you use DXTC formats).
If this sounds too complex for you, a lot of image loading libs exists for that purpose such as freeimage :
http://freeimage.sourceforge.net/
and devil :
http://openil.sourceforge.net/

Yes!
Most of those formats store the image compressed. But with the appropiate libs, you don’t have to do it your sefl. Here is an example with freeimage:
http://www.opengl.org/discussion_boards/…3307#Post233307
Bye!

sorry was way off. distracted by “pixel rectangles”. basically you load the image file, read it values and uncompress this compress pixeldata to raw uncompressed memory where you then give them to OpenGL. on the uncompressed level all images are same, lots of pixel values made up of color channels.