Metadata-Version: 2.1
Name: pixelize
Version: 0.0.2
Summary: Turn images into pixel arts.
Home-page: https://github.com/Dashstrom/pixelize
License: MIT
Keywords: python,cli,script,pixel-art,image-to-image
Author: Dashstrom
Author-email: dashstrom.pro@gmail.com
Maintainer: Dashstrom
Maintainer-email: dashstrom.pro@gmail.com
Requires-Python: >=3.8,<3.12
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Framework :: Pytest
Classifier: Framework :: Sphinx
Classifier: Framework :: tox
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Typing :: Typed
Provides-Extra: cov
Provides-Extra: docs
Provides-Extra: format
Provides-Extra: lint
Provides-Extra: tasks
Provides-Extra: test
Requires-Dist: commitizen (==3.25.0) ; extra == "tasks"
Requires-Dist: coverage[toml] (==7.5.0) ; extra == "cov"
Requires-Dist: mypy (==1.10.0) ; extra == "lint" or extra == "format"
Requires-Dist: numpy (<1.25) ; python_version < "3.9"
Requires-Dist: numpy ; python_version >= "3.9"
Requires-Dist: pillow (>=10,<11)
Requires-Dist: poethepoet (==0.26.1) ; extra == "tasks"
Requires-Dist: pre-commit (==3.5.0) ; extra == "tasks"
Requires-Dist: pytest (==8.2.0) ; extra == "test" or extra == "cov" or extra == "lint" or extra == "format"
Requires-Dist: pytest-cov (==5.0.0) ; extra == "cov"
Requires-Dist: pytest-mock (==3.14.0) ; extra == "test" or extra == "cov" or extra == "lint" or extra == "format"
Requires-Dist: rembg (>=2.0.0,<3.0.0)
Requires-Dist: ruff (==0.4.3) ; extra == "lint" or extra == "format"
Requires-Dist: sphinx (==7.1.2) ; extra == "docs"
Requires-Dist: sphinx-rtd-theme (==2.0.0) ; extra == "docs"
Requires-Dist: sphinxcontrib-mermaid (==0.9.2) ; extra == "docs"
Requires-Dist: types-pillow (>=10,<11) ; extra == "lint" or extra == "format"
Requires-Dist: typing-extensions (>=4.8.0)
Project-URL: Documentation, https://dashstrom.github.io/pixelize
Project-URL: Repository, https://github.com/Dashstrom/pixelize
Description-Content-Type: text/x-rst

.. role:: bash(code)
  :language: bash

********
pixelize
********

|ci-docs| |ci-lint| |ci-tests| |pypi| |versions| |discord| |license|

.. |ci-docs| image:: https://github.com/Dashstrom/pixelize/actions/workflows/docs.yml/badge.svg
  :target: https://github.com/Dashstrom/pixelize/actions/workflows/docs.yml
  :alt: CI : Docs
.. |ci-lint| image:: https://github.com/Dashstrom/pixelize/actions/workflows/lint.yml/badge.svg
  :target: https://github.com/Dashstrom/pixelize/actions/workflows/lint.yml
  :alt: CI : Lint
.. |ci-tests| image:: https://github.com/Dashstrom/pixelize/actions/workflows/tests.yml/badge.svg
  :target: https://github.com/Dashstrom/pixelize/actions/workflows/tests.yml
  :alt: CI : Tests
.. |pypi| image:: https://img.shields.io/pypi/v/pixelize.svg
  :target: https://pypi.org/project/pixelize
  :alt: PyPI : pixelize
.. |versions| image:: https://img.shields.io/pypi/pyversions/pixelize.svg
  :target: https://pypi.org/project/pixelize
  :alt: Python : versions
.. |discord| image:: https://img.shields.io/badge/Discord-Dashstrom-5865F2?style=flat&logo=discord&logoColor=white
  :target: https://dsc.gg/dashstrom
  :alt: Discord
.. |license| image:: https://img.shields.io/badge/license-MIT-green.svg
  :target: https://github.com/Dashstrom/pixelize/blob/main/LICENSE
  :alt: License : MIT

Description
###########

Turn images into pixel arts.

Documentation
#############

Documentation is available on https://dashstrom.github.io/pixelize

Installation
############

You can install :bash:`pixelize` using `pip <https://pypi.org/project/pip/>`_
from `PyPI <https://pypi.org/project>`_

