The default dpi in Pillow is 72, not 96, so the correct code is:
from PIL import Image, ImageDraw, ImageFont
fontSize = 12
fontSize *= 220/72 ## adjust from PIL dpi to word dpi\
font = ImageFont.truetype("TR Times New Roman Regular.ttf", size=fontSize)
im = Image.new("RGB", (100,100), "black")
draw = ImageDraw.Draw(im)
draw.text((10,40),"example text", fill="white", font = font)
im.show()
im.save("output.png", dpi=(220,220))