Draw bold/italic text with PIL?

Question:

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

Asked By: jack

||

Answers:

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

Answered By: djc

Use the bold/italic version of the font

Answered By: John La Rooy

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:WindowsFonts\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:WindowsFontsArial negrita.ttf",25)
  File "C:Python27libsite-packagesPILImageFont.py", line 262, in truetype
    return FreeTypeFont(font, size, index, encoding)
  File "C:Python27libsite-packagesPILImageFont.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:WindowsFonts\ariblk.ttf",25)

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

=)

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')
Answered By: zara

There is no bold features as parameter till now but easily you can solve by add stroke to the text with same color of text. it will make sense as bold font next code elaborate how to use stroke

    draw.text((x, y), text, fill=color, font=font, stroke_width=2,
          stroke_fill="black")
Answered By: Feisal Aswad

With reference to the other answers here, my search for the name for the bold variant of Arial produced the following (arialbd.ttf):

def FindFontsVariantsWithBase(fontBase="arial"):
        import matplotlib
        system_fonts = matplotlib.font_manager.findSystemFonts(fontpaths=None, fontext='ttf')
        # for font in np.sort(system_fonts):
        #     print(font)
        fonts = np.sort(system_fonts).tolist()
        res = [i for i in fonts if fontBase in i]
        print(res)
        
FindFontsVariantsWithBase("arial")

[‘C:WINDOWSFontsarial.ttf’, ‘C:WINDOWSFontsarialbd.ttf’, ‘C:WINDOWSFontsarialbi.ttf’, ‘C:WINDOWSFontsariali.ttf’, ‘C:WindowsFontsarial.ttf’, ‘C:WindowsFontsarialbd.ttf’, ‘C:WindowsFontsarialbi.ttf’, ‘C:WindowsFontsariali.ttf’] (

Answered By: HackJob99