Image I/O addon

These functions are declared in the following header file. Link with allegro_image.

#include <allegro5/allegro_image.h>

al_init_image_addon

bool al_init_image_addon(void)

Initializes the image addon. This registers bitmap format handlers for al_load_bitmap, al_load_bitmap_f, al_save_bitmap, al_save_bitmap_f.

The following types are built into the Allegro image addon and guaranteed to be available: BMP, PCX, TGA. Every platform also supports JPEG and PNG via external dependencies.

Other formats may be available depending on the operating system and installed libraries, but are not guaranteed and should not be assumed to be universally available.

al_shutdown_image_addon

void al_shutdown_image_addon(void)

Shut down the image addon. This is done automatically at program exit, but can be called any time the user wishes as well.

al_get_allegro_image_version

uint32_t al_get_allegro_image_version(void)

Returns the (compiled) version of the addon, in the same format as al_get_allegro_version.

Allegro version 5.0.0 - Last updated: 2011-02-06 11:32:55 UTC