Metadata-Version: 2.4
Name: ascii-tool
Version: 0.1.10
Summary: A simple image to ascii converter
Author-email: lukaseepydev <lukaseepydev@gmail.com>
License: MIT
Project-URL: Github, https://github.com/lukaseepydev/ascii-tool
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: logging
Requires-Dist: pillow
Requires-Dist: argparse
Requires-Dist: pyside6
Requires-Dist: rich
Dynamic: license-file

# ASCII-TOOL
This is a small tool to convert images to ascii art. I made it in a very short amount of time as a small side project so its nothing big.

## Installation

### Using pip
Just type `pip install ascii-tool` into the command line.

### Using AUR (arch only)
If you are on Arch Linux you can also use your favourite AUR helper to install it. for example: `yay -S ascii-tool`

## Usage

### GUI
If you simply type `ascii-tool` it will launch the GUI where you can visually select an Image to turn into ascii.

### Command Line
If you want to convert an image directly inside your terminal you can type `ascii-tool` along with the path to your image.
```
ascii-tool /path/to/your/img
```
If you would like to specify the size of the output you can use the `-width` parameter. By default it's 120.
```
ascii-tool /path/to/your/img -width 90
```
