MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / get_fullname

Method get_fullname

lib/matplotlib/_afm.py:449–454  ·  view source on GitHub ↗

Return the font full name, e.g., 'Times-Roman'.

(self)

Source from the content-addressed store, hash-verified

447 return self.get_fontname()
448
449 def get_fullname(self) -> str:
450 """Return the font full name, e.g., 'Times-Roman'."""
451 name = self._header.get('FullName')
452 if name is None: # use FontName as a substitute
453 name = self._header['FontName']
454 return name
455
456 def get_familyname(self) -> str:
457 """Return the font family name, e.g., 'Times'."""

Callers 1

get_familynameMethod · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected