Tagged Questions
0
votes
1answer
34 views
Font Error When Drawing Text to an Image
I'm writing a script that takes my grades from my school grade website and draws the grades onto an image and saves it as my background and I'm trying to change the font when i draw the text onto the ...
0
votes
1answer
35 views
ImageFont from font data or URL
I would like to know how to use an ImageFont instance from an URL or font data in Python.
The font file is stored on an Amazon S3 instance as static data and I need to use it to generate an image with ...
3
votes
1answer
114 views
What system fonts are available to PIL on Google App Engine?
What fonts are available to use with PIL on App Engine?
I know I can upload a font as part of the application but what I basically want is a system provided sans-serif that will work with unicode ...
4
votes
1answer
165 views
Drawing multilingual text using PIL
I'm having trouble drawing multilingual text using PIL. Let's say I want to draw text - "ひらがな - Hiragana, 히라가나". But PIL's ImageDraw.text() function takes only one font at a time, so I cannot draw ...
0
votes
1answer
123 views
Python Image Library and Gtk.FontSelectionDialog
I want to get PIL to draw the text using their fonts to get them, I use this code:
fdia = Gtk.FontSelectionDialog("Font")
response = fdia.run()
if response == Gtk.ResponseType.OK:
...
0
votes
1answer
818 views
PIL problems: failed in loading any font library and using unicode
I newly installed PIL. But I find:
I can't load any font lib using
"ImageFont.truetype("xxx.ttc", 50)"
and the like.
When I render some text to image,
and the text is unicode containing
Chinese ...
4
votes
2answers
3k views
PIL how to scale text size in relation to the size of the image
I'm trying to dynamically scale text to be placed on images of varying but known dimensions. The text will be applied as a watermark. Is there any way to scale the text in relation to the image ...
4
votes
2answers
429 views
Generate image for each font on a linux system using Python
I'm looking for a way to list all fonts installed on a linux/Debian system, and then generate images of some strings using these fonts. I'm looking for your advice as I kind of see how to do each ...
0
votes
2answers
182 views
Can I get the kerning value of two characters using PIL?
Is it possible to get the kerning value of two characters in a font using PIL?
0
votes
1answer
177 views
How can I find out why PIL isn't drawing the font correctly?
Here's the code I'm using:
from PIL import Image
import ImageFont, ImageDraw
import sys
import pdb
img = Image.new("RGBA",(300,300))
draw = ImageDraw.Draw(img)
font = ...
2
votes
2answers
608 views
wx.Font uses a facename & PIL.ImageFont uses a filename… Is there any way to relate the two?
Hey guys, sorry but this is going to be a big one.. ;)
I'm running into an annoying little snag right now. I'm creating an RSS-style app for work which will be placed on some large LCD displays ...
1
vote
0answers
680 views
Size differences between TrueType and OpenType fonts when using PIL ImageFont
I'm trying to create PNGs of letters from the fonts on my system. Seems to work okay with TrueType fonts (.ttf) but not OpenType (.otf). The images formed are the same size but the actual letters ...
3
votes
3answers
1k views
ImageFont's getsize() does not get correct text size?
I use the following two methods to to generate text preview image for a .ttf font file
PIL method:
def make_preview(text, fontfile, imagefile, fontsize=30):
try:
font = ...
1
vote
2answers
578 views
Methods to create text preview from a font
I'm currently using ImageMagick's convert command to create text preview (.png) from .ttf font file. Overall, it's better in auto text positioning despite it failed to read some valid .ttf file ...
4
votes
2answers
1k views
Draw bold/italic text with PIL?
How to draw bold/italic text with PIL? ImageFont.truetype(file, size) has an option to specify font size only.
4
votes
2answers
1k views
writing text with diacritic (“nikud”, vocalization marks) using PIL (python image library)
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 ...
2
votes
2answers
479 views
Drawing with Webdings in PIL
I've got a Python program using PIL to render text, and it works great with all kinds of fonts. But it only draws "missing glyph" rectangles with wingdings or webdings.
Here's a sample that tries to ...
