Metadata-Version: 1.1
Name: freetype-py
Version: 1.0.1
Summary: Freetype python bindings
Home-page: https://github.com/rougier/freetype-py
Author: Nicolas P. Rougier
Author-email: Nicolas.Rougier@inria.fr
License: UNKNOWN
Description: 
        FreeType high-level python API
        ==============================
        
        Freetype python provides bindings for the FreeType library. Only the high-level API is bound.
        
        Documentation available at: http://freetype-py.readthedocs.org/en/latest/
        
        Installation
        ============
        
        To be able to use freetype python, you need the freetype library version 2
        installed on your system.
        
        Mac users
        ---------
        
        Freetype should be already installed on your system. If not, either install it
        using `homebrew <http://brew.sh>`_ or compile it and place the library binary
        file in '/usr/local/lib'.
        
        Linux users
        -----------
        
        Freetype should be already installed on your system. If not, either install
        relevant package from your package manager or compile from sources and place
        the library binary file in '/usr/local/lib'.
        
        Window users
        ------------
        
        You can try to install a window binaries available from the Freetype site or
        you can compile it from sources. In such a case, make sure the resulting
        library binaries is named 'Freetype.dll' (and not something like
        Freetype245.dll) and make sure to place a copy in Windows/System32 directory.
        
        Usage example
        =============
        
        .. code:: python
        
           import freetype
           face = freetype.Face("Vera.ttf")
           face.set_char_size( 48*64 )
           face.load_char('S')
           bitmap = face.glyph.bitmap
           print bitmap.buffer
        
        Contributors
        ============
        
        * Titusz Pan (bug report)
        * Ekkehard.Blanz (bug report)
        * Jānis Lībeks (bug report)
        * Frantisek Malina (typo)
        * Tillmann Karras (bug report & fix)
        * Matthew Sitton (bug report & fix)
        * Tao Gong (bug report)
        * Matthew Sitton (Remove raw interfaces from the __init__.py file)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: X11 Applications
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Graphics
