Getting bitmap's size.
Description
Getting bitmap's size.
Many people don't know how to get the dimensions of a bitmap. This can
be done by accessing the `w' and `h' fields of the BITMAP structure:
BITMAP *image;
...
allegro_message("Bitmap size: %d x %d\n",
image->w, image->h);