Shell:将文本输出为 PNG,同时保留颜色

Shell:将文本输出为 PNG,同时保留颜色

我希望能够将 shell 命令的输出保存为 PNG 图像,而不会丢失格式。有点像输出的屏幕截图。

some-command-with-color | text-to-png a.png

我知道这个命令将文本转换为 PNG,但它不保留颜色:

tldr -c tldr | convert -page  4000x4000 -font FreeMono -pointsize 20  -background white -trim +repage -bordercolor white  -border 15 text:- png:a.png

在此输入图像描述

答案1

执行此操作的程序是ansilove。它已经针对许多发行版进行了打包。

例如:

$ ls --color > /tmp/output.ansi
$ ansilove -o /tmp/output.png /tmp/output.ansi

答案2

作为替代方案安西洛夫,还有安西戈(由同一个人制作,但简单得多)和安西托图像或者短信

安西托图像

# installation
pip install ansitoimg

# from file to image
ansitoimg /tmp/dcd.log dcd.svg

# pipeline
ls --color=always /etc | ansitoimg ls.svg

# preserving color in pipeline
unbuffer grc ss -nlpt | ansitoimg ss.svg

# use theme and wide screen
dcd -d za.tryhackme.com -s 10.200.28.101 | ansitoimg -w -t /tmp/one-dark.yaml /tmp/dcd.png

短信

# from file to image
cat /tmp/dcd.log| textimg -o out.png

# pipeline
ls --color=always /etc | textimg -o out.png

# preserving color in pipeline
unbuffer grc ss -nlpt | textimg -o out.png

# choose font (-f), emoji font (-e) and use emoji font (-i)
dcd -d za.tryhackme.com -s 10.200.28.101 | textimg -f /usr/share/fonts/TTF/Anonymous\ Pro.ttf -e /usr/share/fonts/joypixels/JoyPixels.ttf -i -o /tmp/out.png

相关内容