Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i've spent a lot of time making my first web application using python, and for generating images - PIL. after reading a lot i've managed to implement proper text aligning, wrapping, generating files with many extensions etc. but as it turned out - text generated by PIL is cut off from the top. i've attached image.

enter image description here

it should say ŻÓĆjygpq. there are font names on the left.

i've found few postst here: fonts clipping with PIL but i wouldn't like to use another module - aggdraw, since i've figured out many things in pil already i'd like to stick to that.

i've tried many fonts in different sizes, but text is still cut off. i even tried to use PIL fonts, but it still doesnt work. [Also converting OTF to BDF, and to PIL]

i'm using ubuntu.

i'm looking for help. is there any solution to this problem? matt

share|improve this question
Interesting problem, I would be surprised if this can be fixed without going into the C parts of PIL. – mmgp Dec 11 '12 at 17:59
Can you include your sample code for printing these texts ? I've patched _imagingft.c and it seems to work for the font I tested. – mmgp Dec 11 '12 at 20:05
thanks for the answer. i simplified it a little bit, but the method is the same: color_text = 'black' text2 = 'DejaVuSans.ttf' font1 = ImageFont.truetype('/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf', 34) draw.text((20,50), text2, color_text, font=font1) it's got nothing fancy in it, just few calculations for wrapping, centering etc. so it's just the basic draw.text delivered by pil. in theory it should work out of the box, especially with those PIL type fonts. – Matt Dec 11 '12 at 21:24

2 Answers

up vote 2 down vote accepted

I hope to be wrong on this one, but the only correct fix relies on patching how _imagingft.c renders the text. PIL depends on FreeType for this task, but PIL seems to be miscalculating the positioning. Also, the height in getsize is overestimated (although that doesn't cause problem). For the moment, I've put a patch to handle these issues at: http://pastebin.com/jP2iLkDN (there seems to be a better way to patch the render code).

Here are some examples of the output I get without the patch and with the patch, respectively:

enter image description here     enter image description here

Results using the code present in the linked discussion. On OSX:

enter image description here     enter image description here

On Ubuntu:

enter image description here     enter image description here

Here is the code to generate the top figures:

# -*- encoding: utf8 -*-
import sys
import Image, ImageDraw, ImageFont

im = Image.new("RGBA", (1000, 1000), 'white')
draw = ImageDraw.Draw(im)

start_y = 7
text = u'\u00d1\u00d3yŻ\u00d4Ćgp\u010c\u0137'
for i in xrange(28, 46, 2):
    font = ImageFont.truetype('Junicode-Bold.ttf', i)
    width, height = font.getsize(text)
    draw.rectangle((0, start_y, width, height + start_y), outline='blue')
    draw.text((0, start_y), text, font=font, fill='black')
    start_y += height + 7

im.crop((0, 0, width + 1, start_y + 2)).save(sys.argv[1])

The bottom figures were generated according to code present in the linked topic about PIL cutting off parts of the text.

share|improve this answer
One shortcoming of this patch is that it will cause trouble (vertical alignment trouble) when you write letter by letter instead of the entire text at once. To solve that, the patch needs to further modify PIL so it returns the baseline (a good place seems to be in getsize) of the text, and then pass that value when a call to render is made. The function getsize would also need to return proper offsets in vertical directions, which currently is always 0. – mmgp Dec 21 '12 at 12:59
you saved me a lot of time. Thanks! – lqdc Jan 26 at 2:37

Not the best solution but I see people have solved this by adding a leading a trailing space to their text.

share|improve this answer
thank you for the answer, unfortunately it doesn't help. – Matt Dec 11 '12 at 18:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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