Draw bold/italic text with PIL?

2019-02-16 10:57发布

How to draw bold/italic text with PIL? ImageFont.truetype(file, size) has an option to specify font size only.

4条回答
Explosion°爆炸
2楼-- · 2019-02-16 11:37

Many fonts use different TTF files for their bold/italic versions, so I'd imagine if you just specify that file it would work.

查看更多
你好瞎i
3楼-- · 2019-02-16 11:40

A rather hacky solution to make a font bold if (for whatever reason) you don't have a separate bold version of the font is to print the same text several times with a slight offset.

andaleMono = ImageFont.truetype(ANDALE_MONO_PATH,16)
text = "hello world"
mainOffset = (50,50)
xoff, yoff = mainOffset
draw.text(mainOffset,text,font=andaleMono,fill='black')
draw.text((xoff+1,yoff+1),text,font=andaleMono,fill='black')
draw.text((xoff-1,yoff-1),text,font=andaleMono,fill='black')
查看更多
来,给爷笑一个
4楼-- · 2019-02-16 11:41

Well, this is my first comment. Here we go.

I'll try to clarify the procedure. At first What I did was use the "name" of the font like this

font = ImageFont.truetype("C:\Windows\Fonts\\Arial Negrita.ttf",25)

but only got some errors like this:

    Traceback (most recent call last):
  File "C:/Users/555STi/PycharmProjects/PIL/img.py", line 8, in <module>
    font = ImageFont.truetype("C:\Windows\Fonts\Arial negrita.ttf",25)
  File "C:\Python27\lib\site-packages\PIL\ImageFont.py", line 262, in truetype
    return FreeTypeFont(font, size, index, encoding)
  File "C:\Python27\lib\site-packages\PIL\ImageFont.py", line 142, in __init__
    self.font = core.getfont(font, size, index, encoding)
IOError: cannot open resource

Then I remembered that sometimes fonts has other "names" or "filenames", so, what I did was going to fonts folder, then opened the Arial Font wich displayed all the styles like negrita (bold], cursiva(italic), etc.

Did a right click on the "negrita" style, selected "properties" and then there was the "real name" of the font.

In my case, the name was "ariblk"

Then, finally, just used the name like this.

font = ImageFont.truetype("C:\Windows\Fonts\\ariblk.ttf",25)

I know this post is old, but today helped me to get to the solution. So I hope to help anybody.

=)

查看更多
成全新的幸福
5楼-- · 2019-02-16 11:43

Use the bold/italic version of the font

查看更多
登录 后发表回答