forked from uploadcare/pillow-simd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from helper import unittest, PillowTestCase | ||
import StringIO | ||
|
||
from PIL import Image, ImageFont, ImageDraw | ||
|
||
class TestImageFontBitmap(PillowTestCase): | ||
def test_similar(self): | ||
text = 'EmbeddedBitmap' | ||
font_outline = ImageFont.truetype(font='Tests/fonts/DejaVuSans.ttf', size=24) | ||
font_bitmap = ImageFont.truetype(font='Tests/fonts/DejaVuSans-bitmap.ttf', size=24) | ||
size_outline, size_bitmap = font_outline.getsize(text), font_bitmap.getsize(text) | ||
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)) | ||
im_outline = im_bitmap.copy() | ||
draw_bitmap, draw_outline = ImageDraw.Draw(im_bitmap), ImageDraw.Draw(im_outline) | ||
# Don't know why, but bitmap version is always vertical 1 pixel longer than outline one. | ||
draw_bitmap.text((0, 0), text, fill=(0, 0, 0), font=font_bitmap) | ||
draw_outline.text((0, 1), text, fill=(0, 0, 0), font=font_outline) | ||
self.assert_image_similar(im_bitmap, im_outline, 0.01) | ||
|