Skip to main content

Draw in terminal

Project description

Termp

Drawing in the terminal

pypi

Install

pip install --upgrade termp

Usage

from Termp import *

Create a text picture:

t = termp(50,50)
# Create a 50 × 50 text image

Draw:

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()

image

Convert Pictures

  • with color
t = termp(140, 140)
t.image("file.jpg", 140, color=True)

image

  • without color
t = termp(140, 140)
t.image("file.jpg", 140)

image

  • color filter picture
t = termp(140, 140)
t.image("file.jpg", 140)
t.givecolor("green")

image

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

termp-0.2.15.tar.gz (3.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page