如何使用 spdlog 绘制文本背景?

How I can paint a text background with spdlog?

我用 {fmt} 做了一个测试,改变背景颜色非常容易,但我不能用 spdlog 做同样的事情。
我可以用 spdlog 得到相同的结果,但是是一个奇怪的代码

fmt::print( bg( fmt::terminal_color::yellow ) | fg( fmt::terminal_color::black ), " {1:<{0}}\n", 120, "message" );  
        
spdlog::set_pattern( "%v" );
spdlog::info( "3[43m3[30m {1:<{0}} 3[m", 120, "message" );

如果我对你的问题的理解正确,你想使用 fmt 格式化你的 spdlog 输出,而不是必须自己指定转义序列。为此,您可以使用 fmt::format 函数并将其输出用作 spdlog:

的变量
#include <spdlog/spdlog.h>
#include <spdlog/fmt/bundled/color.h>

int main(){
    spdlog::info( "Printing a string formatted with fmt: {}",
        fmt::format(
            fmt::bg( fmt::terminal_color::yellow ) |
            fmt::fg( fmt::terminal_color::black ) |
            fmt::emphasis::bold,
            "message"
        )
    );
    return 0;
}