Metadata-Version: 1.1
Name: image_to_Ascii
Version: 0.3
Summary: A simple python library to convert images to ASCII art
Home-page: https://github.com/aypro-droid/image-to-ascii
Author: Aypro
Author-email: ayprogaming1@gmail.com
License: MIT
Download-URL: https://github.com/aypro-droid/image-to-ascii/archive/v_02.tar.gz
Description: # image-to-ascii
        image-to-ascii is a python module created for creating Ascii art from any given image
        **ASCII IMAGE**
        ![Banner](/images/Ascii-example.PNG)
        **ORIGNAL IMAGE**
        ![Banner](/images/pickachu.png)
        
        
        ## Getting Started
        1) Install Python 3.6 or newer. https://www.python.org/downloads/
        2) Open cmd/terminal and type:
        
                pip install image_to_Ascii
        
        
        If you want to install the newest version from git, you can install like this:
        
                pip install git+https://github.com/aypro-droid/image-to-ascii.git
        
        
        If you want to easily edit the source, it's recommended to clone the git
        repo and install as develop like this. Make sure you have git installed. https://git-scm.com/
        
                git clone https://github.com/aypro-droid/image-to-ascii.git
                python setup.py develop
        
        ## How do I generate an Ascii art from image?
        You can use any text editor you want, but personally I like to use VSC.
        1) Create an empty .py file called 'filename.py'
        2) Copy this text into your new file:
        ```py
        from image_to_ascii import ImageToAscii
        # imagePath is for path of the image you want to convert to Ascii
        # outputFile is for the file path of where the generated Ascii art should be stored keep None if you don't want to store it in a .txt file
        ImageToAscii(imagePath="path/to/file",outputFile="output.txt")
        ```
        ## Contribution
        If you would like to contribute, go ahead! I appreciate it.
        
        ## Support
        If you need any help you can ask me on discord Not Aypro#6969
        
        ## Donations
        If you want to donate you can by going to https://paypal.me/dontlimitmegaypal
        
        ## Copyright
        All images are subject to copyright
        
        
Keywords: IMAGE,TO,ASCII,ASCII,ART
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
