cfonts

2025-12-11 0 868
     ██████╗ ███████╗  ██████╗  ███╗   ██╗ ████████╗ ███████╗
    ██╔════╝ ██╔════╝ ██╔═══██╗ ████╗  ██║ ╚══██╔══╝ ██╔════╝
    ██║      █████╗   ██║   ██║ ██╔██╗ ██║    ██║    ███████╗
    ██║      ██╔══╝   ██║   ██║ ██║╚██╗██║    ██║    ╚════██║
    ╚██████╗ ██║      ╚██████╔╝ ██║ ╚████║    ██║    ███████║
     ╚═════╝ ╚═╝       ╚═════╝  ╚═╝  ╚═══╝    ╚═╝    ╚══════╝

This is a silly little command line tool for sexy ANSI fonts in the console. Give your cli some love.

Implementations

Rust

Read more in the Rust folder.

Nodejs

Read more in the Nodejs folder.

Install

Rust

homebrew

brew install cfonts

Arch User Repository

yay -S cfonts

Fedora

sudo dnf install cfonts

NixOS

nix-env -iA nixos.cfonts

MacPorts

sudo port install cfonts

cargo

cargo install cfonts

NodeJs

npm

npm i cfonts -g

yarn

yarn global add cfonts

Usage

Using the CLI is easy.

Usage: cfonts  \"<value>\" [option1] <input1> [option2] <input1>,<input2> [option3] etc...

At any point you can run the help command to get a full list of commands and
how to use them.

$ cfonts --help

Supported Characters

A P 4 $
B Q 5 %
C R 6 &
D S 7 (
E T 8 )
F U 9 /
G V ! :
H W ? ;
I X . ,
J Y + \'
K Z - \"
L 0 _ (space)
M 1 =
N 2 @
O 3 #

The | character will be replaced with a line break

Options

-h, –help

Type: <command>
Default value: none

This shows a list of all available options.

$ cfonts --help

-V, –version

Type: <command>
Default value: none

This shows the installed version.

$ cfonts --version

text

Type: <string>
Default value: \"\"

This is the \”text input\” to be converted into a nice font.
The | character will be replaced with a line break.

$ cfonts \"Hello world\"

-f, –font

Type: <string>
Default value: \"block\"

This is the font face you want to use. So far this plugin ships with with following font faces:

$ cfonts \"text\" --font \"chrome\"

  • block [colors: 2] (default)
  • slick [colors: 2]
  • tiny [colors: 1]
  • grid [colors: 2]
  • pallet [colors: 2]
  • shade [colors: 2]
  • chrome [colors: 3]
  • simple [colors: 1]
  • simpleBlock [colors: 1]
  • 3d [colors: 2]
  • simple3d [colors: 1]
  • huge [colors: 2]
  • console [colors: 1]

-a, –align

Type: <string>
Default value: \"left\"

You can align your text in the terminal with this option. Use the keywords below:

  • left (default)
  • center
  • right
  • top (Will be ignored if used with the spaceless option)
  • bottom (Will be ignored if used with the spaceless option)
$ cfonts \"text\" --align \"center\"

-c, –colors

