yoga/README.rst

105 lines
3.3 KiB
ReStructuredText
Raw Normal View History

2017-12-08 10:33:10 +01:00
YOGA - Yummy Optimizer for Gorgeous Assets
==========================================
2021-01-22 16:02:26 +01:00
|Github| |Discord| |PYPI Version| |Build Status| |License|
2018-05-04 17:44:03 +02:00
.. figure:: https://github.com/wanadev/yoga/raw/master/logo.png
2018-01-15 17:11:24 +01:00
:alt:
**YOGA** is a command-line tool and a library that can:
2018-01-15 16:55:57 +01:00
* convert and optimize images from various format to JPEG and PNG,
2021-01-20 16:42:30 +01:00
* convert and optimize 3D models from various formats to `glTF and GLB`_.
2018-01-15 16:55:57 +01:00
2018-01-15 17:22:07 +01:00
**Images** are opened using Pillow_ and optimized using Guetzli_ (for JPEGs) and
Zopflipng_ (for PNGs).
2018-01-15 16:55:57 +01:00
2018-01-15 17:22:07 +01:00
**3D Models** are converted and optimized using assimp_. If models contain or
2018-01-15 16:55:57 +01:00
reference images, they are processed by YOGA's image optimizer.
2021-01-20 16:38:30 +01:00
EXAMPLE: Converting and optimizing an image from CLI::
2018-01-15 16:55:57 +01:00
2018-01-15 17:11:24 +01:00
yoga image input.png output.png
2018-01-15 16:55:57 +01:00
yoga image --output-format=jpeg --jpeg-quality=84 input.png output.jpg
yoga image --help
2021-01-20 16:38:30 +01:00
EXAMPLE: Converting and optimizing a 3D model from CLI::
2018-01-15 16:55:57 +01:00
yoga model input.fbx output.glb
yoga model --no-graph-optimization --no-meshes-optimization --image-output-format=jpeg --image-jpeg-quality=84 input.fbx output.glb
2018-01-15 16:55:57 +01:00
yoga model --help
2018-01-15 17:22:07 +01:00
2021-01-20 16:42:30 +01:00
.. _glTF and GLB: https://www.khronos.org/gltf/
2018-01-15 17:22:07 +01:00
.. _Pillow: https://github.com/python-pillow/Pillow
.. _Guetzli: https://github.com/google/guetzli
.. _Zopflipng: https://github.com/google/zopfli
.. _assimp: https://github.com/assimp/assimp
2018-02-19 16:10:09 +01:00
Install
-------
2021-01-20 16:38:30 +01:00
* See `the install section of the documentation <https://wanadev.github.io/yoga/install.html>`_
2021-01-20 16:38:30 +01:00
Documentation
-------------
2021-01-20 16:38:30 +01:00
* `Command Line Interface (CLI) <https://wanadev.github.io/yoga/cli/index.html>`_
* `Python API <https://wanadev.github.io/yoga/python/index.html>`_
* `Contributing <https://wanadev.github.io/yoga/contributing.html>`_
2019-02-22 16:32:57 +01:00
2018-02-19 16:10:09 +01:00
Changelog
---------
2021-03-09 18:31:41 +01:00
* **0.11.1:**
* Automated workflow for deploying the PyPI packages
* Wheel are now distributed on PyPI
2020-05-07 10:56:53 +02:00
* **0.11.0:**
* Allows to build YOGA on Windows
* Scripts and workflow to build Windows standalone versions
2019-02-22 16:34:55 +01:00
* **0.10.2:**
* Updates assimp and python libraries
2018-11-20 11:23:54 +01:00
* **0.10.1:**
* Fixes an issue that occures when output file does not already exist
2018-06-13 14:32:18 +02:00
* **0.10.0:**
2018-05-29 16:24:41 +02:00
2018-06-13 14:34:03 +02:00
* Prevent overwriting of the output file when an error occurs (#17)
* Unicode path support (#16)
2018-05-29 16:24:41 +02:00
* **0.10.0b1:**
2018-05-14 10:42:22 +02:00
* Verbose and quiet modes,
* Allows to pass textures from memory instead of looking on the filesystem,
* Allows to pass a fallback texture instead of raising an error.
2018-04-05 14:41:21 +02:00
* **0.9.1b1:**
2018-04-05 14:50:13 +02:00
2018-04-05 14:41:21 +02:00
* Automatic selection of the output format (png or jpeg),
* Prevent duplication of textures that are shared between materials,
* Fixes Windows paths of textures.
2018-04-05 14:50:13 +02:00
2018-04-05 14:41:21 +02:00
* **0.9.0b1:** First release (only GLB output for models, no image auto
2018-02-19 16:10:09 +01:00
output format)
2018-05-04 17:44:03 +02:00
2018-06-13 14:32:18 +02:00
2021-01-22 16:02:26 +01:00
.. |Github| image:: https://img.shields.io/github/stars/wanadev/yoga?label=Github&logo=github
:target: https://github.com/wanadev/yoga
.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff
:target: https://discord.gg/BmUkEdMuFp
2018-05-04 17:44:03 +02:00
.. |PYPI Version| image:: https://img.shields.io/pypi/v/yoga.svg
:target: https://pypi.python.org/pypi/yoga
2021-01-22 16:02:26 +01:00
.. |Build Status| image:: https://github.com/wanadev/yoga/workflows/Python%20CI/badge.svg
:target: https://github.com/wanadev/yoga/actions
2018-05-04 17:44:03 +02:00
.. |License| image:: https://img.shields.io/pypi/l/yoga.svg
:target: https://github.com/wanadev/yoga/blob/master/LICENSE