ACSII Art

Hello. i have drawn on note pad this picture of a black mage from final fantasy 1.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
             "____\n
           __///\\\n
         _///\\|\n
      __/////\\\_\n
    //////\\\\\\\\\\n
      |(_) (_) |\n
      |        /\n
       \______/\n
      /        \\n
     /          |\n
    /   /   |   |\n
   |___/    |___|\n
   \_/       \_/\n
     |         |\n
     |         |\n
     |          \__\n
    /______________\\n"

How would i go about putting it in my program? (i don't mind modifying if necessary to remove certain characters, such as /
one of the simplest ways is that u jz draw inside ur program and compile it.
1
2
std::cout << "   __\n"
             "_//\\\\\n";

will print
   __
_//\\

note that to keep '\' you have to turn it to '\\'
thankyou. it looks and works perfectly with this code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
	cout << "              ___ \n"
"          ___///\\\\ \n"
"        _///\\\\| \n"
"    ___/////\\\\\\__\n"
"   //////||\\\\\\\\\\\\\\ \n"
"     |(_) (_) | \n"
"     |        / \n"
"      \\______/ \n"
"     /        \\ \n"
"    /          | \n"
"   /   /   |   | \n"
"  |___/    |___| \n"
"  |_/       |_/ \n"
"    |         | \n"
"    |         | \n"
"    |          \\__ \n"
"   /______________\\ \n\n";

which turns into this:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
              ___
          ___///\\
        _///\\|
    ___/////\\\__
   //////||\\\\\\\
     |(_) (_) |
     |        /
      \______/
     /        \
    /          |
   /   /   |   |
  |___/    |___|
  |_/       |_/
    |         |
    |         |
    |          \__
   /______________\
Last edited on
If you need to create more cool ACSII stuffS from your images,Google for
BMP TO ACSII CONVERTER
it's website was killed by Yahoo Geocities :-(
Topic archived. No new replies allowed.