..  code-block:: bash

  pip install pipx
  pipx ensurepath
  pipx install pixelize

You can also install gpu support for rembg dependency using:

..  code-block:: bash

  pipx inject pixelize rembg[gpu]

Usage
#####

..  code-block:: bash

  pixelize --version
  pixelize --help

Example: Cropping
*****************

..  code-block:: bash

  pixelize \
    -i ./docs/examples/car.jpg \
    --height 128 \
    --crop 0x80+136x216 \
    --color-reduction 4 \
    --output-dir ./docs/examples/pixelized

.. image:: https://raw.githubusercontent.com/Dashstrom/pixelize/main/docs/examples/car.jpg
   :width: 128

.. image:: https://raw.githubusercontent.com/Dashstrom/pixelize/main/docs/examples/pixelized/car.pix.png
   :width: 128

Example: Border
***************

..  code-block:: bash

  pixelize \
    -i ./docs/examples/cat.bmp \
    --height 32 \
    --border \
    --output-dir ./docs/examples/pixelized

.. image:: https://raw.githubusercontent.com/Dashstrom/pixelize/main/docs/examples/cat.bmp
   :width: 128

.. image:: https://raw.githubusercontent.com/Dashstrom/pixelize/main/docs/examples/pixelized/cat.pix.png
   :width: 128

Example: Rembg
**************

..  code-block:: bash

  pixelize \
    -i swing.jpg \
    --height 128 \
    --rembg \
    --border \
    --color-reduction 5

.. image:: https://raw.githubusercontent.com/Dashstrom/pixelize/main/docs/examples/swing.jpg
   :width: 128

.. image:: https://raw.githubusercontent.com/Dashstrom/pixelize/main/docs/examples/pixelized/swing.pix.png
   :width: 128

Example: Module
***************

..  code-block:: python

  from pixelize import pixelize
  from pathlib import Path
  from PIL import Image

  image_path = "image.png"

  # Using str
  im = pixelize(image_path)

  # Using pathlib.Path
  im = pixelize(Path(image_path))

  # Using stream
  with open("image.png", "rb") as file:
    im = pixelize(file)

  # Using Pillow
  im = pixelize(Image.open("image.png"))

Development
###########

Contributing
************

Contributions are very welcome. Tests can be run with :bash:`poe check`, please
ensure the coverage at least stays the same before you submit a pull request.

Setup
*****

You need to install `Poetry <https://python-poetry.org/docs/#installation>`_
and `Git <https://git-scm.com/book/en/v2/Getting-Started-Installing-Git>`_
for work with this project.

..  code-block:: bash

  git clone https://github.com/Dashstrom/pixelize
  cd pixelize
  poetry install --all-extras
  poetry run poe setup
  poetry shell

Poe
***

Poe is available for help you to run tasks.

..  code-block:: text

  test           Run test suite.
  lint           Run linters : ruff linter, ruff formatter and mypy.
  format         Run linters in fix mode.
  check          Run all checks : lint, test and docs.
  cov            Run coverage for generate report and html.
  open-cov       Open html coverage report in webbrowser.
  docs           Build documentation.
  open-docs      Open documentation in webbrowser.
  setup          Setup pre-commit.
  pre-commit     Run pre-commit.
  clean          Clean cache files

Skip commit verification
************************

If the linting is not successful, you can't commit.
For forcing the commit you can use the next command :

..  code-block:: bash

  git commit --no-verify -m 'MESSAGE'

Commit with commitizen
**********************

To respect commit conventions, this repository uses
`Commitizen <https://github.com/commitizen-tools/commitizen?tab=readme-ov-file>`_.

..  code-block:: bash

  cz commit

How to add dependency
*********************

..  code-block:: bash

  poetry add 'PACKAGE'

Ignore illegitimate warnings
****************************

To ignore illegitimate warnings you can add :

- **# noqa: ERROR_CODE** on the same line for ruff.
- **# type: ignore[ERROR_CODE]** on the same line for mypy.
- **# pragma: no cover** on the same line to ignore line for coverage.
- **# doctest: +SKIP** on the same line for doctest.

Uninstall
#########

..  code-block:: bash

  pip uninstall pixelize

License
#######

This work is licensed under `MIT <https://github.com/Dashstrom/pixelize/-/raw/main/LICENSE>`_.

