Skip to content

Easy-to-use image converter for modern formats. Supports multithreading, drag 'n drop, and downscaling.

License

Notifications You must be signed in to change notification settings

JacobDev1/xl-converter

Repository files navigation

XL Converter

Easy-to-use image converter for modern formats. Supports multithreading, drag 'n drop, and downscaling.

Available for Windows and Linux.

Read the Manual

Supported Formats

Encode to JPEG XL, AVIF, WebP, and JPEG. Convert from HEIF, TIFF, and more

Features

Out of the Box

Just drop your images and convert. XL Converter works out of the box with no setup or steep learning curve. It prioritizes user experience while granting access to cutting-edge technology.

JPEGLI

Generate fully compatible JPEGs with up to 35% better compression ratio.

JPEG XL and AVIF

Achieve exceptional quality at a modest size with JPEG XL and AVIF.

Parallel Encoding

Encode images in parallel to speed up the process. Control how much CPU to use during encoding.

Lossless JPEG Recompression

Losslessly transcode JPEG to JPEG XL, and reverse the process when needed.

Downscaling

Scale down images to resolution, percent, shortest (and longest) side, or even file size.

Building from Source

Note

The recommended way of using XL Converter is through the official binary releases. The building process is time-consuming and tedious.

Windows 10

Install:

  • Python 3.11.9 (with pip)
  • git

Clone the repo.

git clone -b stable --depth 1 https://github.com/JacobDev1/xl-converter.git
cd xl-converter

Provide tool binaries.

Setup venv.

python -m venv env
env\Scripts\activate.bat
pip install -r requirements.txt

Install redistributable

Run the application

python main.py

You can also build it.

python build.py

Linux (Ubuntu-based)

Install packages.

sudo apt update
sudo apt install git make curl

Install xcb QPA dependencies.

sudo apt install '^libxcb.*-dev' libfontconfig1-dev libfreetype6-dev libx11-dev libx11-xcb-dev libxext-dev libxfixes-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev

Install pyenv via Automatic installer then add it to shell

Install Python build packages.

sudo apt install wget build-essential libreadline-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev liblzma-dev

Build and setup Python 3.11.9.

pyenv install 3.11.9
pyenv global 3.11.9

Clone and set up the repo.

git clone -b stable --depth 1 https://github.com/JacobDev1/xl-converter.git
chmod -R +x xl-converter
cd xl-converter

Provide tool binaries.

Create and activate a virtual environment.

python3 -m venv env
source env/bin/activate

Install Python dependencies

pip install -r requirements.txt

Now, you can run it.

python main.py

or build it.

python build.py

Providing Tool Binaries

To build XL Converter, you need to provide various binaries. This can be quite challenging.

Binaries needed:

Place them in the following directories:

  • xl-converter\bin\win for Windows (x86_64)
  • xl-converter/bin/linux for Linux (x86_64)

All binaries should be statically linked.

Tip

See the official XL Converter builds for examples.

Info

Important

This project runs on Python 3.11. Other versions are not supported.

Note

Don't forget --depth 1 when running git clone to avoid large files.

Unit Testing

Running

Setup repo.

Create a test environment.

python3 -m venv env_test
source env/bin/activate
pip install -r requirements.txt
pip install -r requirements_test.txt

Run tests

python test.py

You can control which tests to run. Learn more with python test.py --help.

Deprecated

test_old.py is a deprecated, but still accessible test suite focusing on conversion results.

python test_old.py