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.

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




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