Pendo826
Pendo826

Reputation: 1002

Is it possible to enlarge text in the console in C++

I was just wondering if you can enlarge the console text in C++ because i am writing a game and i want the game title to be printed out enlarged to give the feel of a real text based adventure game.

Upvotes: 0

Views: 264

Answers (2)

arx
arx

Reputation: 16896

Use ASCII art because

a) It will work and

b) You'll get that authentic text-based adventure look.

Upvotes: 4

nathan
nathan

Reputation: 1119

You can do a lot of text related things using termcaps under UNIX systems. However i don't know how it works under windows systems... Here is the termcaps library documentation.

Upvotes: 0

Related Questions