Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~499 People Reached
Favorite Forums
Favorite Tags
Member Avatar for ariel.goldstien

I have problem loading fonts in PIL. it seem that _imagingft is missing. how can I install it? thanks

Member Avatar for Tech B
0
56
Member Avatar for ariel.goldstien

It seem that PIL was built without FreeType support. how do I Install the FreeType dev files and rebuild PIL again.

0
103
Member Avatar for ariel.goldstien

Hi I am trying to create an image with text hebrew in it using Image and ImageDraw moduls but I keep getting erros. this is the code import Image import ImageDraw a = u'\u05d0'#the unicode of the letter I want to display im=Image.new('RGB',(200,200),(100,100,100)) d=ImageDraw.Draw(im) d.text((0,0),a) this is the error I …

Member Avatar for ariel.goldstien
0
340