我想将此问题移植到Python(Windows + Linux + Mac Os)
How to create ASCII animation in Windows Console application using C#?
谢谢!
答案 0 :(得分:11)
我刚刚将我的示例与动画gif移植到我的答案here到python的ASCII动画。您需要从here安装pyglet库,因为python遗憾的是没有内置的动画gif支持。希望你喜欢它:))
import pyglet, sys, os, time
def animgif_to_ASCII_animation(animated_gif_path):
# map greyscale to characters
chars = ('#', '#', '@', '%', '=', '+', '*', ':', '-', '.', ' ')
clear_console = 'clear' if os.name == 'posix' else 'CLS'
# load image
anim = pyglet.image.load_animation(animated_gif_path)
# Step through forever, frame by frame
while True:
for frame in anim.frames:
# Gets a list of luminance ('L') values of the current frame
data = frame.image.get_data('L', frame.image.width)
# Built up the string, by translating luminance values to characters
outstr = ''
for (i, pixel) in enumerate(data):
outstr += chars[(ord(pixel) * (len(chars) - 1)) / 255] + \
('\n' if (i + 1) % frame.image.width == 0 else '')
# Clear the console
os.system(clear_console)
# Write the current frame on stdout and sleep
sys.stdout.write(outstr)
sys.stdout.flush()
time.sleep(0.1)
# run the animation based on some animated gif
animgif_to_ASCII_animation(u'C:\\some_animated_gif.gif')
答案 1 :(得分:4)
这正是我为。{/ p>创建asciimatics的那种应用程序
它是一个跨平台的控制台API,支持从丰富的文本效果集生成动画场景。事实证明它可用于各种版本的CentOS,Windows和OSX。
gallery提供了可能的样本。这是一个类似于其他答案中提供的动画GIF代码的示例。
我假设你只是在寻找一种方法来做任何动画,但是如果你真的想要复制蒸汽火车,你可以将它转换为精灵并给它一个只在屏幕上运行它的路径,然后将它作为场景的一部分播放。可以在docs中找到对象的完整说明。
答案 2 :(得分:2)
Colorama:http://pypi.python.org/pypi/colorama
答案 3 :(得分:2)
简单的控制台动画,在Ubuntu的python3上测试过。 addch()不喜欢那个非ascii字符,但它适用于addstr()。
#this comment is needed in windows:
# encoding=latin-1
def curses(win):
from curses import use_default_colors, napms, curs_set
use_default_colors()
win.border()
curs_set(0)
row, col = win.getmaxyx()
anim = '.-+^°*'
y = int(row / 2)
x = int((col - len(anim))/2)
while True:
for i in range(6):
win.addstr(y, x+i, anim[i:i+1])
win.refresh()
napms(100)
win.addch(y, x+i, ' ')
if __name__ == "__main__":
from curses import wrapper
wrapper(curses)
@Philip Daubmeier:我在Windoze下测试了它并且它不起作用:(。未来有三个基本选项:(请选择)
答案 4 :(得分:2)