Pilmoji is an emoji renderer for Pillow, Python's imaging library.
Project description
Pilmoji
Pilmoji is an emoji renderer for Pillow, Python's imaging library.
Pilmoji comes equipped with support for both unicode emojis and Discord emojis.
Features
- Discord emoji support
- Multi-line rendering support
- Emoji position and/or size adjusting
- Many built-in emoji sources
- Optional caching
Installation and Requirements
You must have Python 3.8 or higher in order to install Pilmoji.
Installation can be done with pip:
$ pip install -U pilmoji
Optionally, you can add the [requests] option to install requests
alongside Pilmoji:
$ pip install -U pilmoji[requests]
The option is not required, instead if requests is not installed,
Pilmoji will fallback to use the builtin urllib.
You may also install from Github.
Usage
from pilmoji import Pilmoji
from PIL import Image, ImageFont
my_string = '''
Hello, world! 👋 Here are some emojis: 🎨 🌊 😎
I also support Discord emoji: <:rooThink:596576798351949847>
'''
with Image.new('RGB', (550, 80), (255, 255, 255)) as image:
font = ImageFont.truetype('arial.ttf', 24)
with Pilmoji(image) as pilmoji:
pilmoji.text((10, 10), my_string.strip(), (0, 0, 0), font)
image.show()
Result
Switching emoji sources
As seen from the example, Pilmoji defaults to the Twemoji emoji source.
If you prefer emojis from a different source, for example Microsoft, simply
set the source kwarg in the constructor to a source found in the
pilmoji.source module:
from pilmoji.source import MicrosoftEmojiSource
with Pilmoji(image, source=MicrosoftEmojiSource) as pilmoji:
...
It is also possible to create your own emoji sources via subclass.
Fine adjustments
If an emoji looks too small or too big, or out of place, you can make fine adjustments
with the emoji_scale_factor and emoji_position_offset kwargs:
pilmoji.text((10, 10), my_string.strip(), (0, 0, 0), font,
emoji_scale_factor=1.15, emoji_position_offset=(0, -2))
Contributing
Contributions are welcome. Make sure to follow PEP-8 styling guidelines.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pilmoji-2.0.5.tar.gz.
File metadata
- Download URL: pilmoji-2.0.5.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e038532c97b79b3d55c29f5a6c2b6b627105b8cd1db0c1d2271402b3e4e9be18
|
|
| MD5 |
e841650463bfef2894e62559001510ab
|
|
| BLAKE2b-256 |
0575e5430da7a99ea66c9b93cdbd66372a010022398887eb3f8fcccb866010ee
|
File details
Details for the file pilmoji-2.0.5-py3-none-any.whl.
File metadata
- Download URL: pilmoji-2.0.5-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
856ddf827d42d8c8d2a1f879fdc1ae318ffb72435c4adc934be6d3e48376173d
|
|
| MD5 |
d2610377b29da918cf71d49442330f4e
|
|
| BLAKE2b-256 |
24092dcc3fa1e0627f95143b61cc2c8a13042f5dcd7e11d1e12b0ba5e205aeca
|