al_draw_text - Man Page

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 the target bitmap at position x, y, using the specified font.

The flags parameter can be 0 or one of the following flags:

It can also be combined with this flag:

This function does not support newline characters (\n), but you can use al_draw_multiline_text(3) for multi line text output.

See Also

al_draw_ustr(3), al_draw_textf(3), al_draw_justified_text(3), al_draw_multiline_text(3).

Referenced By

al_draw_justified_text(3), al_draw_multiline_text(3), al_draw_textf(3), al_draw_ustr(3), al_set_fallback_font(3).

Allegro reference manual