Type: <string list>
Default value: [\'system\']

With this setting you can set the colors for your font.
Use the below color strings or a hex color.
Provide colors in a comma-separated string, eg: red,blue. (no spaces)
If you use a hex color make sure you include the # prefix. (In most terminals wrap the hex in quotes)
The system color falls back to the system color of your terminal.

There are environment variables that can affect the display of colors in your terminal.

  • system (default)
  • black
  • red
  • green
  • yellow
  • blue
  • magenta
  • cyan
  • white
  • gray
  • redBright
  • greenBright
  • yellowBright
  • blueBright
  • magentaBright
  • cyanBright
  • whiteBright
  • #ff8800 (any valid hex color)
  • #f80 (short form is supported as well)
$ cfonts \"text\" --colors white,\"#f80\"

-g, –gradient

Type: <string list>
Default value: false

With this setting you can set a gradient over your output.
This setting supersedes the color open.
The gradient requires two colors, a start color and an end color from left to right.
(If you want to set your own colors for the gradient, use the transition option.)
cfonts will then generate a gradient through as many colors as it can find to make the output most impressive.
Provide two colors in a comma-separated string, eg: red,blue. (no spaces)
If you use a hex color make sure you include the # prefix. (In the terminal wrap the hex in quotes)

  • black
  • red
  • green
  • yellow
  • blue
  • magenta
  • cyan
  • white
  • gray
  • grey
  • #ff8800 (any valid hex color)
  • #f80 (short form is supported as well)
$ cfonts \"text\" --gradient red,\"#f80\"

-i, –independent-gradient

Type: <boolean>
Default value: false

Set this option to re-calculate the gradient colors for each new line.
Only works in combination with the gradient option.

$ cfonts \"text|next line\" --gradient red,\"#f80\" --independent-gradient

-t, –transition-gradient

Type: <boolean>
Default value: false

Set this option to generate your own gradients.
Each color set in the gradient option will then be transitioned to directly.
This option allows you to specify more than just two colors for your gradient.
Only works in combination with the gradient option.

$ cfonts \"text\" --gradient red,\"#f80\",green,blue --transition-gradient

-b, –background

Type: <string>
Default value: \"transparent\"

With this setting you can set the background colors for the output. Use the below color strings.
Provide the background color from the below supported list, eg: \’white\’

  • transparent (default)
  • black
  • red
  • green
  • yellow
  • blue
  • magenta
  • cyan
  • white
  • blackBright
  • redBright
  • greenBright
  • yellowBright
  • blueBright
  • magentaBright
  • cyanBright
  • whiteBright
  • #ff8800 (any valid hex color)
  • #f80 (short form is supported as well)
$ cfonts \"text\" --background \"Green\"

-l, –letter-spacing

Type: <integer>
Default value: 1

Set this option to widen the space between characters.

$ cfonts \"text\" --letter-spacing 2

-z, –line-height

Type: <integer>
Default value: 1

Set this option to widen the space between lines.

$ cfonts \"text\" --line-height 2

-s, –spaceless

Type: <boolean>
Default value: false

Set this option to false if you don\’t want the plugin to insert two empty lines on top and on the bottom of the output.

$ cfonts \"text\" --spaceless

-m, –max-length

Type: <integer>
Default value: 0

This option sets the maximum characters that will be printed on one line.
cfonts detects the size of your terminal but you can opt out and determine your own max width.
0 means no max width and the text will break at the edge of the terminal window.

$ cfonts \"text\" --max-length 15

-r, –raw-mode

Type: <boolean>
Default value: false

Set this option to make sure cfonts used CRLF (\\r\\n) over the default LF (\\n) line breaks.
This could be useful for terminal raw modes or on older windows machines.

use crossterm::terminal;
use std::io::Write;
use cfonts;

fn main() -> std::io::Result<()> {
	terminal::enable_raw_mode()?;

	cfonts::say(cfonts::Options {
		text: String::from(\"Hello|world\"),
		raw_mode: true,
		..cfonts::Options::default()
	});

	std::io::stdout().flush()?;
	terminal::disable_raw_mode()?;
	Ok(())
}

-e, –env

Type: <string>
Default value: cli

This option lets you use cfonts to generate HTML instead of ANSI code.
Note that max-length will be set to very large.

$ cfonts \"text\" --env browser

Consistency

cfonts detects what colors are supported on your platform.
It sets a level of support automatically.
In cfonts you can override this by passing in the FORCE_COLOR environment variable.

FORCE_COLOR=3 cfonts \"hello world\" -c \"#0088ff\"

You can also use the NO_COLOR environment variable to set no color output for environments like CI.

NO_COLOR=\"\" cfonts \"hello world\" -c \"#0088ff\"

FORCE_COLOR overrides NO_COLOR if both are set.

License

Copyleft (c) 2023 Dominik Wilkowski.
Licensed under the GNU GPL-3.0-or-later.

下载源码

通过命令行克隆项目:

git clone https://github.com/dominikwilkowski/cfonts.git

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

申明:本文由第三方发布,内容仅代表作者观点,与本网站无关。对本文以及其中全部或者部分内容的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。本网发布或转载文章出于传递更多信息之目的,并不意味着赞同其观点或证实其描述,也不代表本网对其真实性负责。

左子网 建站资源 cfonts https://www.zuozi.net/34772.html

php font lib
上一篇: php font lib
source han code jp
下一篇: source han code jp
常见问题
  • 1、自动:拍下后,点击(下载)链接即可下载;2、手动:拍下后,联系卖家发放即可或者联系官方找开发者发货。
查看详情
  • 1、源码默认交易周期:手动发货商品为1-3天,并且用户付款金额将会进入平台担保直到交易完成或者3-7天即可发放,如遇纠纷无限期延长收款金额直至纠纷解决或者退款!;
查看详情
  • 1、描述:源码描述(含标题)与实际源码不一致的(例:货不对板); 2、演示:有演示站时,与实际源码小于95%一致的(但描述中有”不保证完全一样、有变化的可能性”类似显著声明的除外); 3、发货:不发货可无理由退款; 4、安装:免费提供安装服务的源码但卖家不履行的; 5、收费:价格虚标,额外收取其他费用的(但描述中有显著声明或双方交易前有商定的除外); 6、其他:如质量方面的硬性常规问题BUG等。 注:经核实符合上述任一,均支持退款,但卖家予以积极解决问题则除外。
查看详情
  • 1、左子会对双方交易的过程及交易商品的快照进行永久存档,以确保交易的真实、有效、安全! 2、左子无法对如“永久包更新”、“永久技术支持”等类似交易之后的商家承诺做担保,请买家自行鉴别; 3、在源码同时有网站演示与图片演示,且站演与图演不一致时,默认按图演作为纠纷评判依据(特别声明或有商定除外); 4、在没有”无任何正当退款依据”的前提下,商品写有”一旦售出,概不支持退款”等类似的声明,视为无效声明; 5、在未拍下前,双方在QQ上所商定的交易内容,亦可成为纠纷评判依据(商定与描述冲突时,商定为准); 6、因聊天记录可作为纠纷评判依据,故双方联系时,只与对方在左子上所留的QQ、手机号沟通,以防对方不承认自我承诺。 7、虽然交易产生纠纷的几率很小,但一定要保留如聊天记录、手机短信等这样的重要信息,以防产生纠纷时便于左子介入快速处理。
查看详情

相关文章

猜你喜欢
发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务