Giter Site home page Giter Site logo

samewidther's Introduction

sameWidther

This is a tool for getting words of same visual width. It accepts OTF/TTF/UFO files and gets you random words of the same visual width, useful for example for type specimens.

installing

  1. Install directly from this cloned repo. This way you will always get the most recent version. Navigate to the repo in your terminal and execute this command
    python setup.py install
    
  2. Install this package via pip. This won't be updated that often but it offer more convenient way of installing a package.
    python -m pip install sameWidther
    

usage

  • you can use it as commandline tool

    sameWidther Desktop/sameWidth/font.ufo ENG 4000 10 
    
  • or directly in your python script

    from sameWidther import SameWidther, TTFont, Font
    # font = SameWidther(Font('font.ufo'), 'ENG') # for UFOs
    font = SameWidther(TTFont('font.otf'), 'GER') # for OTFs, TTFs
    print(font.getWords(3000, 10, case='upper'))
    

arguments

  1. positional
    • font - path to OTF/TTF/UFO file that you want to use
    • language - three letter code of language that you want to have the words in, ENG/GER available locally. Other languages under three letter code 639-2/B are available too. SameWidther's dataset manager will download them on the first request. You can also provide existing path to a database in json format of such structure ["word", "house", "word2", ...]
    • width - width of the words
    • wordCount - number of words that you need
  2. optional - keyword arguments
    • threshold - (default: 10) how much in width can the words differ
    • case - (default: lower) do you want to lower, upper or capitalize the case of the words?

word databases

other resources

Happy Specimening

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.