惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
S
SegmentFault 最新的问题
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Martin Fowler
Martin Fowler
雷峰网
雷峰网
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
How to Add Color Emoji to Image in Python
2022-04-03 · via jdhao's digital space

In this post, I would like to share how to add color emoji to image with Python.

Use Pillow#

We can use Pillow directly to draw color emoji with color emoji fonts. Some of the available fonts are:

Symbola is also a emoji font, but it seems that it does not have color.

Here is a simple script to try those fonts:

from PIL import Image, ImageDraw, ImageFont

back_ground_color = (50, 50, 50)

# unicode_text = "some test\U0001f602"
unicode_text = "\U0001f602"
im = Image.new("RGB", (500, 500), back_ground_color)
draw = ImageDraw.Draw(im)

# noto emoji, bit-map based, src: https://github.com/googlefonts/noto-emoji/blob/main/fonts/NotoColorEmoji.ttf
# apple emoji, bit-map based, src: https://github.com/samuelngs/apple-emoji-linux/releases
# segoe ui emoji, vector-based, works with different font size, font from here: https://fontsdata.com/132714/segoeuiemoji.htm (for test only)

font_info = {'symbola': [r"E:\symbola-font\Symbola-AjYx.ttf", 30],
             'notoemoji': [r"E:\NotoColorEmoji.ttf", 109],
             'appleemoji': [r"E:\AppleColorEmoji.ttf", 137],
             'segoeuiemoji': [r"E:\segoeuiemoji\seguiemj.ttf", 50]}

pos = [(100, 10), (50, 40), (50, 160), (100, 320)]

for i, item in enumerate(font_info.items()):
    path, size = item[1]
    font = ImageFont.truetype(path, size)
    draw.text(pos[i], unicode_text, font=font, embedded_color=True)

im.show()

Note that for bit-map font, you need to specify the exact font size embedded in it. Examples are shown in this PR. Otherwise, you will get invalid pixel size error. For vector format color emoji font, you can use different font sizes just like using a normal font.

special note on Apple Color Emoji#

In the above script, I used apple color emoji for linux, which is not the same as Apple Color Emoji provided on macOS. Based on my experimentation, it only embed one resolution for emoji: 137. However, the original Apple Color Emoji has several resolutions: 20, 32, 40, 48, 64, 96 and 160.

For example, the following works for me on macOS with font size 64:

from PIL import Image, ImageDraw, ImageFont

back_ground_color = (50, 50, 50)

im = Image.new("RGB", (500, 200), back_ground_color)
draw = ImageDraw.Draw(im)

font = ImageFont.truetype('/System/Library/Fonts/Apple Color Emoji.ttc', 64)

unicode_text = "\U0001f602\u2764\U0001f639\U0001f335\U0001f525\U0001f992\u3297"
draw.text((10, 100), unicode_text, font=font, embedded_color=True)
im.show()

Disadvantages#

With this method, you can not mix text and emoji since these emoji font does not support normal text. You need to write extra code to mix text and emoji naturally, which is no easy task.

Use package Augly#

Augly from Facebook also supports add emoji to image. It can randomly add an emoji to your image.

import os

from PIL import Image

from augly.utils.base_paths import EMOJI_DIR
import augly.image as imaugs


def main():
    im_path = "./test.jpg"
    im = Image.open(im_path).convert('RGB')

    emoji_category = ['activity', 'alphanumeric', 'animals_and_nature', 'flags', 'food_and_drink',
                      'objects', 'people', 'smileys', 'symbols', 'travel_and_places']

    x, y = (0.8, 0.8)
    opacity = 0.7
    emoji_size = 0.2

    for c in emoji_category:
        emoji_dir = os.path.join(EMOJI_DIR, c)
        emoji_aug = imaugs.RandomEmojiOverlay(emoji_directory=emoji_dir, opacity=opacity,
                                              emoji_size=emoji_size, x_pos=x, y_pos=y)
        new_im = emoji_aug(im)
        new_im.save(f'cat-emoji-{c}.jpg')


if __name__ == "__main__":
    main()

Augly also has a OverlayEmoji class to apply a specific emoji to image. However, the emoji must be in PNG format, so it means you have to use png supplied by Augly, which is not flexible.

Use package pilmoji#

Pilmoji supports multiple source of emoji and also supports mixing emoji and regular text. Note that it requires Python 3.8 or higher.

from pilmoji import Pilmoji
from PIL import Image, ImageFont

im = Image.new('RGB', (1024, 768))

drawer = Pilmoji(im)

FONT_PATH = './NotoSansSC-Regular.otf'
font_size = 30
font = ImageFont.truetype(FONT_PATH, size=font_size)

text = "Hello, world! 👋 Here are some emojis: 🎨 🌊 😎"
drawer((10, 10), text, font=font)

im.show()

Under the hood, it downloads the emoji in PNG format and composite them to the original image.

Pilmoji is easy to use and has done all the heavy lifting of mixing text and emoji for you. It may be the best choice if we want to mix text and emoji and show them on image.

References#