6

我正在尝试为有趣的应用程序生成 ascii 艺术文本。从 FIGLET,我得到了 ASCII 模式。我在printf声明中使用该模式来打印字母。这是我从 FIGLET 获得的模式的屏幕截图:

菲格莱特

这是我用来打印 A 的代码片段:

printf("      _/_/\n   _/    _/\n  _/_/_/_/\n _/    _/\n_/    _/\n");

现在,我从用户那里获取一个输入文本,并以 ASCII 艺术形式显示它。当我使用 printf 时,我只能垂直生成它:

垂直图像

但我需要做水平 ASCII 艺术。怎么做 ?

4

4 回答 4

2

是的,这是一个众所周知的问题。我最后一次解决这个问题是对每一行使用一个数组并分别渲染每个字母。

首先,我将表示数组中的每个字母。例如,您的 A 将是这样的:

char* letter[8]; 
letter[0] = "      _/_/ ";
letter[1] = "   _/    _/";
etc.

(实际上,将使用二维数组,其中每个字母位于不同的索引处。)

实际的渲染也将在一个数组中,类似于:

char* 渲染[8];

然后使用连接来构建每一行。一个简单的嵌套 for 循环应该可以解决问题:

for each line, i to render (i.e the height of the letters)
    for each letter, j
       concatenate line i of letter j to the to char* i in the array

最后循环遍历数组并打印每一行。实际上,您可以跳过渲染数组并简单地打印每一行而无需回车。会想到以下内容:

for each line, i to render : // (i.e the height of the letters) 
    for each letter, j {
       output line i of letter j
    }
    output a carriage return
}

(我的 C 有点生疏,从那里是“伪”代码。但是,我认为我的逻辑是合理的。)

于 2011-12-21T08:15:32.703 回答
2

您可以尝试以下方法:

注意:显然,以下内容缺少很多东西,如内存释放、错误检查、不完整的代码等。这个想法是给你一个提示!

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>

#define ROW 4
#define COL 8
#define CHAR_INDEX_MAX 26

enum alph_enum {A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z};

typedef struct _alphabets {
    char *line[ROW];
}alphabet;

alphabet chars[26];

init_a(enum alph_enum letter)
{
    int i;
    for (i=0 ; i<ROW ; i++) {
        chars[letter].line[i] = (char *) malloc(COL);
        if (chars[letter].line[i] == NULL) {
            printf("memory allocation failed \n");
            return;
        }
    }

    switch (letter) {
                                     /*0123 4567*/
    case H:
        strcpy(chars[letter].line[0], "|       |");
        strcpy(chars[letter].line[1], "|_______|");
        strcpy(chars[letter].line[2], "|       |");
        strcpy(chars[letter].line[3], "|       |");
        break;
    case E:
        strcpy(chars[letter].line[0], "|-------");
        strcpy(chars[letter].line[1], "|_______");
        strcpy(chars[letter].line[2], "|       ");
        strcpy(chars[letter].line[3], "|_______");
        break;
    case L:
        strcpy(chars[letter].line[0], "|       ");
        strcpy(chars[letter].line[1], "|       ");
        strcpy(chars[letter].line[2], "|       ");
        strcpy(chars[letter].line[3], "|_______");
        break;
    /*  for all the other alphabets */
    }

    return;

}

print_str(char word[])
{
    int i, j;

    printf("\n");
    for (i=0; i<ROW; i++) {
        for (j=0 ; j<strlen(word) ; j++) {
            printf("%s", chars[word[j] % 'A'].line[i]);
        }
        printf("\n");
    }
    printf("\n");

    return;
}


int main(void)
{
    init_a(H);
    init_a(E);
    init_a(L);
    /* print_str("HELLO"); */
    print_str("HELL");
    return 0;

    /* free the memory for HEL here */
}

输出如下:

> gcc test.c -o print
> print

|       ||-------|       |
|_______||_______|       |
|       ||       |       |
|       ||_______|_______|_______

>

去做:

  • 您可以包含数字、特殊字符(如 !、@、#、$ 等)、空格,可能所有 ASCII 字符都是有意义的。
  • 您可以支持字符的粗体、斜体、下划线和突出显示
  • 您可以支持前景色和背景色
  • 你可以支持动画

希望这可以帮助!

于 2011-12-21T08:39:25.027 回答
1

不要一次打印一个完整的字符作为一个字符串,而是将字符分成多个字符串——一个用于组成字符的每一行文本。然后打印每个字符的第一行,换行符,然后是每个字符的第二行,等等。您需要用空格填充行以确保它们都是正确的宽度。

于 2011-12-21T08:18:05.493 回答
1

很高兴看到你喜欢 Figlet。您展示的 Figlet 小部件实际上包含一个生成 ASCII 输出的命令行工具。http://www.figlet.org/ 也可以通过 brew Link轻松安装。

认为您可以轻松地从您自己的程序中捕获它的输出popen(..)

于 2011-12-21T08:29:18.797 回答