答案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