Provided by: allegro5-doc_5.2.3.0-1_all bug

NAME

       al_register_bitmap_saver - Allegro 5 API

SYNOPSIS

              #include <allegro5/allegro.h>

              bool al_register_bitmap_saver(const char *extension,
                 bool (*saver)(const char *filename, ALLEGRO_BITMAP *bmp))

DESCRIPTION

       Register a handler for al_save_bitmap(3alleg5).  The given function will be used to handle
       the saving of bitmaps files with the given extension.

       The extension should include  the  leading  dot  ('.')  character.   It  will  be  matched
       case-insensitively.

       The saver argument may be NULL to unregister an entry.

       Returns  true  on  success,  false on error.  Returns false if unregistering an entry that
       doesn't exist.

SEE ALSO

       al_register_bitmap_loader(3alleg5), al_register_bitmap_saver_f(3alleg5)