pip install --upgrade termp
from Termp import *Create a text picture:
t = termp(50,50)
# Create a 50 × 50 text imageDraw:
t.line(0,0,49,49)
t.circle(25,25,10)
t.rect(0,0,49,49)
t.fill(30,5, "#")
t.fill(20,30, "#")Result:
t.print()- with color
t = termp(140, 140)
t.image("file.jpg", 140, color=True)- without color
t = termp(140, 140)
t.image("file.jpg", 140)- color filter picture
t = termp(140, 140)
t.image("file.jpg", 140)
t.givecolor("green")


