Python create animated gif - print each character from string as a separate gif file with different coordinates for each character.
Budget: $30 – $250 USD
I need to generate text displaying gif in python.
I need each character from the list to be saved as a separate gif file via script and at the end consolidate all produced gifs in to animated gif.
Comma in list need to be used as a line break .
Text in MyLines may vary but it will be always max 30 characters in maximum 3 lines
Output font in gif should be Perfect DOS VGA 437 and color as per script output from below code:
from time import sleep
import sys
MyLines = [
"This is Line Number 1",
"Line number two and a half",
"and last line 3 ",
]
MyColor = lambda text, color: "\33[38;5;" + str(color) + "m" + text + "\33[0m"
for MyLines in MyLines:
for c in MyLines:
print (MyColor((c), 46), end='')
#font in gif should be Perfect DOS VGA 437
sys.stdout.flush()
sleep(0.001)
print('')
Budget 35 USD
I need each character from the list to be saved as a separate gif file via script and at the end consolidate all produced gifs in to animated gif.
Comma in list need to be used as a line break .
Text in MyLines may vary but it will be always max 30 characters in maximum 3 lines
Output font in gif should be Perfect DOS VGA 437 and color as per script output from below code:
from time import sleep
import sys
MyLines = [
"This is Line Number 1",
"Line number two and a half",
"and last line 3 ",
]
MyColor = lambda text, color: "\33[38;5;" + str(color) + "m" + text + "\33[0m"
for MyLines in MyLines:
for c in MyLines:
print (MyColor((c), 46), end='')
#font in gif should be Perfect DOS VGA 437
sys.stdout.flush()
sleep(0.001)
print('')
Budget 35 USD