DragonFly On-Line Manual Pages
al_draw_text(3) al_draw_text(3)
NAME
al_draw_text - Allegro 5 API
SYNOPSIS
#include <allegro5/allegro_font.h>
void al_draw_text(const ALLEGRO_FONT *font,
ALLEGRO_COLOR color, float x, float y, int flags,
char const *text)
DESCRIPTION
Writes the NUL-terminated string text onto bmp at position x, y, using
the specified font.
The flags parameter can be 0 or one of the following flags:
o ALLEGRO_ALIGN_LEFT - Draw the text left-aligned (same as 0).
o ALLEGRO_ALIGN_CENTRE - Draw the text centered around the given
position.
o ALLEGRO_ALIGN_RIGHT - Draw the text right-aligned to the given
position.
It can also be combined with this flag:
o ALLEGRO_ALIGN_INTEGER - Always draw text aligned to an integer pixel
position. This is formerly the default behaviour. Since: 5.0.8,
5.1.4
SEE ALSO
al_draw_ustr(3), al_draw_textf(3), al_draw_justified_text(3)
Allegro reference manual al_draw_text(3)