Skip to content

Instantly share code, notes, and snippets.

@amrza
Last active April 11, 2024 07:14
Show Gist options
  • Star 79 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save amrza/04658c71ac02d82580855f89b9b3dff4 to your computer and use it in GitHub Desktop.
Save amrza/04658c71ac02d82580855f89b9b3dff4 to your computer and use it in GitHub Desktop.
How to write RTL(Arabic/Persian) text on images in python.
# Tested on Python 3.6.1
# install: pip install --upgrade arabic-reshaper
import arabic_reshaper
# install: pip install python-bidi
from bidi.algorithm import get_display
# install: pip install Pillow
from PIL import ImageFont
from PIL import Image
from PIL import ImageDraw
# use a good font!
fontFile = "/Users/amirreza/pil/Sahel.ttf"
# this was a 400x400 jpg file
imageFile = "/Users/amirreza/pil/input.jpg"
# load the font and image
font = ImageFont.truetype(fontFile, 18)
image = Image.open(imageFile)
# first you must prepare your text (you dont need this step for english text)
text = "سلام ایران"
reshaped_text = arabic_reshaper.reshape(text) # correct its shape
bidi_text = get_display(reshaped_text) # correct its direction
# start drawing on image
draw = ImageDraw.Draw(image)
draw.text((0, 0), bidi_text, (255,255,255), font=font)
draw = ImageDraw.Draw(image)
# save it
image.save("output.png")
@maysam
Copy link

maysam commented Apr 14, 2018

*first

@ahmed4end
Copy link

cool :"D

@ColorBuffer
Copy link

You just saved my life :) thanks

@amirBgazand
Copy link

thanks amigo

@mojtabakh13
Copy link

Awesome! Thanks

@abdullahalsaidi16
Copy link

Thanks
really helpful

@hosseinofj
Copy link

how can I write Persian or Arabic numbers??

@aadshalshihry
Copy link

👍

@MehdiParviz
Copy link

A useful and readable piece of code! Thanks for sharing.

@hhojatansari
Copy link

Thanks.

@raheshit
Copy link

very thanks!

@rami-alloush
Copy link

Thank you so much, this really works.

@shakibyzn
Copy link

Works like a charm:)

@farzad-ziaie
Copy link

thanks man

@DaddyWesker
Copy link

Can anyone tell me, if it's possible to align all the letters? I mean, i need to write 3 arabic letters and they are just looks like this
image
and i need them to be like this
image
I've tried too many fonts... But I don't know how to do this.

@sankopay
Copy link

so there's a problem with displaying persian letters in my plot here that they seem to break, i solved the problem of left-to-right with adding [::-1] that someone mentioned in a forum but the letters are now in the right alignment (right-to1-left) yet they're separated, how can i fix them???? i've uploaded a picture of how the problem occurs

p.s. all the other entries here pointed at single senteces to be fixed by arabic_reshaper or some other libraries but ive used data from cells above in jupyternotebook. please help me!!
83ePb

@majid-zandi
Copy link

very thanks!

@BenyaminZojaji
Copy link

It help me out :) thanks a milion.

@moortezaa
Copy link

Very kind of you sir.
May God bless you.

@zareshahi
Copy link

Very Coool

@Clancyov
Copy link

so cool. its working most of times. but i have some issues. i want to draw a text ("ذوب اهن") but when im giving the text to 'arabic_reshaper' using reshape methode its cutting off the ("ذوب ") and draws only ("اهن"). can anyone help with this?

@JoeTheFullstack
Copy link

u saved ours of my life dude XD

@JoeTheFullstack
Copy link

although still we don't have many ttf options... any way to let us use farsi specified fonts like B-zar or B-Nazanin?

@aliaminibagh
Copy link

hi.
I get this error? have any idea ?
TypeError: '>' not supported between instances of 'str' and 'int'

you can see this too :
issue

@keivanipchihagh
Copy link

Works like a charm! Thank you.

@hamzazahidulislam
Copy link

Thank you so much Brother.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment