vote up 2 vote down star

writing simple text on an image using PIL is easy. draw = ImageDraw.Draw(img) draw.text((10, y), text2, font=font, fill=forecolor )

however, when I try to write Hebrew punctuation marks (called "nikud" or ניקוד), the characters does not overlap as it should. I guess this question is relevant also to Arabic and other similar languages.

On supporting environment, these two words take up the same space/width (the below example depend on your system, hence the image):

סֶפֶר ספר

However when drawing the text with PIL i'd get

ס ֶ פ ֶ ר

since the library probably doesn't obey kerning(?) rules.

Is that all possible without writing manually character positioning?

image - nikud and letter spacing

image url: http://tinypic.com/r/jglhc5/5

flag

60% accept rate

2 Answers

vote up 1 vote down check

What system are you working on? It works for me on my Gentoo system; the order of the letters is reversed (I just copy-pasted from your question), which seems correct to me although I don't know much about RTL languages.

Python 2.5.4 (r254:67916, May 31 2009, 16:56:01)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import Image as I, ImageFont as IF, ImageDraw as ID
>>> t= u"סֶפֶר ספר"
>>> t
u'\u05e1\u05b6\u05e4\u05b6\u05e8 \u05e1\u05e4\u05e8'
>>> i= I.new("L", (200, 200))
>>> d= ID.Draw(i)
>>> f= IF.truetype("/usr/share/fonts/dejavu/DejaVuSans.ttf", 20)
>>> d1.text( (100, 40), t, fill=255, font=f)
>>> i.save("/tmp/dummy.png", optimize=1)

produces:

the example text rendered as white on black

EDIT: I should say that using the Deja Vu Sans font was not accidental; although I don't like it much (and yet I find its glyphs better than Arial), it's readable, it has extended Unicode coverage, and it seems to work better with many non-MS applications than Arial Unicode MS.

link|flag
You didn't really answer, but you help seeing the bug: Only DejaVuSans.ttf and Lucidaxxx.ttf behave correctly under PIL! All the rest of my TTF files produced wrong output (but they behave nicely outside of PIL) You can try other fonts, e.g. Arial.ttf – Berry Tsakala Jun 21 at 5:44
1  
A TrueType font (or OpenType font) does not necessarily mean it's a complete and useful font in all applications. Michael Kaplan (working for MS currently and very related to Unicode issues) calls ArialUni an "MS Office font", not an "OS font", whatever he means by it, here: blogs.msdn.com/michkap/archive/… – ΤΖΩΤΖΙΟΥ Jun 21 at 22:16
vote up 0 vote down

Looks to me that the case is quite simple. You can use True Type fonts and use

Here's the example:True type fonts for PIL

Here you can find Hebrew True Type fonts: Hebrew true type fonts

Good luck or like we saying in Hebrew - Mazal' Tov.

link|flag
Thanks for replying, but you haven't answer the question. As i wrote - I know how to write TTFs, and I already have TTF fonts. – Berry Tsakala Jun 15 at 6:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.