Get a fontconfig_ pattern_ suitable for looking up the font as specified with fontconfig's ``fc-match`` utility. This support does not depend on fontconfig; we are merely borrowing its pattern syntax for use here.
(self)
| 925 | return self._file |
| 926 | |
| 927 | def get_fontconfig_pattern(self): |
| 928 | """ |
| 929 | Get a fontconfig_ pattern_ suitable for looking up the font as |
| 930 | specified with fontconfig's ``fc-match`` utility. |
| 931 | |
| 932 | This support does not depend on fontconfig; we are merely borrowing its |
| 933 | pattern syntax for use here. |
| 934 | """ |
| 935 | return generate_fontconfig_pattern(self) |
| 936 | |
| 937 | def set_family(self, family): |
| 938 | """ |
no test coverage detected