forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_ttconv.py
More file actions
24 lines (20 loc) · 787 Bytes
/
test_ttconv.py
File metadata and controls
24 lines (20 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from __future__ import (absolute_import, division, print_function,
unicode_literals)
import six
import matplotlib
from matplotlib.font_manager import FontProperties
from matplotlib.testing.decorators import image_comparison
import matplotlib.pyplot as plt
import os.path
@image_comparison(baseline_images=["truetype-conversion"],
extensions=["pdf"])
def test_truetype_conversion():
fontname = os.path.join(os.path.dirname(__file__), 'mpltest.ttf')
fontname = os.path.abspath(fontname)
fontprop = FontProperties(fname=fontname, size=80)
matplotlib.rcParams['pdf.fonttype'] = 3
fig = plt.figure()
ax = fig.add_subplot(111)
ax.text(0, 0, "ABCDE", fontproperties=fontprop)
ax.set_xticks([])
ax.set_yticks([])