.\" Generated by the Allegro makedoc utility .TH textout_centre_ex 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME textout_centre_ex \- Writes a centered string on a bitmap. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B void textout_centre_ex(BITMAP *bmp, const FONT *f, const char *s, .B int x, y, int color, int bg); .SH DESCRIPTION Like textout_ex(), but interprets the x coordinate as the centre rather than the left edge of the string. Example: .nf /* Important texts go in the middle. */ width = text_length("GAME OVER"); textout_centre_ex(screen, font, "GAME OVER", SCREEN_W / 2, SCREEN_H / 2, makecol(255, 0, 0), makecol(0, 0, 0)); .fi .SH SEE ALSO .BR textout_ex (3alleg4), .BR textprintf_centre_ex (3alleg4)