Metadata-Version: 1.1
Name: ascii_image
Version: 1.1
Summary: Make any image file to ascii art format.
Home-page: https://github.com/Henry0526/ascii_image
Author: Hao-Wei Li
Author-email: henryliking@gmail.com
License: MIT
Description: ascii-art
        ==============================
        ![image](https://img.shields.io/pypi/v/ascii_image.svg)
        ![image](https://img.shields.io/pypi/l/ascii_image.svg)
        ![image](https://img.shields.io/pypi/pyversions/ascii_image.svg)
        
        將所有圖片轉換成 ASCII-art 形式的文字檔。  
        Turn the image into ASCII-art format text file.
        
        ## Installation
        To install , simply use pip of course):
        安裝方法，只要使用 pip 安裝即可。
        ```{.sourceCode .bash}
        $ pip install ascii_image
        ```
        
        ## Usage
        ```python
        import ascii_image
        ascii_image.toASCII(imagePath, outFilePath, scale)
        ````
        + imagePath[str]: 欲轉換的圖片路徑 Image you want to change to ascii image
        + outFilePath[str]: 輸出檔案名稱 output file name
        + scale[tuple]: 輸入為兩個 int 正整數(Width, Height), 每個 ASCII 文字代表的像素(pixels)寬(Width)與高(Height)
        
Keywords: ASCII-art,image,ascii
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
