Metadata-Version: 1.1
Name: fontname
Version: 0.2.0
Summary: A lib for guessing font name
Home-page: https://github.com/Asvel/fontname
Author: Asvel
Author-email: fe.asvel@gmail.com
License: MIT
Description: ========
        fontname
        ========
        
        
        Overview
        --------
        
        fontname is a lib for guessing font name, in other words, reading and decoding quirk encoded raw font name.
        
        It current supports `SFNT <http://en.wikipedia.org/wiki/SFNT>`_ format fonts, and is adept at dealing with CJK fonts.
        
        It has been tested with hundreds fonts, but there will be many fonts still not supported, bug report is welcomed.
        
        
        Installation
        ------------
        
        ``pip install fontname``
        
        fontname require `freetype-py <https://github.com/rougier/freetype-py>`_, it will be installed automatic.
        
        
        Usage example
        -------------
        
        .. code:: python
        
            from fontname import guess_font_name
            name = guess_font_name("FZZhunYuan-M02.ttf")
            assert name == "方正准圆_GBK"
        
        
        License
        -------
        
        fontname is release under MIT license
        
Keywords: font fontname freetype SFNT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Fonts
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
