ASCII字符画转ASCII码——C语言输出使用

2022/8/11 6:25:46

本文主要是介绍ASCII字符画转ASCII码——C语言输出使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

ASCII字符画转ASCII码——C语言输出使用

  1. 首先,打开下面的网站,生成你所需要的ASCII画

Text to ASCII Art Generator (TAAG) (patorjk.com)

  1. 把生成的ASCII字符画复制下来,存到当前目录的一个txt文件中

  2. 转换程序如下:

/*
 * @Author: Groot
 * @Date: 2022-08-10 18:04:41
 * @LastEditTime: 2022-08-10 20:04:23
 * @LastEditors: Groot
 * @Description:
 * @FilePath: /ysyx-workbench/logo.c
 * 版权声明
 */
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char const *argv[])
{

	int c;
	char logo[204];
	char logo_ch[1024];
	FILE *file;
	file = fopen("logo.txt", "r");
	if (file)
	{
		int i = 0;
		while ((c = getc(file)) != EOF)
		{
			if (c == 0x20)
			{
				printf("0x20, ");
				logo_ch[i] = 0x20;
			}
			else if (c == '\n')
			{
				printf("0x0a, ");
				logo_ch[i] = 0x0a;
			}
			else
			{
				printf("0x%x, ", c);
				logo_ch[i] = c;
			}
			i++;
			if (i % 15 == 0)
			{
				printf("\n");
			}
		}
		fclose(file);
	}
	printf("%s", logo);
	printf("\n");
	printf("\n");
	printf("%s", logo_ch);
}
  1. 将这个C语言程序和txt文件放在一个文件夹内

  2. 编译C程序,然后执行,你就可以在terminal中获得你想要的ASCII字符表啦!

ps:如果报错,就把C程序中的数组调的大一点



这篇关于ASCII字符画转ASCII码——C语言输出使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程