Metadata-Version: 2.1
Name: pyasciilib
Version: 1.0.1
Summary: A library to convert images to ASCII art using different methods
Home-page: https://slinky-presentation.netlify.app
Author: Alexandre Poggioli
Author-email: alexandrepoggioli09@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow>=8.0.0

# pyasciilib

https://github.com/Slinky802/pyasciilib

**pyasciilib** is a Python library for converting images into ASCII art, using various methods and supporting several languages. It offers customization options, such as output size, ASCII characters used, and output format (text or list of lists).

## Contents
- [Installation](#installation)
- [Use](#use)
- [Features](#features)
- [License](#license)
- [Contribute](#Contribute)
- [Contact](#Contact)

---

## Installation

To install the library, use pip :

``` bash
pip install pyasciilib
```

---

## Use
Basic example of converting an image to ASCII:

```python
import pyasciilib

# Converts an image to ASCII with default parameters
ascii_art = pyasciilib.image_to_ascii(
    path_to_image=“path/to/image.jpg”,
    returned=“text”
    size=(0, 0), #Default value, (0, 0)->same as original image
    chars=["@", "#", "%", "*", "+", "=", "-", ":", "."] # Default characters from more to less dense
)

print(ascii_art)
```

---

## Features

**Output Size:** Defines the dimensions (width, height) of the output ASCII image.

**ASCII characters:** Modifies the list of ASCII characters used, from more to less dense, to obtain the desired output.

**Return Method:** Choice between “list” (list of lists) or “text” (printable text) for output format.

**Supported languages:**

 - en : English

 - fr : French

 - es : Spanish

 - de : German

 - it: Italian

 - pt: Portuguese

 - ru: Russian

 - zh: Chinese

 - ja: Japanese

 - ko: Korean

 - ar : Arabic

Use ```pyasciilib.ascii_help(language)``` to display instructions according to the selected language.

---

## License
This project is licensed under the MIT license - see the LICENSE file for details.

---

## Contribute

We welcome contributions to improve and expand the **pyasciilib** library! Whether you want to add a feature, fix a bug, or enhance the documentation, follow these steps to contribute:

### Steps to Contribute

1. **Fork the Repository**: Create a copy of the project on your GitHub account using the "Fork" button.

2. **Clone the Project**: Clone your fork locally to work on the code.
   ```bash
   git clone https://github.com/Slinky802/pyasciilib
   cd pyasciilib
   ```
3. **Create a New Branch**: Before making changes, create a new branch for your work.
    ```bash
    git checkout -b my_new_feature
    ```
4. **Make Your Changes**: Add your modifications or new features.

5. **Submit a Pull Request (PR)**: Once your changes are ready, push them to your fork, then submit a PR to the master branch of this repository.

 - Describe your changes and their purpose.
 - Mention any related issues you've resolved.
 - Request a code review.
 
### Code Review Policy
To maintain the project's stability and security, we have implemented a branch protection policy:

 - Any changes to the main branch must go through a Pull Request.
 - Each PR requires a review and may need approval before merging.
 - Only administrators and trusted contributors can merge approved PRs.

---

## Contact
Created by Alexandre Poggioli (Slinky802) - alexandrepoggioli09@gmail.com

More information on https://slinky-presentation.netlify.app
