Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/saitoha/pydrcs

Make DRCS(Soft Character Set) glyphs for some terminals(DEC VT-series, RLogin, tanasinn, mlterm) from image files
https://github.com/saitoha/pydrcs

Last synced: 3 months ago
JSON representation

Make DRCS(Soft Character Set) glyphs for some terminals(DEC VT-series, RLogin, tanasinn, mlterm) from image files

Awesome Lists containing this project

README

        

PyDRCS
=======

Install
-------

via github ::

$ git clone https://github.com/saitoha/PyDRCS.git pydrcs
$ cd pydrcs
$ python setup.py install

or via pip ::

$ pip install PyDRCS

Usage
-----

Command line tool::

$ drcsconv [options] filename

or ::

$ cat filename | drcsconv [options]

* Options::

-h, --help show this help message and exit
-8, --8bit-mode Generate a DRCS image for 8bit terminal or printer
-7, --7bit-mode Generate a DRCS image for 7bit terminal or printer
-u, --unicode Use drcsterm's DRCS-unicode mapping
-!, --negate Negate image
-c COLUMNS, --columns=COLUMNS Image width in cell size (default=62, max=62)
-r ROWS, --rows=ROWS Image height in cell size
-t, --text Interpret input stream as a text run
-f FONT, --font=FONT Specifies the absolute path of font file if -t option is set (default: GNU unifont)
-n, --ncolor=NCOLOR Specify number of color
-d, --definition-only Emit only escape sequences. don't output printable characters
-s STARTOFFSET, --start-offset=STARTOFFSET Start offset for DSCS allocation
--version show version

Code Example
------------

::

from drcs import DrcsWriter
writer = DrcsWriter()
writer.draw('test.png')

Dependency
----------
- Python Imaging Library (PIL)
http://www.pythonware.com/products/pil/

- wcwidth.py
https://svn.wso2.org/repos/wso2/carbon/platform/trunk/dependencies/cassandra/pylib/cqlshlib/wcwidth.py
(Licensed under Apache License 2.0)

- GNU Unifont Glyphs
http://unifoundry.com/unifont.html

Reference
---------
- VT320 Soft Character Sets
http://vt100.net/dec/vt320/soft_characters

- DECDLD
http://vt100.net/docs/vt510-rm/DECDLD