1 个不稳定版本

0.1.0 2022 年 10 月 18 日

#12#text-style

自定义许可证

11KB
162 行代码(不包括注释)

泛思

此库允许开发者为终端输出添加颜色。

以下是一个使文本加粗的示例

use fansi::{style::AnsiStyle, string::AnsiString};

// Create style.
let style = vec![AnsiStyle::Bold];
// Create text with style.
let text = AnsiString::with_styles_vec("world!", style);
// Print text.
println!("Hello, {}", text);

以下是一个使前景文本变绿的示例

use crate::{color::AnsiColor, style::AnsiStyle, string::AnsiString};

// Create style.
let style = vec![AnsiStyle::ForegroundColor(AnsiColor::Green)];
// Create text with style.
let text = AnsiString::with_styles_vec("world!", style);
// Print text.
println!("Hello, {}", text);

预计算样式字符串

在编写上述示例之类的代码时,请注意,由于样式在创建 AnsiString 时转换为字符串并连接,因此使用原始数组/向量样式是次优的。

如果应用程序的性能很重要,并且上述方法不可接受,则提供了一个 AnsiStyleContainer 结构,它接收样式并在内部将它们编译为 String

然后可以将容器应用于任何 String 并重复使用,如下所示

// Create styles.
let style = vec![AnsiStyle::ForegroundColor(AnsiColor::Green)];
// Create container.
let container = AnsiStyleContainer::new(style);
// Apply container's compiled style string to text.
let text = container.apply("world!");
// Print text.
println!("Hello, {}", text);

Windows 使用方法

对于 Windows,您需要在 PowerShell 和 Command Prompt 终端中启用 ANSI 支持时执行额外的步骤

let result: Result<(), i32> = enable_ansi_support();

依赖项

~175KB