Pillow/Tests/test_imagefont_bitmap.py

44 lines
1.5 KiB
Python
Raw Normal View History

from PIL import Image, ImageDraw, ImageFont
2014-11-07 14:21:12 +03:00
from .helper import PillowTestCase, unittest
2015-04-24 02:26:52 +03:00
image_font_installed = True
try:
ImageFont.core.getfont
except ImportError:
image_font_installed = False
@unittest.skipIf(not image_font_installed, "image font not installed")
2014-11-07 14:21:12 +03:00
class TestImageFontBitmap(PillowTestCase):
def test_similar(self):
2019-06-13 18:54:46 +03:00
text = "EmbeddedBitmap"
font_outline = ImageFont.truetype(font="Tests/fonts/DejaVuSans.ttf", size=24)
2015-07-03 09:22:56 +03:00
font_bitmap = ImageFont.truetype(
2019-06-13 18:54:46 +03:00
font="Tests/fonts/DejaVuSans-bitmap.ttf", size=24
)
2015-12-30 23:27:27 +03:00
size_outline = font_outline.getsize(text)
size_bitmap = font_bitmap.getsize(text)
2019-06-13 18:54:46 +03:00
size_final = (
max(size_outline[0], size_bitmap[0]),
max(size_outline[1], size_bitmap[1]),
)
im_bitmap = Image.new("RGB", size_final, (255, 255, 255))
2014-11-07 14:21:12 +03:00
im_outline = im_bitmap.copy()
2015-12-30 23:27:27 +03:00
draw_bitmap = ImageDraw.Draw(im_bitmap)
draw_outline = ImageDraw.Draw(im_outline)
2015-07-03 09:22:56 +03:00
# Metrics are different on the bitmap and ttf fonts,
# more so on some platforms and versions of freetype than others.
# Mac has a 1px difference, linux doesn't.
2019-06-13 18:54:46 +03:00
draw_bitmap.text(
(0, size_final[1] - size_bitmap[1]), text, fill=(0, 0, 0), font=font_bitmap
)
draw_outline.text(
(0, size_final[1] - size_outline[1]),
text,
fill=(0, 0, 0),
font=font_outline,
)
self.assert_image_similar(im_bitmap, im_outline, 20)