Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

textprintf_ex(3alleg4) [debian man page]

textprintf_ex(3alleg4)						  Allegro manual					    textprintf_ex(3alleg4)

NAME
textprintf_ex - Formatted output of a string. Allegro game programming library. SYNOPSIS
#include <allegro.h> void textprintf_ex(BITMAP *bmp, const FONT *f, int x, int y, int color, int bg, const char *fmt, ...); DESCRIPTION
Formatted text output, using a printf() style format string. Due to an internal limitation, this function can't be used for extremely long texts. If you happen to reach this limit, you can work around it by using uszprintf() and textout_ex(), which don't have any. Example: int player_score; ... textprintf_ex(screen, font, 10, 10, makecol(255, 100, 200), -1, "Score: %d", player_score); SEE ALSO
font(3alleg4), textout_ex(3alleg4), textprintf_centre_ex(3alleg4), textprintf_right_ex(3alleg4), textprintf_justify_ex(3alleg4), text_height(3alleg4), text_length(3alleg4), uszprintf(3alleg4) Allegro version 4.4.2 textprintf_ex(3alleg4)

Check Out this Related Man Page

textprintf_ex(3alleg4)						  Allegro manual					    textprintf_ex(3alleg4)

NAME
textprintf_ex - Formatted output of a string. Allegro game programming library. SYNOPSIS
#include <allegro.h> void textprintf_ex(BITMAP *bmp, const FONT *f, int x, int y, int color, int bg, const char *fmt, ...); DESCRIPTION
Formatted text output, using a printf() style format string. Due to an internal limitation, this function can't be used for extremely long texts. If you happen to reach this limit, you can work around it by using uszprintf() and textout_ex(), which don't have any. Example: int player_score; ... textprintf_ex(screen, font, 10, 10, makecol(255, 100, 200), -1, "Score: %d", player_score); SEE ALSO
font(3alleg4), textout_ex(3alleg4), textprintf_centre_ex(3alleg4), textprintf_right_ex(3alleg4), textprintf_justify_ex(3alleg4), text_height(3alleg4), text_length(3alleg4), uszprintf(3alleg4) Allegro version 4.4.2 textprintf_ex(3alleg4)
Man Page

5 More Discussions You Might Find Interesting

1. Programming

Why I don't get any output?

Hello, I am very new in writing low level programming in C. I am trying to get an output in Linux 2.6.17.6 gentoo platform, but I don't get any output. I am trying to do the following: I am trying to scan a word and print its content at the standard output by using sscanf and printf. I... (6 Replies)
Discussion started by: Sharmin
6 Replies

2. Shell Programming and Scripting

Help with reformat data content

input file: hsa-miR-4726-5p Score hsa-miR-483-5p Score hsa-miR-125b-2* Score hsa-miR-4492 hsa-miR-4508 hsa-miR-4486 Score Desired output file: hsa-miR-4726-5p Score hsa-miR-483-5p Score hsa-miR-125b-2* Score hsa-miR-4492 hsa-miR-4508 hsa-miR-4486 Score ... (6 Replies)
Discussion started by: perl_beginner
6 Replies

3. Shell Programming and Scripting

Help with keep the largest record in file

Input file US Score 10 UK Ball 20 AS Score 50 AK Ball 10 PZ Ballon 50 PA Score 70 WT Data 10 . . Desired output file UK Ball 20 PZ Ballon 50 PA Score 70 WT Data 10 . . (1 Reply)
Discussion started by: perl_beginner
1 Replies

4. Programming

Formatted output in PERL

Hi Techies, I'm a newbie to PERL, Please help me with following problem. I have an input text file like below cat Input.txt 418673132,P 492538858,P 384535478,P 521522357,I 529435679,I 183617024,P 184414408,I 735510689,P 736238343,I 411642045,I 412690979,I 104232783,I (2 Replies)
Discussion started by: mahi_mayu069
2 Replies

5. Shell Programming and Scripting

Help with keep the smallest record in file

Input file US Score 10 UK Ball 20 AS Score 50 AK Ball 10 PZ Ballon 50 PA Score 70 WT Data 10 . . Desired output file US Score 10 AK Ball 10 WT Data 10 . . (2 Replies)
Discussion started by: perl_beginner
2 Replies